Skip to content

Commit

Permalink
fix(temporary): Commit temporary fix until classifier is restored
Browse files Browse the repository at this point in the history
  • Loading branch information
joaovitorsl committed Aug 28, 2024
1 parent 82fd791 commit b746ee9
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 26 deletions.
37 changes: 19 additions & 18 deletions frontend/app/controllers/AddQuestaoController.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,25 +233,26 @@ angular.module('app')
} else {
$scope.alertEspelho = false;
document.querySelector(".ql-editor").contentEditable = false;
$scope.getCompetencias().then((response) => {
if(response.status === 200) {
let tmp = $sce.trustAsHtml($scope.enunciado);
$rootScope.avaliacao.maisInfo = {
"COMP_ABSTRAÇÃO": tmp,
"COMP_ALGORITMOS": tmp,
"COMP_ANÁLISE": tmp,
"COMP_AUTOMAÇÃO": tmp,
"COMP_COLETA": tmp,
"COMP_DECOMPOSIÇÃO": tmp,
"COMP_PARALELIZAÇÃO": tmp,
"COMP_REPRESENTAÇÃO": tmp,
"COMP_SIMULAÇÃO": tmp
};
// TODO: Comentei este trecho pra que funcione a criação de questões já que o classificador está off
// $scope.getCompetencias().then((response) => {
// if(response.status === 200) {
// let tmp = $sce.trustAsHtml($scope.enunciado);
// $rootScope.avaliacao.maisInfo = {
// "COMP_ABSTRAÇÃO": tmp,
// "COMP_ALGORITMOS": tmp,
// "COMP_ANÁLISE": tmp,
// "COMP_AUTOMAÇÃO": tmp,
// "COMP_COLETA": tmp,
// "COMP_DECOMPOSIÇÃO": tmp,
// "COMP_PARALELIZAÇÃO": tmp,
// "COMP_REPRESENTAÇÃO": tmp,
// "COMP_SIMULAÇÃO": tmp
// };
$scope.nextStep();
} else {
document.querySelector(".ql-editor").contentEditable = true;
}
});
// } else {
// document.querySelector(".ql-editor").contentEditable = true;
// }
// });
}
}

Expand Down
16 changes: 8 additions & 8 deletions frontend/app/controllers/BuscasController.js
Original file line number Diff line number Diff line change
Expand Up @@ -387,16 +387,16 @@ angular.module('app')
$scope.update.espelho === null || typeof $scope.update.espelho === 'undefined')) {
$scope.inputError = true;
} else if (!$scope.editingAprovacao && $scope.update.enunciado !== $scope.update.tempEnunciado) {
QuestoesService.getCompetencias($scope.update.tempEnunciado).then(() => {
$rootScope.repaginaCompetencias($rootScope.competencias);
$('#ModalEdicao').modal('toggle');
$('#ModalEdicao').modal({backdrop: 'static', keyboard: false});
// QuestoesService.getCompetencias($scope.update.tempEnunciado).then(() => {
// $rootScope.repaginaCompetencias($rootScope.competencias);
// $('#ModalEdicao').modal('toggle');
// $('#ModalEdicao').modal({backdrop: 'static', keyboard: false});

$('a[href$="#ModalEdicao"]').on( "click", function() {
$('#ModalEdicao').modal('show');
});
// $('a[href$="#ModalEdicao"]').on( "click", function() {
// $('#ModalEdicao').modal('show');
// });
$scope.update.enunciado = $scope.update.tempEnunciado;
});
// });

} else {
$scope.update.enunciado = $scope.update.tempEnunciado;
Expand Down

0 comments on commit b746ee9

Please sign in to comment.