Merge pull request #71 from Quantum-P3/fix/publish-and-edit-validations
This commit is contained in:
commit
5b233a92d1
|
@ -125,6 +125,31 @@ public class EncuestaResource {
|
||||||
|
|
||||||
Encuesta result = encuestaService.save(encuesta);
|
Encuesta result = encuestaService.save(encuesta);
|
||||||
|
|
||||||
|
return ResponseEntity
|
||||||
|
.ok()
|
||||||
|
.headers(HeaderUtil.createEntityUpdateAlert(applicationName, true, ENTITY_NAME, encuesta.getId().toString()))
|
||||||
|
.body(result);
|
||||||
|
}
|
||||||
|
|
||||||
|
@PutMapping("/encuestas/publish/{id}")
|
||||||
|
public ResponseEntity<Encuesta> publishEncuesta(
|
||||||
|
@PathVariable(value = "id", required = false) final Long id,
|
||||||
|
@Valid @RequestBody Encuesta encuesta
|
||||||
|
) throws URISyntaxException {
|
||||||
|
log.debug("REST request to update Encuesta : {}, {}", id, encuesta);
|
||||||
|
if (encuesta.getId() == null) {
|
||||||
|
throw new BadRequestAlertException("Invalid id", ENTITY_NAME, "idnull");
|
||||||
|
}
|
||||||
|
if (!Objects.equals(id, encuesta.getId())) {
|
||||||
|
throw new BadRequestAlertException("Invalid ID", ENTITY_NAME, "idinvalid");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!encuestaRepository.existsById(id)) {
|
||||||
|
throw new BadRequestAlertException("Entity not found", ENTITY_NAME, "idnotfound");
|
||||||
|
}
|
||||||
|
|
||||||
|
Encuesta result = encuestaService.save(encuesta);
|
||||||
|
|
||||||
if (result.getAcceso().equals(AccesoEncuesta.PRIVATE)) {
|
if (result.getAcceso().equals(AccesoEncuesta.PRIVATE)) {
|
||||||
mailService.sendPublishedPrivateMail(result.getUsuarioExtra(), result.getContrasenna());
|
mailService.sendPublishedPrivateMail(result.getUsuarioExtra(), result.getContrasenna());
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -16,9 +16,9 @@ export class EncuestaDeleteDialogComponent {
|
||||||
this.activeModal.dismiss();
|
this.activeModal.dismiss();
|
||||||
}
|
}
|
||||||
|
|
||||||
confirmDelete(encuest: IEncuesta): void {
|
confirmDelete(encuesta: IEncuesta): void {
|
||||||
encuest.estado = EstadoEncuesta.DELETED;
|
encuesta.estado = EstadoEncuesta.DELETED;
|
||||||
this.encuestaService.deleteEncuesta(encuest).subscribe(() => {
|
this.encuestaService.deleteEncuesta(encuesta).subscribe(() => {
|
||||||
this.activeModal.close('deleted');
|
this.activeModal.close('deleted');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,7 +21,6 @@ export class EncuestaPublishDialogComponent implements OnInit {
|
||||||
}
|
}
|
||||||
|
|
||||||
confirmPublish(encuesta: IEncuesta): void {
|
confirmPublish(encuesta: IEncuesta): void {
|
||||||
debugger;
|
|
||||||
if (encuesta.estado === 'DRAFT') {
|
if (encuesta.estado === 'DRAFT') {
|
||||||
encuesta.estado = EstadoEncuesta.ACTIVE;
|
encuesta.estado = EstadoEncuesta.ACTIVE;
|
||||||
}
|
}
|
||||||
|
@ -30,13 +29,12 @@ export class EncuestaPublishDialogComponent implements OnInit {
|
||||||
encuesta.contrasenna = this.generatePassword();
|
encuesta.contrasenna = this.generatePassword();
|
||||||
}
|
}
|
||||||
|
|
||||||
this.encuestaService.update(encuesta).subscribe(() => {
|
this.encuestaService.publishEncuesta(encuesta).subscribe(() => {
|
||||||
this.activeModal.close('published');
|
this.activeModal.close('published');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
generatePassword(): string {
|
generatePassword(): string {
|
||||||
debugger;
|
|
||||||
const alpha = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
|
const alpha = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
|
||||||
|
|
||||||
let password = '';
|
let password = '';
|
||||||
|
|
|
@ -85,14 +85,8 @@
|
||||||
<div class="ds-contextmenu ds-contextmenu--closed" id="contextmenu">
|
<div class="ds-contextmenu ds-contextmenu--closed" id="contextmenu">
|
||||||
<ul id="ds-context-menu__list">
|
<ul id="ds-context-menu__list">
|
||||||
<div class="ds-contextmenu__divider ds-contextmenu__divider--separator-bottom" id="contextmenu-create--separator">
|
<div class="ds-contextmenu__divider ds-contextmenu__divider--separator-bottom" id="contextmenu-create--separator">
|
||||||
<li>
|
<li *ngIf="!isAdmin() && isAuthenticated()">
|
||||||
<button
|
<button type="button" (click)="resetForm()" data-toggle="modal" data-target="#crearEncuesta">
|
||||||
*ngIf="!isAdmin() && isAuthenticated()"
|
|
||||||
type="button"
|
|
||||||
(click)="resetForm()"
|
|
||||||
data-toggle="modal"
|
|
||||||
data-target="#crearEncuesta"
|
|
||||||
>
|
|
||||||
<fa-icon class="contextmenu__icon" [icon]="faPlus"></fa-icon>Crear
|
<fa-icon class="contextmenu__icon" [icon]="faPlus"></fa-icon>Crear
|
||||||
</button>
|
</button>
|
||||||
</li>
|
</li>
|
||||||
|
@ -112,15 +106,14 @@
|
||||||
(click)="publish()"
|
(click)="publish()"
|
||||||
data-toggle="modal"
|
data-toggle="modal"
|
||||||
data-target="#publicarEncuesta"
|
data-target="#publicarEncuesta"
|
||||||
*ngIf="isPublished"
|
|
||||||
>
|
>
|
||||||
<!--Agarrar el id de la encuesta -->
|
<!--Agarrar el id de la encuesta -->
|
||||||
<fa-icon class="contextmenu__icon" [icon]="faUpload"></fa-icon>Publicar
|
<fa-icon class="contextmenu__icon" [icon]="faUpload"></fa-icon>Publicar
|
||||||
</button>
|
</button>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<!-- <li>
|
||||||
<button type="button" id="contextmenu-share"><fa-icon class="contextmenu__icon" [icon]="faShareAlt"></fa-icon>Compartir</button>
|
<button type="button" id="contextmenu-share"><fa-icon class="contextmenu__icon" [icon]="faShareAlt"></fa-icon>Compartir</button>
|
||||||
</li>
|
</li> -->
|
||||||
</div>
|
</div>
|
||||||
<div class="ds-contextmenu__divider" id="contextmenu-delete--separator">
|
<div class="ds-contextmenu__divider" id="contextmenu-delete--separator">
|
||||||
<li>
|
<li>
|
||||||
|
|
|
@ -58,7 +58,7 @@ export class EncuestaComponent implements OnInit, AfterViewInit {
|
||||||
faPlus = faPlus;
|
faPlus = faPlus;
|
||||||
faStar = faStar;
|
faStar = faStar;
|
||||||
faUpload = faUpload;
|
faUpload = faUpload;
|
||||||
isPublished = false;
|
isPublished: Boolean = false;
|
||||||
successPublished = false;
|
successPublished = false;
|
||||||
account: Account | null = null;
|
account: Account | null = null;
|
||||||
usuarioExtra: UsuarioExtra | null = null;
|
usuarioExtra: UsuarioExtra | null = null;
|
||||||
|
@ -73,7 +73,6 @@ export class EncuestaComponent implements OnInit, AfterViewInit {
|
||||||
usuarioExtrasSharedCollection: IUsuarioExtra[] = [];
|
usuarioExtrasSharedCollection: IUsuarioExtra[] = [];
|
||||||
userSharedCollection: IUser[] = [];
|
userSharedCollection: IUser[] = [];
|
||||||
|
|
||||||
selectedIdSurvey: number | null = null;
|
|
||||||
encuestaencontrada: IEncuesta | null = null;
|
encuestaencontrada: IEncuesta | null = null;
|
||||||
|
|
||||||
public searchString: string;
|
public searchString: string;
|
||||||
|
@ -98,7 +97,7 @@ export class EncuestaComponent implements OnInit, AfterViewInit {
|
||||||
});
|
});
|
||||||
|
|
||||||
createAnother: Boolean = false;
|
createAnother: Boolean = false;
|
||||||
selectedSurveyId: Number = 0;
|
selectedSurveyId: number | null = null;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
protected encuestaService: EncuestaService,
|
protected encuestaService: EncuestaService,
|
||||||
|
@ -251,8 +250,8 @@ export class EncuestaComponent implements OnInit, AfterViewInit {
|
||||||
}
|
}
|
||||||
|
|
||||||
deleteSurvey(): void {
|
deleteSurvey(): void {
|
||||||
if (this.selectedIdSurvey != null) {
|
if (this.selectedSurveyId != null) {
|
||||||
this.getEncuesta(this.selectedIdSurvey)
|
this.getEncuesta(this.selectedSurveyId)
|
||||||
.pipe(
|
.pipe(
|
||||||
finalize(() => {
|
finalize(() => {
|
||||||
const modalRef = this.modalService.open(EncuestaDeleteDialogComponent, { size: 'lg', backdrop: 'static' });
|
const modalRef = this.modalService.open(EncuestaDeleteDialogComponent, { size: 'lg', backdrop: 'static' });
|
||||||
|
@ -443,38 +442,39 @@ export class EncuestaComponent implements OnInit, AfterViewInit {
|
||||||
}
|
}
|
||||||
|
|
||||||
async openContextMenu(event: any): Promise<void> {
|
async openContextMenu(event: any): Promise<void> {
|
||||||
document.querySelectorAll('.ds-list--entity').forEach(e => {
|
|
||||||
e.classList.remove('active');
|
|
||||||
});
|
|
||||||
|
|
||||||
if (event.type === 'contextmenu') {
|
if (event.type === 'contextmenu') {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
this.selectedSurveyId = event.target.dataset.id;
|
if (event.target === null) return;
|
||||||
|
document.querySelectorAll('.ds-list--entity').forEach(e => {
|
||||||
let res = await this.encuestaService.find(this.selectedSurveyId).toPromise();
|
e.classList.remove('active');
|
||||||
this.selectedSurvey = res.body;
|
});
|
||||||
this.isPublished = this.selectedSurvey!.estado === 'DRAFT'; // QUE SE LE MUESTRE CUANDO ESTE EN DRAFT
|
|
||||||
|
|
||||||
document.getElementById('contextmenu-create--separator')!.style.display = 'block';
|
|
||||||
document.getElementById('contextmenu-edit--separator')!.style.display = 'block';
|
|
||||||
document.getElementById('contextmenu-delete--separator')!.style.display = 'block';
|
|
||||||
document.getElementById('contextmenu-edit')!.style.display = 'block';
|
|
||||||
document.getElementById('contextmenu-duplicate')!.style.display = 'block';
|
|
||||||
|
|
||||||
if (this.isPublished) {
|
|
||||||
document.getElementById('contextmenu-publish')!.style.display = 'block'; //cambiar
|
|
||||||
}
|
|
||||||
document.getElementById('contextmenu-share')!.style.display = 'block';
|
|
||||||
|
|
||||||
if ((event.target as HTMLElement).classList.contains('ds-list')) {
|
if ((event.target as HTMLElement).classList.contains('ds-list')) {
|
||||||
|
document;
|
||||||
|
document.getElementById('contextmenu-create--separator')!.style.display = 'block';
|
||||||
document.getElementById('contextmenu-edit--separator')!.style.display = 'none';
|
document.getElementById('contextmenu-edit--separator')!.style.display = 'none';
|
||||||
document.getElementById('contextmenu-delete--separator')!.style.display = 'none';
|
document.getElementById('contextmenu-delete--separator')!.style.display = 'none';
|
||||||
} else if ((event.target as HTMLElement).classList.contains('ds-list--entity')) {
|
} else if ((event.target as HTMLElement).classList.contains('ds-list--entity')) {
|
||||||
|
this.selectedSurveyId = Number(event.target.dataset.id);
|
||||||
event.target.classList.add('active');
|
event.target.classList.add('active');
|
||||||
document.getElementById('contextmenu-create--separator')!.style.display = 'none';
|
|
||||||
|
|
||||||
this.selectedIdSurvey = Number(event.target.dataset.id);
|
let res = await this.encuestaService.find(this.selectedSurveyId).toPromise();
|
||||||
//this.selectedSurvey = event.target.dataset.encuesta;
|
this.selectedSurvey = res.body;
|
||||||
|
this.isPublished = this.selectedSurvey!.estado === 'ACTIVE' || this.selectedSurvey!.estado === 'FINISHED'; // QUE SE LE MUESTRE CUANDO ESTE EN DRAFT
|
||||||
|
|
||||||
|
document.getElementById('contextmenu-create--separator')!.style.display = 'none';
|
||||||
|
document.getElementById('contextmenu-edit--separator')!.style.display = 'block';
|
||||||
|
document.getElementById('contextmenu-delete--separator')!.style.display = 'block';
|
||||||
|
document.getElementById('contextmenu-edit')!.style.display = 'block';
|
||||||
|
document.getElementById('contextmenu-duplicate')!.style.display = 'block';
|
||||||
|
|
||||||
|
if (!this.isPublished) {
|
||||||
|
document.getElementById('contextmenu-publish')!.style.display = 'block';
|
||||||
|
} else {
|
||||||
|
document.getElementById('contextmenu-publish')!.style.display = 'none';
|
||||||
|
}
|
||||||
|
// document.getElementById('contextmenu-share')!.style.display = 'block';
|
||||||
|
document.getElementById('contextmenu-create--separator')!.style.display = 'none';
|
||||||
}
|
}
|
||||||
|
|
||||||
document.getElementById('contextmenu')!.style.top = event.layerY + 'px';
|
document.getElementById('contextmenu')!.style.top = event.layerY + 'px';
|
||||||
|
|
|
@ -61,6 +61,13 @@ export class EncuestaService {
|
||||||
return this.http.get<IEncuesta>(`${this.resourceUrl}/${id}`);
|
return this.http.get<IEncuesta>(`${this.resourceUrl}/${id}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
publishEncuesta(encuesta: IEncuesta): Observable<EntityResponseType> {
|
||||||
|
//const copy = this.convertDateFromClient(encuesta);
|
||||||
|
return this.http.put<IEncuesta>(`${this.resourceUrl}/publish/${getEncuestaIdentifier(encuesta) as number}`, encuesta, {
|
||||||
|
observe: 'response',
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
deleteEncuesta(encuesta: IEncuesta): Observable<EntityResponseType> {
|
deleteEncuesta(encuesta: IEncuesta): Observable<EntityResponseType> {
|
||||||
//const copy = this.convertDateFromClient(encuesta);
|
//const copy = this.convertDateFromClient(encuesta);
|
||||||
return this.http.put<IEncuesta>(`${this.resourceUrl}/${getEncuestaIdentifier(encuesta) as number}`, encuesta, { observe: 'response' });
|
return this.http.put<IEncuesta>(`${this.resourceUrl}/${getEncuestaIdentifier(encuesta) as number}`, encuesta, { observe: 'response' });
|
||||||
|
|
|
@ -1,6 +1,16 @@
|
||||||
<div>
|
<div>
|
||||||
<h2 id="page-heading" data-cy="EPreguntaCerradaHeading">
|
<h2 id="page-heading" data-cy="EPreguntaCerradaHeading">
|
||||||
<p class="ds-title">{{ encuesta!.nombre }}</p>
|
<div class="d-flex align-items-center">
|
||||||
|
<p class="ds-title">{{ encuesta!.nombre }}</p>
|
||||||
|
<fa-icon
|
||||||
|
class="ds-info--icon"
|
||||||
|
[icon]="faQuestion"
|
||||||
|
data-toggle="modal"
|
||||||
|
data-target="#verParametros"
|
||||||
|
(click)="loadAplicationParameters()"
|
||||||
|
></fa-icon>
|
||||||
|
</div>
|
||||||
|
|
||||||
<p class="ds-subtitle">Creada el día {{ encuesta!.fechaCreacion | formatShortDatetime | lowercase }}</p>
|
<p class="ds-subtitle">Creada el día {{ encuesta!.fechaCreacion | formatShortDatetime | lowercase }}</p>
|
||||||
|
|
||||||
<div class="d-flex justify-content-end">
|
<div class="d-flex justify-content-end">
|
||||||
|
@ -12,7 +22,7 @@
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
class="ds-btn ds-btn--secondary"
|
class="ds-btn ds-btn--primary"
|
||||||
(click)="createQuestion()"
|
(click)="createQuestion()"
|
||||||
[disabled]="isLoading"
|
[disabled]="isLoading"
|
||||||
data-toggle="modal"
|
data-toggle="modal"
|
||||||
|
@ -20,12 +30,12 @@
|
||||||
>
|
>
|
||||||
<fa-icon icon="sync" [icon]="faPlus"></fa-icon> <span>Crear pregunta</span>
|
<fa-icon icon="sync" [icon]="faPlus"></fa-icon> <span>Crear pregunta</span>
|
||||||
</button>
|
</button>
|
||||||
<ng-container *ngIf="encuesta!.estado === 'DRAFT'">
|
<!-- <ng-container *ngIf="encuesta!.estado === 'DRAFT'">
|
||||||
<button type="button" class="ds-btn ds-btn--primary" (click)="publishSurvey()">Publicar encuesta</button>
|
<button type="button" class="ds-btn ds-btn--primary" (click)="publishSurvey()">Publicar encuesta</button>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
<ng-container *ngIf="encuesta!.estado === 'ACTIVE'">
|
<ng-container *ngIf="encuesta!.estado === 'ACTIVE'">
|
||||||
<button type="button" class="ds-btn ds-btn--danger" (click)="finishSurvey()">Finalizar encuesta</button>
|
<button type="button" class="ds-btn ds-btn--danger" (click)="finishSurvey()">Finalizar encuesta</button>
|
||||||
</ng-container>
|
</ng-container> -->
|
||||||
</div>
|
</div>
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
|
@ -33,146 +43,100 @@
|
||||||
|
|
||||||
<!-- <jhi-alert></jhi-alert> -->
|
<!-- <jhi-alert></jhi-alert> -->
|
||||||
|
|
||||||
<div class="alert alert-warning" id="no-result" *ngIf="ePreguntas?.length === 0">
|
<!-- <div class="alert alert-warning" id="no-result" *ngIf="ePreguntas?.length === 0">
|
||||||
<span>No se encontraron preguntas</span>
|
<span>No se encontraron preguntas</span>
|
||||||
</div>
|
</div> -->
|
||||||
|
<!-- *ngIf="ePreguntas && ePreguntas.length > 0" -->
|
||||||
<div class="ds-survey" id="entities" *ngIf="ePreguntas && ePreguntas.length > 0">
|
<div class="ds-survey" id="entities">
|
||||||
<div class="ds-survey--all-question-wrapper">
|
<div class="ds-survey--all-question-wrapper">
|
||||||
<div class="ds-survey--question-wrapper" *ngFor="let ePregunta of ePreguntas; let i = index; trackBy: trackId">
|
<ng-container *ngIf="encuesta!.estado === 'ACTIVE'">
|
||||||
<div
|
<p class="ds-title text-center">Encuesta en progreso</p>
|
||||||
[attr.data-index]="ePregunta.id"
|
<p class="ds-subtitle">No puede modificar la encuesta debido a que esta ya está en progreso.</p>
|
||||||
[attr.data-tipo]="ePregunta.tipo"
|
</ng-container>
|
||||||
[attr.data-opcional]="ePregunta.opcional"
|
<ng-container *ngIf="encuesta!.estado === 'FINISHED'">
|
||||||
class="ds-survey--question"
|
<p class="ds-title text-center">Encuesta finalizada</p>
|
||||||
>
|
<p class="ds-subtitle">No puede modificar la encuesta debido a que esta ya ha concluido.</p>
|
||||||
<div class="ds-survey--titulo">
|
</ng-container>
|
||||||
<span class="ds-survey--titulo--name">{{ i + 1 }}. {{ ePregunta.nombre }}</span>
|
<ng-container *ngIf="encuesta!.estado === 'DRAFT' && ePreguntas && ePreguntas.length === 0">
|
||||||
<fa-icon
|
<p class="ds-title text-center">Encuesta vacía</p>
|
||||||
*ngIf="encuesta!.estado === 'DRAFT'"
|
<p class="ds-subtitle">Inicie creando preguntas y opciones para su encuesta.</p>
|
||||||
class="ds-survey--titulo--icon"
|
</ng-container>
|
||||||
[icon]="faTimes"
|
<ng-container *ngIf="encuesta!.estado === 'DRAFT'">
|
||||||
(click)="deleteQuestion($event)"
|
<div class="ds-survey--question-wrapper" *ngFor="let ePregunta of ePreguntas; let i = index; trackBy: trackId">
|
||||||
[attr.data-id]="ePregunta.id"
|
<div
|
||||||
[attr.data-type]="ePregunta.tipo"
|
[attr.data-index]="ePregunta.id"
|
||||||
></fa-icon>
|
[attr.data-tipo]="ePregunta.tipo"
|
||||||
</div>
|
[attr.data-opcional]="ePregunta.opcional"
|
||||||
<div>
|
class="ds-survey--question"
|
||||||
<span *ngIf="ePregunta.tipo === 'SINGLE'" class="ds-subtitle"
|
>
|
||||||
>Pregunta de respuesta {{ 'dataSurveyApp.PreguntaCerradaTipo.SINGLE' | translate | lowercase }}
|
<div class="ds-survey--titulo">
|
||||||
{{ ePregunta.opcional ? '(opcional)' : '' }}</span
|
<span class="ds-survey--titulo--name">{{ i + 1 }}. {{ ePregunta.nombre }}</span>
|
||||||
>
|
|
||||||
<span *ngIf="ePregunta.tipo === 'MULTIPLE'" class="ds-subtitle"
|
|
||||||
>Pregunta de respuesta {{ 'dataSurveyApp.PreguntaCerradaTipo.MULTIPLE' | translate | lowercase }}
|
|
||||||
{{ ePregunta.opcional ? '(opcional)' : '' }}</span
|
|
||||||
>
|
|
||||||
<span *ngIf="!ePregunta.tipo" class="ds-subtitle"
|
|
||||||
>Pregunta de respuesta abierta {{ ePregunta.opcional ? '(opcional)' : '' }}</span
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
<ng-container *ngIf="ePregunta.tipo">
|
|
||||||
<ng-container *ngFor="let ePreguntaOpcion of ePreguntasOpciones; let j = index; trackBy: trackId">
|
|
||||||
<ng-container *ngFor="let ePreguntaOpcionFinal of ePreguntaOpcion">
|
|
||||||
<ng-container *ngIf="ePregunta.id === ePreguntaOpcionFinal.epreguntaCerrada.id">
|
|
||||||
<div
|
|
||||||
class="ds-survey--option ds-survey--option--base ds-survey--closed-option can-delete"
|
|
||||||
[attr.data-id]="ePreguntaOpcionFinal.id"
|
|
||||||
>
|
|
||||||
<!-- <input class="ds-survey--checkbox" id="{{ ePregunta.id }}-{{ ePreguntaOpcionFinal.id }}" type="checkbox" disabled /> -->
|
|
||||||
<label for="{{ ePregunta.id }}-{{ ePreguntaOpcionFinal.id }}">{{ ePreguntaOpcionFinal.nombre }}</label>
|
|
||||||
<fa-icon
|
|
||||||
*ngIf="encuesta!.estado === 'DRAFT'"
|
|
||||||
class="ds-survey--titulo--icon ds-survey--titulo--icon--small"
|
|
||||||
[icon]="faTimes"
|
|
||||||
(click)="deleteOption($event)"
|
|
||||||
[attr.data-optionid]="ePreguntaOpcionFinal.id"
|
|
||||||
></fa-icon>
|
|
||||||
</div>
|
|
||||||
</ng-container>
|
|
||||||
</ng-container>
|
|
||||||
</ng-container>
|
|
||||||
<div
|
|
||||||
class="ds-survey--option ds-survey--option--add ds-survey--closed-option"
|
|
||||||
(click)="resetForm($event)"
|
|
||||||
data-toggle="modal"
|
|
||||||
data-target="#crearOpcion"
|
|
||||||
[attr.data-id]="ePregunta.id"
|
|
||||||
>
|
|
||||||
<fa-icon
|
<fa-icon
|
||||||
class="ds-survey--add-option--icon"
|
*ngIf="encuesta!.estado === 'DRAFT'"
|
||||||
[icon]="faPlus"
|
class="ds-survey--titulo--icon"
|
||||||
|
[icon]="faTimes"
|
||||||
|
(click)="deleteQuestion($event)"
|
||||||
[attr.data-id]="ePregunta.id"
|
[attr.data-id]="ePregunta.id"
|
||||||
[attr.data-type]="ePregunta.tipo"
|
[attr.data-type]="ePregunta.tipo"
|
||||||
></fa-icon>
|
></fa-icon>
|
||||||
<span class="ds-survey--add-option">Añadir opción</span>
|
|
||||||
</div>
|
</div>
|
||||||
</ng-container>
|
<div>
|
||||||
<div class="ds-survey--option ds-survey--option--base ds-survey--open-option" *ngIf="!ePregunta.tipo">
|
<span *ngIf="ePregunta.tipo === 'SINGLE'" class="ds-subtitle"
|
||||||
<textarea name="" id="" cols="30" rows="10" disabled></textarea>
|
>Pregunta de respuesta {{ 'dataSurveyApp.PreguntaCerradaTipo.SINGLE' | translate | lowercase }}
|
||||||
|
{{ ePregunta.opcional ? '(opcional)' : '' }}</span
|
||||||
|
>
|
||||||
|
<span *ngIf="ePregunta.tipo === 'MULTIPLE'" class="ds-subtitle"
|
||||||
|
>Pregunta de respuesta {{ 'dataSurveyApp.PreguntaCerradaTipo.MULTIPLE' | translate | lowercase }}
|
||||||
|
{{ ePregunta.opcional ? '(opcional)' : '' }}</span
|
||||||
|
>
|
||||||
|
<span *ngIf="!ePregunta.tipo" class="ds-subtitle"
|
||||||
|
>Pregunta de respuesta abierta {{ ePregunta.opcional ? '(opcional)' : '' }}</span
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
<ng-container *ngIf="ePregunta.tipo">
|
||||||
|
<ng-container *ngFor="let ePreguntaOpcion of ePreguntasOpciones; let j = index; trackBy: trackId">
|
||||||
|
<ng-container *ngFor="let ePreguntaOpcionFinal of ePreguntaOpcion">
|
||||||
|
<ng-container *ngIf="ePregunta.id === ePreguntaOpcionFinal.epreguntaCerrada.id">
|
||||||
|
<div
|
||||||
|
class="ds-survey--option ds-survey--option--base ds-survey--closed-option can-delete"
|
||||||
|
[attr.data-id]="ePreguntaOpcionFinal.id"
|
||||||
|
>
|
||||||
|
<!-- <input class="ds-survey--checkbox" id="{{ ePregunta.id }}-{{ ePreguntaOpcionFinal.id }}" type="checkbox" disabled /> -->
|
||||||
|
<label for="{{ ePregunta.id }}-{{ ePreguntaOpcionFinal.id }}">{{ ePreguntaOpcionFinal.nombre }}</label>
|
||||||
|
<fa-icon
|
||||||
|
*ngIf="encuesta!.estado === 'DRAFT'"
|
||||||
|
class="ds-survey--titulo--icon ds-survey--titulo--icon--small"
|
||||||
|
[icon]="faTimes"
|
||||||
|
(click)="deleteOption($event)"
|
||||||
|
[attr.data-optionid]="ePreguntaOpcionFinal.id"
|
||||||
|
></fa-icon>
|
||||||
|
</div>
|
||||||
|
</ng-container>
|
||||||
|
</ng-container>
|
||||||
|
</ng-container>
|
||||||
|
<div
|
||||||
|
class="ds-survey--option ds-survey--option--add ds-survey--closed-option"
|
||||||
|
(click)="resetForm($event)"
|
||||||
|
data-toggle="modal"
|
||||||
|
data-target="#crearOpcion"
|
||||||
|
[attr.data-id]="ePregunta.id"
|
||||||
|
>
|
||||||
|
<fa-icon
|
||||||
|
class="ds-survey--add-option--icon"
|
||||||
|
[icon]="faPlus"
|
||||||
|
[attr.data-id]="ePregunta.id"
|
||||||
|
[attr.data-type]="ePregunta.tipo"
|
||||||
|
></fa-icon>
|
||||||
|
<span class="ds-survey--add-option">Añadir opción</span>
|
||||||
|
</div>
|
||||||
|
</ng-container>
|
||||||
|
<div class="ds-survey--option ds-survey--option--base ds-survey--open-option" *ngIf="!ePregunta.tipo">
|
||||||
|
<textarea name="" id="" cols="30" rows="10" disabled></textarea>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</ng-container>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- <table class="table table-striped" aria-describedby="page-heading">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th scope="col"><span jhiTranslate="global.field.id">ID</span></th>
|
|
||||||
<th scope="col"><span jhiTranslate="dataSurveyApp.ePreguntaCerrada.nombre">Nombre</span></th>
|
|
||||||
<th scope="col"><span jhiTranslate="dataSurveyApp.ePreguntaCerrada.tipo">Tipo</span></th>
|
|
||||||
<th scope="col"><span jhiTranslate="dataSurveyApp.ePreguntaCerrada.opcional">Opcional</span></th>
|
|
||||||
<th scope="col"><span jhiTranslate="dataSurveyApp.ePreguntaCerrada.orden">Orden</span></th>
|
|
||||||
<th scope="col"><span jhiTranslate="dataSurveyApp.ePreguntaCerrada.encuesta">Encuesta</span></th>
|
|
||||||
<th scope="col"></th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<tr *ngFor="let ePreguntaCerrada of ePreguntaCerradas; trackBy: trackId" data-cy="entityTable">
|
|
||||||
<td>
|
|
||||||
<a [routerLink]="['/e-pregunta-cerrada', ePreguntaCerrada.id, 'view']">{{ ePreguntaCerrada.id }}</a>
|
|
||||||
</td>
|
|
||||||
<td>{{ ePreguntaCerrada.nombre }}</td>
|
|
||||||
<td *ngIf="ePreguntaCerrada.tipo != undefined" jhiTranslate="{{ 'dataSurveyApp.PreguntaCerradaTipo.' + ePreguntaCerrada.tipo }}">{{ ePreguntaCerrada.tipo }}</td>
|
|
||||||
<td *ngIf="ePreguntaCerrada.tipo == undefined"></td>
|
|
||||||
|
|
||||||
<td>{{ ePreguntaCerrada.opcional }}</td>
|
|
||||||
<td>{{ ePreguntaCerrada.orden }}</td>
|
|
||||||
<td>
|
|
||||||
<div *ngIf="ePreguntaCerrada.encuesta">
|
|
||||||
<a [routerLink]="['/encuesta', ePreguntaCerrada.encuesta?.id, 'view']">{{ ePreguntaCerrada.encuesta?.id }}</a>
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
<td class="text-right">
|
|
||||||
<div class="btn-group">
|
|
||||||
<button
|
|
||||||
type="submit"
|
|
||||||
[routerLink]="['/e-pregunta-cerrada', ePreguntaCerrada.id, 'view']"
|
|
||||||
class="btn btn-info btn-sm"
|
|
||||||
data-cy="entityDetailsButton"
|
|
||||||
>
|
|
||||||
<fa-icon icon="eye"></fa-icon>
|
|
||||||
<span class="d-none d-md-inline" jhiTranslate="entity.action.view">View</span>
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button
|
|
||||||
type="submit"
|
|
||||||
[routerLink]="['/e-pregunta-cerrada', ePreguntaCerrada.id, 'edit']"
|
|
||||||
class="btn btn-primary btn-sm"
|
|
||||||
data-cy="entityEditButton"
|
|
||||||
>
|
|
||||||
<fa-icon icon="pencil-alt"></fa-icon>
|
|
||||||
<span class="d-none d-md-inline" jhiTranslate="entity.action.edit">Edit</span>
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button type="submit" (click)="delete(ePreguntaCerrada)" class="btn btn-danger btn-sm" data-cy="entityDeleteButton">
|
|
||||||
<fa-icon icon="times"></fa-icon>
|
|
||||||
<span class="d-none d-md-inline" jhiTranslate="entity.action.delete">Delete</span>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table> -->
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -395,265 +359,48 @@
|
||||||
|
|
||||||
<!-- ------------------------------------------------------------------------------------------------- -->
|
<!-- ------------------------------------------------------------------------------------------------- -->
|
||||||
|
|
||||||
<!-- <div class="row justify-content-center">
|
<!-- Survey Parameters Information -->
|
||||||
<div class="col-8">
|
<div
|
||||||
<form name="editForm" role="form" novalidate (ngSubmit)="save()" [formGroup]="editForm">
|
class="modal fade ds-modal"
|
||||||
<h2 id="jhi-encuesta-heading" data-cy="EncuestaCreateUpdateHeading" jhiTranslate="dataSurveyApp.encuesta.home.createOrEditLabel">
|
id="verParametros"
|
||||||
Create or edit a Encuesta
|
tabindex="-1"
|
||||||
</h2>
|
role="dialog"
|
||||||
|
aria-labelledby="exampleModalCenterTitle"
|
||||||
<div>
|
aria-hidden="true"
|
||||||
<jhi-alert-error></jhi-alert-error>
|
>
|
||||||
|
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||||
<div class="form-group" [hidden]="editForm.get('id')!.value == null">
|
<div class="modal-content">
|
||||||
<label class="form-control-label" jhiTranslate="global.field.id" for="field_id">ID</label>
|
<div class="modal-header">
|
||||||
<input type="number" class="form-control" name="id" id="field_id" data-cy="id" formControlName="id" [readonly]="true" />
|
<h1 class="modal-title" id="exampleModalLongTitle">Información de Encuesta</h1>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label class="form-control-label" jhiTranslate="dataSurveyApp.encuesta.nombre" for="field_nombre">Nombre</label>
|
|
||||||
<input type="text" class="form-control" name="nombre" id="field_nombre" data-cy="nombre" formControlName="nombre" />
|
|
||||||
<div *ngIf="editForm.get('nombre')!.invalid && (editForm.get('nombre')!.dirty || editForm.get('nombre')!.touched)">
|
|
||||||
<small class="form-text text-danger" *ngIf="editForm.get('nombre')?.errors?.required" jhiTranslate="entity.validation.required">
|
|
||||||
This field is required.
|
|
||||||
</small>
|
|
||||||
<small
|
|
||||||
class="form-text text-danger"
|
|
||||||
*ngIf="editForm.get('nombre')?.errors?.minlength"
|
|
||||||
jhiTranslate="entity.validation.minlength"
|
|
||||||
[translateValues]="{ min: 1 }"
|
|
||||||
>
|
|
||||||
This field is required to be at least 1 characters.
|
|
||||||
</small>
|
|
||||||
<small
|
|
||||||
class="form-text text-danger"
|
|
||||||
*ngIf="editForm.get('nombre')?.errors?.maxlength"
|
|
||||||
jhiTranslate="entity.validation.maxlength"
|
|
||||||
[translateValues]="{ max: 50 }"
|
|
||||||
>
|
|
||||||
This field cannot be longer than 50 characters.
|
|
||||||
</small>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label class="form-control-label" jhiTranslate="dataSurveyApp.encuesta.descripcion" for="field_descripcion">Descripcion</label>
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
class="form-control"
|
|
||||||
name="descripcion"
|
|
||||||
id="field_descripcion"
|
|
||||||
data-cy="descripcion"
|
|
||||||
formControlName="descripcion"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label class="form-control-label" jhiTranslate="dataSurveyApp.encuesta.fechaCreacion" for="field_fechaCreacion"
|
|
||||||
>Fecha Creacion</label
|
|
||||||
>
|
|
||||||
<div class="d-flex">
|
|
||||||
<input
|
|
||||||
id="field_fechaCreacion"
|
|
||||||
data-cy="fechaCreacion"
|
|
||||||
type="datetime-local"
|
|
||||||
class="form-control"
|
|
||||||
name="fechaCreacion"
|
|
||||||
formControlName="fechaCreacion"
|
|
||||||
placeholder="YYYY-MM-DD HH:mm"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div
|
|
||||||
*ngIf="
|
|
||||||
editForm.get('fechaCreacion')!.invalid && (editForm.get('fechaCreacion')!.dirty || editForm.get('fechaCreacion')!.touched)
|
|
||||||
"
|
|
||||||
>
|
|
||||||
<small
|
|
||||||
class="form-text text-danger"
|
|
||||||
*ngIf="editForm.get('fechaCreacion')?.errors?.required"
|
|
||||||
jhiTranslate="entity.validation.required"
|
|
||||||
>
|
|
||||||
This field is required.
|
|
||||||
</small>
|
|
||||||
<small
|
|
||||||
class="form-text text-danger"
|
|
||||||
[hidden]="!editForm.get('fechaCreacion')?.errors?.ZonedDateTimelocal"
|
|
||||||
jhiTranslate="entity.validation.ZonedDateTimelocal"
|
|
||||||
>
|
|
||||||
This field should be a date and time.
|
|
||||||
</small>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label class="form-control-label" jhiTranslate="dataSurveyApp.encuesta.fechaPublicacion" for="field_fechaPublicacion"
|
|
||||||
>Fecha Publicacion</label
|
|
||||||
>
|
|
||||||
<div class="d-flex">
|
|
||||||
<input
|
|
||||||
id="field_fechaPublicacion"
|
|
||||||
data-cy="fechaPublicacion"
|
|
||||||
type="datetime-local"
|
|
||||||
class="form-control"
|
|
||||||
name="fechaPublicacion"
|
|
||||||
formControlName="fechaPublicacion"
|
|
||||||
placeholder="YYYY-MM-DD HH:mm"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label class="form-control-label" jhiTranslate="dataSurveyApp.encuesta.fechaFinalizar" for="field_fechaFinalizar"
|
|
||||||
>Fecha Finalizar</label
|
|
||||||
>
|
|
||||||
<div class="d-flex">
|
|
||||||
<input
|
|
||||||
id="field_fechaFinalizar"
|
|
||||||
data-cy="fechaFinalizar"
|
|
||||||
type="datetime-local"
|
|
||||||
class="form-control"
|
|
||||||
name="fechaFinalizar"
|
|
||||||
formControlName="fechaFinalizar"
|
|
||||||
placeholder="YYYY-MM-DD HH:mm"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label class="form-control-label" jhiTranslate="dataSurveyApp.encuesta.fechaFinalizada" for="field_fechaFinalizada"
|
|
||||||
>Fecha Finalizada</label
|
|
||||||
>
|
|
||||||
<div class="d-flex">
|
|
||||||
<input
|
|
||||||
id="field_fechaFinalizada"
|
|
||||||
data-cy="fechaFinalizada"
|
|
||||||
type="datetime-local"
|
|
||||||
class="form-control"
|
|
||||||
name="fechaFinalizada"
|
|
||||||
formControlName="fechaFinalizada"
|
|
||||||
placeholder="YYYY-MM-DD HH:mm"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label class="form-control-label" jhiTranslate="dataSurveyApp.encuesta.calificacion" for="field_calificacion">Calificacion</label>
|
|
||||||
<input
|
|
||||||
type="number"
|
|
||||||
class="form-control"
|
|
||||||
name="calificacion"
|
|
||||||
id="field_calificacion"
|
|
||||||
data-cy="calificacion"
|
|
||||||
formControlName="calificacion"
|
|
||||||
/>
|
|
||||||
<div
|
|
||||||
*ngIf="editForm.get('calificacion')!.invalid && (editForm.get('calificacion')!.dirty || editForm.get('calificacion')!.touched)"
|
|
||||||
>
|
|
||||||
<small
|
|
||||||
class="form-text text-danger"
|
|
||||||
*ngIf="editForm.get('calificacion')?.errors?.required"
|
|
||||||
jhiTranslate="entity.validation.required"
|
|
||||||
>
|
|
||||||
This field is required.
|
|
||||||
</small>
|
|
||||||
<small
|
|
||||||
class="form-text text-danger"
|
|
||||||
[hidden]="!editForm.get('calificacion')?.errors?.number"
|
|
||||||
jhiTranslate="entity.validation.number"
|
|
||||||
>
|
|
||||||
This field should be a number.
|
|
||||||
</small>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label class="form-control-label" jhiTranslate="dataSurveyApp.encuesta.acceso" for="field_acceso">Acceso</label>
|
|
||||||
<select class="form-control" name="acceso" formControlName="acceso" id="field_acceso" data-cy="acceso">
|
|
||||||
<option [ngValue]="null">{{ 'dataSurveyApp.AccesoEncuesta.null' | translate }}</option>
|
|
||||||
<option value="PUBLIC">{{ 'dataSurveyApp.AccesoEncuesta.PUBLIC' | translate }}</option>
|
|
||||||
<option value="PRIVATE">{{ 'dataSurveyApp.AccesoEncuesta.PRIVATE' | translate }}</option>
|
|
||||||
</select>
|
|
||||||
<div *ngIf="editForm.get('acceso')!.invalid && (editForm.get('acceso')!.dirty || editForm.get('acceso')!.touched)">
|
|
||||||
<small class="form-text text-danger" *ngIf="editForm.get('acceso')?.errors?.required" jhiTranslate="entity.validation.required">
|
|
||||||
This field is required.
|
|
||||||
</small>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label class="form-control-label" jhiTranslate="dataSurveyApp.encuesta.contrasenna" for="field_contrasenna">Contrasenna</label>
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
class="form-control"
|
|
||||||
name="contrasenna"
|
|
||||||
id="field_contrasenna"
|
|
||||||
data-cy="contrasenna"
|
|
||||||
formControlName="contrasenna"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label class="form-control-label" jhiTranslate="dataSurveyApp.encuesta.estado" for="field_estado">Estado</label>
|
|
||||||
<select class="form-control" name="estado" formControlName="estado" id="field_estado" data-cy="estado">
|
|
||||||
<option [ngValue]="null">{{ 'dataSurveyApp.EstadoEncuesta.null' | translate }}</option>
|
|
||||||
<option value="DRAFT">{{ 'dataSurveyApp.EstadoEncuesta.DRAFT' | translate }}</option>
|
|
||||||
<option value="ACTIVE">{{ 'dataSurveyApp.EstadoEncuesta.ACTIVE' | translate }}</option>
|
|
||||||
<option value="FINISHED">{{ 'dataSurveyApp.EstadoEncuesta.FINISHED' | translate }}</option>
|
|
||||||
<option value="DELETED">{{ 'dataSurveyApp.EstadoEncuesta.DELETED' | translate }}</option>
|
|
||||||
</select>
|
|
||||||
<div *ngIf="editForm.get('estado')!.invalid && (editForm.get('estado')!.dirty || editForm.get('estado')!.touched)">
|
|
||||||
<small class="form-text text-danger" *ngIf="editForm.get('estado')?.errors?.required" jhiTranslate="entity.validation.required">
|
|
||||||
This field is required.
|
|
||||||
</small>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label class="form-control-label" jhiTranslate="dataSurveyApp.encuesta.categoria" for="field_categoria">Categoria</label>
|
|
||||||
<select class="form-control" id="field_categoria" data-cy="categoria" name="categoria" formControlName="categoria">
|
|
||||||
<option [ngValue]="null"></option>
|
|
||||||
<option
|
|
||||||
[ngValue]="categoriaOption.id === editForm.get('categoria')!.value?.id ? editForm.get('categoria')!.value : categoriaOption"
|
|
||||||
*ngFor="let categoriaOption of categoriasSharedCollection; trackBy: trackCategoriaById"
|
|
||||||
>
|
|
||||||
{{ categoriaOption.nombre }}
|
|
||||||
</option>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label class="form-control-label" jhiTranslate="dataSurveyApp.encuesta.usuarioExtra" for="field_usuarioExtra"
|
|
||||||
>Usuario Extra</label
|
|
||||||
>
|
|
||||||
<select class="form-control" id="field_usuarioExtra" data-cy="usuarioExtra" name="usuarioExtra" formControlName="usuarioExtra">
|
|
||||||
<option [ngValue]="null"></option>
|
|
||||||
<option
|
|
||||||
[ngValue]="
|
|
||||||
usuarioExtraOption.id === editForm.get('usuarioExtra')!.value?.id ? editForm.get('usuarioExtra')!.value : usuarioExtraOption
|
|
||||||
"
|
|
||||||
*ngFor="let usuarioExtraOption of usuarioExtrasSharedCollection; trackBy: trackUsuarioExtraById"
|
|
||||||
>
|
|
||||||
{{ usuarioExtraOption.id }}
|
|
||||||
</option>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<!-- {
|
||||||
<button type="button" id="cancel-save" data-cy="entityCreateCancelButton" class="btn btn-secondary" (click)="previousState()">
|
"id": 1,
|
||||||
<fa-icon icon="ban"></fa-icon> <span jhiTranslate="entity.action.cancel">Cancel</span>
|
"maxDiasEncuesta": 20,
|
||||||
</button>
|
"minDiasEncuesta": 2,
|
||||||
|
"maxCantidadPreguntas": 10,
|
||||||
|
"minCantidadPreguntas": 2
|
||||||
|
} -->
|
||||||
|
|
||||||
<button
|
<div class="modal-body">
|
||||||
type="submit"
|
<div>
|
||||||
id="save-entity"
|
<div class="mb-5">
|
||||||
data-cy="entityCreateSaveButton"
|
<p class="ds-subtitle">Duración de encuesta permitida</p>
|
||||||
[disabled]="editForm.invalid || isSaving"
|
<p>{{ parametrosAplicacion!.minDiasEncuesta }} - {{ parametrosAplicacion!.maxDiasEncuesta }} días</p>
|
||||||
class="btn btn-primary"
|
</div>
|
||||||
>
|
<div>
|
||||||
<fa-icon icon="save"></fa-icon> <span jhiTranslate="entity.action.save">Save</span>
|
<p class="ds-subtitle">Cantidad de preguntas por encuesta</p>
|
||||||
|
<p>{{ parametrosAplicacion!.minCantidadPreguntas }} - {{ parametrosAplicacion!.maxCantidadPreguntas }} preguntas</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button id="cancelBtnVerParametros" type="button" class="ds-btn ds-btn--secondary" data-dismiss="modal">
|
||||||
|
<fa-icon icon="arrow-left"></fa-icon> <span>Volver</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div> -->
|
</div>
|
||||||
|
|
||||||
|
<!-- ------------------------------------------------------------------------------------------------- -->
|
||||||
|
|
|
@ -25,11 +25,14 @@ import { IEPreguntaCerrada } from 'app/entities/e-pregunta-cerrada/e-pregunta-ce
|
||||||
import { EPreguntaCerradaService } from 'app/entities/e-pregunta-cerrada/service/e-pregunta-cerrada.service';
|
import { EPreguntaCerradaService } from 'app/entities/e-pregunta-cerrada/service/e-pregunta-cerrada.service';
|
||||||
import { EPreguntaCerradaDeleteDialogComponent } from 'app/entities/e-pregunta-cerrada/delete/e-pregunta-cerrada-delete-dialog.component';
|
import { EPreguntaCerradaDeleteDialogComponent } from 'app/entities/e-pregunta-cerrada/delete/e-pregunta-cerrada-delete-dialog.component';
|
||||||
|
|
||||||
import { faTimes, faPlus } from '@fortawesome/free-solid-svg-icons';
|
import { faTimes, faPlus, faQuestion } from '@fortawesome/free-solid-svg-icons';
|
||||||
import { PreguntaCerradaTipo } from 'app/entities/enumerations/pregunta-cerrada-tipo.model';
|
import { PreguntaCerradaTipo } from 'app/entities/enumerations/pregunta-cerrada-tipo.model';
|
||||||
import { EncuestaDeleteQuestionDialogComponent } from '../encuesta-delete-question-dialog/encuesta-delete-question-dialog.component';
|
import { EncuestaDeleteQuestionDialogComponent } from '../encuesta-delete-question-dialog/encuesta-delete-question-dialog.component';
|
||||||
import { EncuestaDeleteOptionDialogComponent } from '../encuesta-delete-option-dialog/encuesta-delete-option-dialog.component';
|
import { EncuestaDeleteOptionDialogComponent } from '../encuesta-delete-option-dialog/encuesta-delete-option-dialog.component';
|
||||||
|
|
||||||
|
import { ParametroAplicacionService } from './../../parametro-aplicacion/service/parametro-aplicacion.service';
|
||||||
|
import { IParametroAplicacion } from './../../parametro-aplicacion/parametro-aplicacion.model';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'jhi-encuesta-update',
|
selector: 'jhi-encuesta-update',
|
||||||
templateUrl: './encuesta-update.component.html',
|
templateUrl: './encuesta-update.component.html',
|
||||||
|
@ -37,6 +40,7 @@ import { EncuestaDeleteOptionDialogComponent } from '../encuesta-delete-option-d
|
||||||
export class EncuestaUpdateComponent implements OnInit, AfterViewChecked {
|
export class EncuestaUpdateComponent implements OnInit, AfterViewChecked {
|
||||||
faTimes = faTimes;
|
faTimes = faTimes;
|
||||||
faPlus = faPlus;
|
faPlus = faPlus;
|
||||||
|
faQuestion = faQuestion;
|
||||||
|
|
||||||
isSaving = false;
|
isSaving = false;
|
||||||
isSavingQuestion = false;
|
isSavingQuestion = false;
|
||||||
|
@ -79,6 +83,7 @@ export class EncuestaUpdateComponent implements OnInit, AfterViewChecked {
|
||||||
ePreguntas?: any[];
|
ePreguntas?: any[];
|
||||||
ePreguntasOpciones?: any[];
|
ePreguntasOpciones?: any[];
|
||||||
encuesta: Encuesta | null = null;
|
encuesta: Encuesta | null = null;
|
||||||
|
parametrosAplicacion?: IParametroAplicacion | null = null;
|
||||||
|
|
||||||
isLoading = false;
|
isLoading = false;
|
||||||
|
|
||||||
|
@ -95,7 +100,8 @@ export class EncuestaUpdateComponent implements OnInit, AfterViewChecked {
|
||||||
protected modalService: NgbModal,
|
protected modalService: NgbModal,
|
||||||
protected ePreguntaCerradaService: EPreguntaCerradaService,
|
protected ePreguntaCerradaService: EPreguntaCerradaService,
|
||||||
protected ePreguntaCerradaOpcionService: EPreguntaCerradaOpcionService,
|
protected ePreguntaCerradaOpcionService: EPreguntaCerradaOpcionService,
|
||||||
protected ePreguntaAbiertaService: EPreguntaAbiertaService
|
protected ePreguntaAbiertaService: EPreguntaAbiertaService,
|
||||||
|
protected parametroAplicacionService: ParametroAplicacionService
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
loadAll(): void {
|
loadAll(): void {
|
||||||
|
@ -123,6 +129,12 @@ export class EncuestaUpdateComponent implements OnInit, AfterViewChecked {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async loadAplicationParameters(): Promise<void> {
|
||||||
|
const params = await this.parametroAplicacionService.find(1).toPromise();
|
||||||
|
this.parametrosAplicacion = params.body;
|
||||||
|
console.log(this.parametrosAplicacion);
|
||||||
|
}
|
||||||
|
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {
|
||||||
this.activatedRoute.data.subscribe(({ encuesta }) => {
|
this.activatedRoute.data.subscribe(({ encuesta }) => {
|
||||||
if (encuesta.id === undefined) {
|
if (encuesta.id === undefined) {
|
||||||
|
@ -134,6 +146,7 @@ export class EncuestaUpdateComponent implements OnInit, AfterViewChecked {
|
||||||
} else {
|
} else {
|
||||||
this.encuesta = encuesta;
|
this.encuesta = encuesta;
|
||||||
this.loadAll();
|
this.loadAll();
|
||||||
|
this.loadAplicationParameters();
|
||||||
}
|
}
|
||||||
|
|
||||||
// this.updateForm(encuesta);
|
// this.updateForm(encuesta);
|
||||||
|
|
|
@ -19,3 +19,22 @@
|
||||||
p {
|
p {
|
||||||
margin: 0 !important;
|
margin: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ds-info--icon {
|
||||||
|
border-radius: 50%;
|
||||||
|
background-color: #f1f5f9;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: background-color 0.2s ease-in-out;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
font-size: 0.7rem;
|
||||||
|
color: #313747;
|
||||||
|
pointer-events: visible !important;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: #e3e6e9;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue