Merge branch 'dev' into feature/US-25
This commit is contained in:
commit
81757a0f11
|
@ -136,6 +136,31 @@ public class EncuestaResource {
|
|||
.body(result);
|
||||
}
|
||||
|
||||
@PutMapping("/encuestas/update/{id}")
|
||||
public ResponseEntity<Encuesta> updateEncuestaReal(
|
||||
@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);
|
||||
|
||||
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,
|
||||
|
|
|
@ -2,15 +2,20 @@ package org.datasurvey.web.rest;
|
|||
|
||||
import java.net.URI;
|
||||
import java.net.URISyntaxException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Objects;
|
||||
import java.util.Optional;
|
||||
import java.util.stream.Collectors;
|
||||
import javax.validation.Valid;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import org.datasurvey.domain.UsuarioEncuesta;
|
||||
import org.datasurvey.domain.UsuarioExtra;
|
||||
import org.datasurvey.repository.UsuarioEncuestaRepository;
|
||||
import org.datasurvey.service.EncuestaService;
|
||||
import org.datasurvey.service.UsuarioEncuestaQueryService;
|
||||
import org.datasurvey.service.UsuarioEncuestaService;
|
||||
import org.datasurvey.service.UsuarioExtraService;
|
||||
import org.datasurvey.service.criteria.UsuarioEncuestaCriteria;
|
||||
import org.datasurvey.web.rest.errors.BadRequestAlertException;
|
||||
import org.slf4j.Logger;
|
||||
|
@ -36,6 +41,8 @@ public class UsuarioEncuestaResource {
|
|||
private String applicationName;
|
||||
|
||||
private final UsuarioEncuestaService usuarioEncuestaService;
|
||||
private final UsuarioExtraService usuarioExtraService;
|
||||
private final EncuestaService encuestaService;
|
||||
|
||||
private final UsuarioEncuestaRepository usuarioEncuestaRepository;
|
||||
|
||||
|
@ -44,11 +51,15 @@ public class UsuarioEncuestaResource {
|
|||
public UsuarioEncuestaResource(
|
||||
UsuarioEncuestaService usuarioEncuestaService,
|
||||
UsuarioEncuestaRepository usuarioEncuestaRepository,
|
||||
UsuarioEncuestaQueryService usuarioEncuestaQueryService
|
||||
UsuarioEncuestaQueryService usuarioEncuestaQueryService,
|
||||
UsuarioExtraService usuarioExtraService,
|
||||
EncuestaService encuestaService
|
||||
) {
|
||||
this.usuarioEncuestaService = usuarioEncuestaService;
|
||||
this.usuarioEncuestaRepository = usuarioEncuestaRepository;
|
||||
this.usuarioEncuestaQueryService = usuarioEncuestaQueryService;
|
||||
this.usuarioExtraService = usuarioExtraService;
|
||||
this.encuestaService = encuestaService;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -195,4 +206,23 @@ public class UsuarioEncuestaResource {
|
|||
.headers(HeaderUtil.createEntityDeletionAlert(applicationName, true, ENTITY_NAME, id.toString()))
|
||||
.build();
|
||||
}
|
||||
|
||||
@GetMapping("/usuario-encuestas/encuesta/{id}")
|
||||
public ResponseEntity<List<UsuarioEncuesta>> getColaboradores(@PathVariable Long id) {
|
||||
List<UsuarioExtra> usuariosExtras = usuarioExtraService.findAll();
|
||||
List<UsuarioEncuesta> usuariosEncuestas = usuarioEncuestaService
|
||||
.findAll()
|
||||
.stream()
|
||||
.filter(uE -> Objects.nonNull(uE.getEncuesta()))
|
||||
.filter(uE -> uE.getEncuesta().getId().equals(id))
|
||||
.collect(Collectors.toList());
|
||||
|
||||
for (UsuarioEncuesta usuarioEncuesta : usuariosEncuestas) {
|
||||
long usuarioExtraId = usuarioEncuesta.getUsuarioExtra().getId();
|
||||
UsuarioExtra usuarioExtra = usuariosExtras.stream().filter(u -> u.getId() == usuarioExtraId).findFirst().get();
|
||||
usuarioEncuesta.getUsuarioExtra().setNombre(usuarioExtra.getNombre());
|
||||
usuarioEncuesta.getUsuarioExtra().setIconoPerfil(usuarioExtra.getIconoPerfil());
|
||||
}
|
||||
return ResponseEntity.ok().body(usuariosEncuestas);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -38,8 +38,8 @@
|
|||
</div>
|
||||
<div class="d-flex justify-content-center">
|
||||
<button class="ds-btn ds-btn--primary" routerLink="/login" jhiTranslate="global.messages.info.authenticated.botonInicio">
|
||||
sign in</button
|
||||
>.
|
||||
sign in
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -141,7 +141,7 @@
|
|||
>{{
|
||||
encuesta.fechaPublicacion === undefined
|
||||
? 'Sin publicar'
|
||||
: (encuesta.fechaFinalizada | formatShortDatetime | lowercase)
|
||||
: (encuesta.fechaPublicacion | formatShortDatetime | lowercase)
|
||||
}}
|
||||
</P>
|
||||
</div>
|
||||
|
@ -157,7 +157,7 @@
|
|||
{{
|
||||
encuesta.fechaFinalizar === undefined
|
||||
? 'Sin fecha de finalización'
|
||||
: (encuesta.fechaFinalizada | formatShortDatetime | lowercase)
|
||||
: (encuesta.fechaFinalizar | formatShortDatetime | lowercase)
|
||||
}}</span
|
||||
>
|
||||
</dd>
|
||||
|
|
|
@ -97,7 +97,9 @@
|
|||
</div>
|
||||
<div class="ds-contextmenu__divider ds-contextmenu__divider--separator-bottom" id="contextmenu-edit--separator">
|
||||
<li class="d-justify justify-content-start" id="contextmenu-edit">
|
||||
<button type="button" (click)="openSurvey(null)"><fa-icon class="contextmenu__icon" [icon]="faEdit"></fa-icon>Editar</button>
|
||||
<button type="button" data-toggle="modal" data-target="#editarEncuesta">
|
||||
<fa-icon class="contextmenu__icon" [icon]="faEdit"></fa-icon>Editar
|
||||
</button>
|
||||
</li>
|
||||
<li id="contextmenu-preview">
|
||||
<button type="button" (click)="openPreview()">
|
||||
|
@ -401,3 +403,150 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Modal -->
|
||||
<div
|
||||
class="modal fade ds-modal"
|
||||
id="editarEncuesta"
|
||||
tabindex="-1"
|
||||
role="dialog"
|
||||
aria-labelledby="exampleModalCenterTitle"
|
||||
aria-hidden="true"
|
||||
>
|
||||
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||
<div class="modal-content">
|
||||
<form
|
||||
autocomplete="off"
|
||||
class="ds-form"
|
||||
name="surveyEditForm"
|
||||
role="form"
|
||||
novalidate
|
||||
(ngSubmit)="editSurvey()"
|
||||
[formGroup]="surveyEditForm"
|
||||
>
|
||||
<div class="modal-header">
|
||||
<h1 class="modal-title" id="exampleModalLongTitle">Modificar Encuesta</h1>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<!-- Survey Modify Modal -->
|
||||
<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="
|
||||
surveyEditForm.get('nombre')!.invalid && (surveyEditForm.get('nombre')!.dirty || surveyEditForm.get('nombre')!.touched)
|
||||
"
|
||||
>
|
||||
<small
|
||||
class="form-text text-danger"
|
||||
*ngIf="surveyEditForm.get('nombre')?.errors?.required"
|
||||
jhiTranslate="entity.validation.required"
|
||||
>
|
||||
This field is required.
|
||||
</small>
|
||||
<small
|
||||
class="form-text text-danger"
|
||||
*ngIf="surveyEditForm.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="surveyEditForm.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.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="
|
||||
surveyEditForm.get('acceso')!.invalid && (surveyEditForm.get('acceso')!.dirty || surveyEditForm.get('acceso')!.touched)
|
||||
"
|
||||
>
|
||||
<small
|
||||
class="form-text text-danger"
|
||||
*ngIf="surveyEditForm.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.categoria" for="field_categoria">Categoría</label>
|
||||
<select class="form-control" id="field_categoria" data-cy="categoria" name="categoria" formControlName="categoria">
|
||||
<option [ngValue]="null" selected></option>
|
||||
<option
|
||||
[ngValue]="
|
||||
categoriaOption.id === surveyEditForm.get('categoria')!.value?.id
|
||||
? surveyEditForm.get('categoria')!.value
|
||||
: categoriaOption
|
||||
"
|
||||
*ngFor="let categoriaOption of categoriasSharedCollection; trackBy: trackCategoriaById"
|
||||
>
|
||||
{{ categoriaOption.nombre }}
|
||||
</option>
|
||||
</select>
|
||||
<div
|
||||
*ngIf="
|
||||
surveyEditForm.get('categoria')!.invalid &&
|
||||
(surveyEditForm.get('categoria')!.dirty || surveyEditForm.get('categoria')!.touched)
|
||||
"
|
||||
>
|
||||
<small
|
||||
class="form-text text-danger"
|
||||
*ngIf="surveyEditForm.get('categoria')?.errors?.required"
|
||||
jhiTranslate="entity.validation.required"
|
||||
>
|
||||
This field is required.
|
||||
</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button id="cancelEditSurveyBtn" type="button" class="ds-btn ds-btn--secondary" data-dismiss="modal">
|
||||
<fa-icon icon="arrow-left"></fa-icon> <span jhiTranslate="entity.action.cancel">Cancel</span>
|
||||
</button>
|
||||
<button
|
||||
type="submit"
|
||||
id="save-entity"
|
||||
data-cy="entityCreateSaveButton"
|
||||
class="ds-btn ds-btn--primary"
|
||||
[disabled]="surveyEditForm.invalid || isSaving"
|
||||
>
|
||||
<span jhiTranslate="entity.action.edit">Edit</span>
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -99,6 +99,14 @@ export class EncuestaComponent implements OnInit, AfterViewInit {
|
|||
// usuarioExtra: [],
|
||||
});
|
||||
|
||||
surveyEditForm = this.fb.group({
|
||||
id: [],
|
||||
nombre: [null, [Validators.required, Validators.minLength(1), Validators.maxLength(50)]],
|
||||
descripcion: [],
|
||||
acceso: [null, [Validators.required]],
|
||||
categoria: [null, [Validators.required]],
|
||||
});
|
||||
|
||||
createAnother: Boolean = false;
|
||||
selectedSurveyId: number | null = null;
|
||||
|
||||
|
@ -124,12 +132,16 @@ export class EncuestaComponent implements OnInit, AfterViewInit {
|
|||
loadAll(): void {
|
||||
this.isLoading = true;
|
||||
|
||||
this.usuarioExtraService
|
||||
.retrieveAllPublicUsers()
|
||||
.pipe(finalize(() => this.loadPublicUser()))
|
||||
.subscribe(res => {
|
||||
this.userSharedCollection = res;
|
||||
});
|
||||
if (this.isAdmin()) {
|
||||
this.usuarioExtraService
|
||||
.retrieveAllPublicUsers()
|
||||
.pipe(finalize(() => this.loadPublicUser()))
|
||||
.subscribe(res => {
|
||||
this.userSharedCollection = res;
|
||||
});
|
||||
} else {
|
||||
this.loadEncuestas();
|
||||
}
|
||||
}
|
||||
|
||||
loadPublicUser(): void {
|
||||
|
@ -144,30 +156,7 @@ export class EncuestaComponent implements OnInit, AfterViewInit {
|
|||
loadUserExtras() {
|
||||
this.usuarioExtraService
|
||||
.query()
|
||||
.pipe(
|
||||
finalize(() =>
|
||||
this.encuestaService.query().subscribe(
|
||||
(res: HttpResponse<IEncuesta[]>) => {
|
||||
this.isLoading = false;
|
||||
const tmpEncuestas = res.body ?? [];
|
||||
if (this.isAdmin()) {
|
||||
this.encuestas = tmpEncuestas.filter(e => e.estado !== EstadoEncuesta.DELETED);
|
||||
|
||||
this.encuestas.forEach(e => {
|
||||
e.usuarioExtra = this.usuarioExtrasSharedCollection?.find(pU => pU.id == e.usuarioExtra?.id);
|
||||
});
|
||||
} else {
|
||||
this.encuestas = tmpEncuestas
|
||||
.filter(e => e.usuarioExtra?.id === this.usuarioExtra?.id)
|
||||
.filter(e => e.estado !== EstadoEncuesta.DELETED);
|
||||
}
|
||||
},
|
||||
() => {
|
||||
this.isLoading = false;
|
||||
}
|
||||
)
|
||||
)
|
||||
)
|
||||
.pipe(finalize(() => this.loadEncuestas()))
|
||||
.subscribe(
|
||||
(res: HttpResponse<IUsuarioExtra[]>) => {
|
||||
this.isLoading = false;
|
||||
|
@ -182,6 +171,29 @@ export class EncuestaComponent implements OnInit, AfterViewInit {
|
|||
);
|
||||
}
|
||||
|
||||
loadEncuestas() {
|
||||
this.encuestaService.query().subscribe(
|
||||
(res: HttpResponse<IEncuesta[]>) => {
|
||||
this.isLoading = false;
|
||||
const tmpEncuestas = res.body ?? [];
|
||||
if (this.isAdmin()) {
|
||||
this.encuestas = tmpEncuestas.filter(e => e.estado !== EstadoEncuesta.DELETED);
|
||||
|
||||
this.encuestas.forEach(e => {
|
||||
e.usuarioExtra = this.usuarioExtrasSharedCollection?.find(pU => pU.id == e.usuarioExtra?.id);
|
||||
});
|
||||
} else {
|
||||
this.encuestas = tmpEncuestas
|
||||
.filter(e => e.usuarioExtra?.id === this.usuarioExtra?.id)
|
||||
.filter(e => e.estado !== EstadoEncuesta.DELETED);
|
||||
}
|
||||
},
|
||||
() => {
|
||||
this.isLoading = false;
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
ngOnInit(): void {
|
||||
this.searchString = '';
|
||||
this.accesoEncuesta = '';
|
||||
|
@ -465,18 +477,22 @@ export class EncuestaComponent implements OnInit, AfterViewInit {
|
|||
|
||||
let res = await this.encuestaService.find(this.selectedSurveyId).toPromise();
|
||||
this.selectedSurvey = res.body;
|
||||
// Fill in the edit survey
|
||||
this.fillSurveyEditForm();
|
||||
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-edit--separator')!.style.display = 'block';
|
||||
document.getElementById('contextmenu-preview')!.style.display = 'block';
|
||||
|
||||
if (!this.isPublished) {
|
||||
document.getElementById('contextmenu-edit--separator')!.style.display = 'block';
|
||||
document.getElementById('contextmenu-edit')!.style.display = 'block';
|
||||
document.getElementById('contextmenu-publish')!.style.display = 'block';
|
||||
document.getElementById('contextmenu-duplicate')!.style.display = 'block';
|
||||
} else {
|
||||
document.getElementById('contextmenu-edit')!.style.display = 'none';
|
||||
document.getElementById('contextmenu-publish')!.style.display = 'none';
|
||||
document.getElementById('contextmenu-duplicate')!.style.display = 'none';
|
||||
}
|
||||
|
@ -508,4 +524,28 @@ export class EncuestaComponent implements OnInit, AfterViewInit {
|
|||
const res = await this.encuestaService.duplicate(this.selectedSurveyId!).toPromise();
|
||||
this.loadAll();
|
||||
}
|
||||
|
||||
editSurvey(): void {
|
||||
const survey = { ...this.selectedSurvey };
|
||||
survey.nombre = this.surveyEditForm.get(['nombre'])!.value;
|
||||
survey.descripcion = this.surveyEditForm.get(['descripcion'])!.value;
|
||||
survey.acceso = this.surveyEditForm.get(['acceso'])!.value;
|
||||
survey.categoria = this.surveyEditForm.get(['categoria'])!.value;
|
||||
// Prevent user update by setting to null
|
||||
survey.usuarioExtra!.user = null;
|
||||
|
||||
this.encuestaService.updateSurvey(survey).subscribe(res => {
|
||||
this.loadAll();
|
||||
$('#cancelEditSurveyBtn').click();
|
||||
});
|
||||
}
|
||||
|
||||
fillSurveyEditForm(): void {
|
||||
this.surveyEditForm.patchValue({
|
||||
nombre: this.selectedSurvey!.nombre,
|
||||
descripcion: this.selectedSurvey!.descripcion,
|
||||
acceso: this.selectedSurvey!.acceso,
|
||||
categoria: this.selectedSurvey!.categoria,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
@ -33,6 +33,13 @@ export class EncuestaService {
|
|||
.pipe(map((res: EntityResponseType) => this.convertDateFromServer(res)));
|
||||
}
|
||||
|
||||
updateSurvey(encuesta: IEncuesta): Observable<EntityResponseType> {
|
||||
const copy = this.convertDateFromClient(encuesta);
|
||||
return this.http
|
||||
.put<IEncuesta>(`${this.resourceUrl}/update/${getEncuestaIdentifier(encuesta) as number}`, copy, { observe: 'response' })
|
||||
.pipe(map((res: EntityResponseType) => this.convertDateFromServer(res)));
|
||||
}
|
||||
|
||||
partialUpdate(encuesta: IEncuesta): Observable<EntityResponseType> {
|
||||
const copy = this.convertDateFromClient(encuesta);
|
||||
return this.http
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
<div>
|
||||
<h2 id="page-heading" data-cy="EPreguntaCerradaHeading">
|
||||
<div class="d-flex align-items-center">
|
||||
<p class="ds-title">{{ encuesta!.nombre }}</p>
|
||||
<p class="ds-title ds-contenteditable" contenteditable="true" spellcheck="false" (blur)="updateSurveyName($event)">
|
||||
{{ encuesta!.nombre }}
|
||||
</p>
|
||||
<fa-icon
|
||||
class="ds-info--icon"
|
||||
[icon]="faQuestion"
|
||||
|
@ -10,6 +12,25 @@
|
|||
(click)="loadAplicationParameters()"
|
||||
></fa-icon>
|
||||
<fa-icon class="ds-info--icon" [icon]="faEye" (click)="openPreview()"></fa-icon>
|
||||
<div class="d-flex px-4">
|
||||
<div class="col-12">
|
||||
<div class="row" style="flex-direction: row-reverse">
|
||||
<div class="col-mb-2 iconos-colab">
|
||||
<div class="add-collab">
|
||||
<fa-icon icon="sync" [icon]="faPlus"></fa-icon>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-mb-2 iconos-colab" *ngFor="let colaborador of usuariosColaboradores">
|
||||
<img
|
||||
class="photo-collab"
|
||||
*ngIf="colaborador.usuarioExtra"
|
||||
src="../../../../content/profile_icons/C{{ colaborador.usuarioExtra.iconoPerfil }}.png"
|
||||
alt="{{ colaborador.usuarioExtra.nombre }}"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p class="ds-subtitle">Creada el día {{ encuesta!.fechaCreacion | formatShortDatetime | lowercase }}</p>
|
||||
|
@ -66,7 +87,18 @@
|
|||
class="ds-survey--question"
|
||||
>
|
||||
<div class="ds-survey--titulo">
|
||||
<span class="ds-survey--titulo--name">{{ i + 1 }}. {{ ePregunta.nombre }}</span>
|
||||
<span class="ds-survey--titulo--name">
|
||||
<span>{{ i + 1 }}.</span>
|
||||
<span
|
||||
class="ds-contenteditable"
|
||||
[attr.data-id]="ePregunta.id"
|
||||
[attr.data-tipo]="ePregunta.tipo"
|
||||
contenteditable="true"
|
||||
spellcheck="false"
|
||||
(blur)="updateQuestionName($event)"
|
||||
>{{ ePregunta.nombre }}</span
|
||||
>
|
||||
</span>
|
||||
<fa-icon
|
||||
*ngIf="encuesta!.estado === 'DRAFT'"
|
||||
class="ds-survey--titulo--icon"
|
||||
|
@ -224,7 +256,7 @@
|
|||
[formGroup]="editFormQuestion"
|
||||
>
|
||||
<div class="modal-header">
|
||||
<h1 class="modal-title" id="exampleModalLongTitle2">Crear Pregunta</h1>
|
||||
<h1 class="modal-title" id="exampleModalLongTitle1">Crear Pregunta</h1>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<!-- Survey Create Question Modal -->
|
||||
|
@ -367,7 +399,7 @@
|
|||
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h1 class="modal-title" id="exampleModalLongTitle">Información de Encuesta</h1>
|
||||
<h1 class="modal-title" id="exampleModalLongTitle2">Información de Encuesta</h1>
|
||||
</div>
|
||||
|
||||
<!-- {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { IEPreguntaAbierta } from './../../e-pregunta-abierta/e-pregunta-abierta.model';
|
||||
import { EPreguntaAbierta, IEPreguntaAbierta } from './../../e-pregunta-abierta/e-pregunta-abierta.model';
|
||||
import { EPreguntaCerrada } from './../../e-pregunta-cerrada/e-pregunta-cerrada.model';
|
||||
import { EPreguntaCerradaOpcion, IEPreguntaCerradaOpcion } from './../../e-pregunta-cerrada-opcion/e-pregunta-cerrada-opcion.model';
|
||||
import { EPreguntaAbiertaService } from './../../e-pregunta-abierta/service/e-pregunta-abierta.service';
|
||||
|
@ -34,6 +34,9 @@ import { ParametroAplicacionService } from './../../parametro-aplicacion/service
|
|||
import { IParametroAplicacion } from './../../parametro-aplicacion/parametro-aplicacion.model';
|
||||
import { Router } from '@angular/router';
|
||||
|
||||
import { UsuarioEncuestaService } from 'app/entities/usuario-encuesta/service/usuario-encuesta.service';
|
||||
import { IUsuarioEncuesta } from '../../usuario-encuesta/usuario-encuesta.model';
|
||||
|
||||
@Component({
|
||||
selector: 'jhi-encuesta-update',
|
||||
templateUrl: './encuesta-update.component.html',
|
||||
|
@ -50,6 +53,7 @@ export class EncuestaUpdateComponent implements OnInit, AfterViewChecked {
|
|||
|
||||
categoriasSharedCollection: ICategoria[] = [];
|
||||
usuarioExtrasSharedCollection: IUsuarioExtra[] = [];
|
||||
usuariosColaboradores: IUsuarioEncuesta[] = [];
|
||||
|
||||
// editForm = this.fb.group({
|
||||
// id: [],
|
||||
|
@ -105,6 +109,7 @@ export class EncuestaUpdateComponent implements OnInit, AfterViewChecked {
|
|||
protected ePreguntaCerradaOpcionService: EPreguntaCerradaOpcionService,
|
||||
protected parametroAplicacionService: ParametroAplicacionService,
|
||||
protected ePreguntaAbiertaService: EPreguntaAbiertaService,
|
||||
protected usuarioEncuestaService: UsuarioEncuestaService,
|
||||
protected router: Router
|
||||
) {}
|
||||
|
||||
|
@ -115,7 +120,6 @@ export class EncuestaUpdateComponent implements OnInit, AfterViewChecked {
|
|||
(res: any) => {
|
||||
this.isLoading = false;
|
||||
this.ePreguntas = res.body ?? [];
|
||||
console.log(this.ePreguntas);
|
||||
},
|
||||
() => {
|
||||
this.isLoading = false;
|
||||
|
@ -131,12 +135,21 @@ export class EncuestaUpdateComponent implements OnInit, AfterViewChecked {
|
|||
this.isLoading = false;
|
||||
}
|
||||
);
|
||||
|
||||
this.usuarioEncuestaService.findCollaborators(this.encuesta?.id!).subscribe(
|
||||
(res: any) => {
|
||||
this.isLoading = false;
|
||||
this.usuariosColaboradores = res.body ?? [];
|
||||
},
|
||||
() => {
|
||||
this.isLoading = false;
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
async loadAplicationParameters(): Promise<void> {
|
||||
const params = await this.parametroAplicacionService.find(1).toPromise();
|
||||
this.parametrosAplicacion = params.body;
|
||||
//console.log(this.parametrosAplicacion);
|
||||
}
|
||||
|
||||
ngOnInit(): void {
|
||||
|
@ -160,7 +173,7 @@ export class EncuestaUpdateComponent implements OnInit, AfterViewChecked {
|
|||
}
|
||||
|
||||
ngAfterViewChecked(): void {
|
||||
this.initListeners();
|
||||
// this.initListeners();
|
||||
}
|
||||
|
||||
trackId(index: number, item: IEPreguntaCerrada): number {
|
||||
|
@ -178,18 +191,18 @@ export class EncuestaUpdateComponent implements OnInit, AfterViewChecked {
|
|||
});
|
||||
}
|
||||
|
||||
initListeners(): void {
|
||||
const checkboxes = document.getElementsByClassName('ds-survey--checkbox');
|
||||
for (let i = 0; i < checkboxes.length; i++) {
|
||||
checkboxes[i].addEventListener('click', e => {
|
||||
if ((e.target as HTMLInputElement).checked) {
|
||||
(e.target as HTMLElement).offsetParent!.classList.add('ds-survey--closed-option--active');
|
||||
} else {
|
||||
(e.target as HTMLElement).offsetParent!.classList.remove('ds-survey--closed-option--active');
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
// initListeners(): void {
|
||||
// const checkboxes = document.getElementsByClassName('ds-survey--checkbox');
|
||||
// for (let i = 0; i < checkboxes.length; i++) {
|
||||
// checkboxes[i].addEventListener('click', e => {
|
||||
// if ((e.target as HTMLInputElement).checked) {
|
||||
// (e.target as HTMLElement).offsetParent!.classList.add('ds-survey--closed-option--active');
|
||||
// } else {
|
||||
// (e.target as HTMLElement).offsetParent!.classList.remove('ds-survey--closed-option--active');
|
||||
// }
|
||||
// });
|
||||
// }
|
||||
// }
|
||||
|
||||
previousState(): void {
|
||||
window.history.back();
|
||||
|
@ -332,7 +345,6 @@ export class EncuestaUpdateComponent implements OnInit, AfterViewChecked {
|
|||
|
||||
createQuestion(): void {
|
||||
const surveyId = this.encuesta?.id;
|
||||
console.log(surveyId);
|
||||
}
|
||||
|
||||
protected createFromFormClosedQuestion(): IEPreguntaCerrada {
|
||||
|
@ -416,6 +428,57 @@ export class EncuestaUpdateComponent implements OnInit, AfterViewChecked {
|
|||
this.isSavingQuestion = false;
|
||||
}
|
||||
|
||||
updateSurveyName(event: any) {
|
||||
const updatedSurveyName = event.target.innerText;
|
||||
if (updatedSurveyName !== this.encuesta?.nombre) {
|
||||
const survey = { ...this.encuesta };
|
||||
survey.nombre = updatedSurveyName;
|
||||
// Prevent user update by setting to null
|
||||
survey.usuarioExtra!.user = null;
|
||||
|
||||
this.encuestaService.updateSurvey(survey).subscribe(res => {});
|
||||
}
|
||||
}
|
||||
|
||||
updateQuestionName(event: any): void {
|
||||
const questionType = event.target.dataset.tipo;
|
||||
const questionId = event.target.dataset.id;
|
||||
const questionName = event.target.innerText;
|
||||
if (questionType) {
|
||||
// Closed question
|
||||
this.ePreguntaCerradaService.find(questionId).subscribe(res => {
|
||||
const ePreguntaCerrada: EPreguntaCerrada | null = res.body ?? null;
|
||||
const updatedEPreguntaCerrada = { ...ePreguntaCerrada };
|
||||
if (questionName !== ePreguntaCerrada?.nombre && ePreguntaCerrada !== null) {
|
||||
updatedEPreguntaCerrada.nombre = questionName;
|
||||
this.ePreguntaCerradaService.update(updatedEPreguntaCerrada).subscribe(updatedQuestion => {
|
||||
console.log(updatedQuestion);
|
||||
});
|
||||
}
|
||||
});
|
||||
} else {
|
||||
// Open question
|
||||
// Closed question
|
||||
this.ePreguntaAbiertaService.find(questionId).subscribe(res => {
|
||||
const ePreguntaAbierta: EPreguntaAbierta | null = res.body ?? null;
|
||||
const updatedEPreguntaAbierta = { ...ePreguntaAbierta };
|
||||
if (questionName !== ePreguntaAbierta?.nombre && ePreguntaAbierta !== null) {
|
||||
updatedEPreguntaAbierta.nombre = questionName;
|
||||
this.ePreguntaAbiertaService.update(updatedEPreguntaAbierta).subscribe(updatedQuestion => {
|
||||
console.log(updatedQuestion);
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
// const questionId = event.target.dataset.id;
|
||||
// const survey = { ...this.encuesta };
|
||||
// survey.nombre = updatedQuestionName;
|
||||
// // Prevent user update by setting to null
|
||||
// survey.usuarioExtra!.user = null;
|
||||
|
||||
// this.encuestaService.updateSurvey(survey).subscribe(res => {});
|
||||
}
|
||||
|
||||
// previousState(): void {
|
||||
// window.history.back();
|
||||
// }
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<span jhiTranslate="dataSurveyApp.plantilla.home.title">Plantillas</span>
|
||||
|
||||
<div class="d-flex justify-content-end">
|
||||
<button class="btn btn-info mr-2" (click)="loadAll()" [disabled]="isLoading">
|
||||
<button class="ds-btn btn-info mr-2" (click)="loadAll()" [disabled]="isLoading">
|
||||
<fa-icon icon="sync" [spin]="isLoading"></fa-icon>
|
||||
<span jhiTranslate="dataSurveyApp.plantilla.home.refreshListLabel">Refresh List</span>
|
||||
</button>
|
||||
|
@ -11,11 +11,11 @@
|
|||
<button
|
||||
id="jh-create-entity"
|
||||
data-cy="entityCreateButton"
|
||||
class="btn btn-primary jh-create-entity create-plantilla"
|
||||
class="ds-btn ds-btn--primary jh-create-entity create-plantilla"
|
||||
[routerLink]="['/plantilla/new']"
|
||||
>
|
||||
<fa-icon icon="plus"></fa-icon>
|
||||
<span jhiTranslate="dataSurveyApp.plantilla.home.createLabel"> Create a new Plantilla </span>
|
||||
<span jhiTranslate="dataSurveyApp.plantilla.home.createLabel"> Create a new Template </span>
|
||||
</button>
|
||||
</div>
|
||||
</h2>
|
||||
|
@ -25,14 +25,13 @@
|
|||
<jhi-alert></jhi-alert>
|
||||
|
||||
<div class="alert alert-warning" id="no-result" *ngIf="plantillas?.length === 0">
|
||||
<span jhiTranslate="dataSurveyApp.plantilla.home.notFound">No plantillas found</span>
|
||||
<span jhiTranslate="dataSurveyApp.plantilla.home.notFound">No templates found</span>
|
||||
</div>
|
||||
|
||||
<div class="table-responsive" id="entities" *ngIf="plantillas && plantillas.length > 0">
|
||||
<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.plantilla.nombre">Nombre</span></th>
|
||||
<th scope="col"><span jhiTranslate="dataSurveyApp.plantilla.descripcion">Descripcion</span></th>
|
||||
<th scope="col"><span jhiTranslate="dataSurveyApp.plantilla.fechaCreacion">Fecha Creacion</span></th>
|
||||
|
@ -45,9 +44,6 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
<tr *ngFor="let plantilla of plantillas; trackBy: trackId" data-cy="entityTable">
|
||||
<td>
|
||||
<a [routerLink]="['/plantilla', plantilla.id, 'view']">{{ plantilla.id }}</a>
|
||||
</td>
|
||||
<td>{{ plantilla.nombre }}</td>
|
||||
<td>{{ plantilla.descripcion }}</td>
|
||||
<td>{{ plantilla.fechaCreacion | formatMediumDatetime }}</td>
|
||||
|
@ -64,7 +60,7 @@
|
|||
<button
|
||||
type="submit"
|
||||
[routerLink]="['/plantilla', plantilla.id, 'view']"
|
||||
class="btn btn-info btn-sm"
|
||||
class="ds-btn btn-info btn-sm"
|
||||
data-cy="entityDetailsButton"
|
||||
>
|
||||
<fa-icon icon="eye"></fa-icon>
|
||||
|
@ -74,14 +70,14 @@
|
|||
<button
|
||||
type="submit"
|
||||
[routerLink]="['/plantilla', plantilla.id, 'edit']"
|
||||
class="btn btn-primary btn-sm"
|
||||
class="ds-btn ds-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(plantilla)" class="btn btn-danger btn-sm" data-cy="entityDeleteButton">
|
||||
<button type="submit" (click)="delete(plantilla)" class="ds-btn ds-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>
|
||||
|
|
|
@ -34,7 +34,7 @@ export class PlantillaComponent implements OnInit {
|
|||
this.loadAll();
|
||||
}
|
||||
|
||||
trackId(index: number, item: IPlantilla): number {
|
||||
trackId(_index: number, item: IPlantilla): number {
|
||||
return item.id!;
|
||||
}
|
||||
|
||||
|
|
|
@ -49,6 +49,12 @@ export class UsuarioEncuestaService {
|
|||
.pipe(map((res: EntityResponseType) => this.convertDateFromServer(res)));
|
||||
}
|
||||
|
||||
findCollaborators(id: number): Observable<EntityResponseType> {
|
||||
return this.http
|
||||
.get<any>(`${this.resourceUrl}/encuesta/${id}`, { observe: 'response' })
|
||||
.pipe(map((res: EntityResponseType) => this.convertDateFromServer(res)));
|
||||
}
|
||||
|
||||
query(req?: any): Observable<EntityArrayResponseType> {
|
||||
const options = createRequestOption(req);
|
||||
return this.http
|
||||
|
|
|
@ -30,12 +30,12 @@ export const ADMIN_ROUTES: RouteInfo[] = [
|
|||
type: 'link',
|
||||
icontype: 'nc-icon nc-paper',
|
||||
},
|
||||
// {
|
||||
// path: '/plantilla',
|
||||
// title: 'Plantillas',
|
||||
// type: 'link',
|
||||
// icontype: 'nc-icon nc-album-2',
|
||||
// },
|
||||
{
|
||||
path: '/plantilla',
|
||||
title: 'Plantillas',
|
||||
type: 'link',
|
||||
icontype: 'nc-icon nc-album-2',
|
||||
},
|
||||
{
|
||||
path: '/categoria',
|
||||
title: 'Categorías',
|
||||
|
|
|
@ -11,6 +11,21 @@
|
|||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.ds-contenteditable {
|
||||
border: 2.25px solid transparent;
|
||||
border-radius: 3px;
|
||||
outline: 0;
|
||||
text-transform: none;
|
||||
|
||||
&:hover {
|
||||
border: 2.25px solid #e5e5e5;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
border: 2.25px solid #2962ff;
|
||||
}
|
||||
}
|
||||
|
||||
.ds-title--small {
|
||||
color: #313747;
|
||||
font-weight: 900;
|
||||
|
|
|
@ -162,3 +162,38 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.iconos-colab {
|
||||
margin-right: -8px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.photo-collab {
|
||||
width: 40px;
|
||||
border-radius: 50px;
|
||||
border: 2px solid #fff;
|
||||
|
||||
&:hover {
|
||||
margin-top: -4px;
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
.add-collab {
|
||||
background: #c3c2c2;
|
||||
text-align: center;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
color: #fff;
|
||||
padding: 4pt 7pt;
|
||||
border-radius: 50px;
|
||||
border: 2px solid #fff;
|
||||
position: relative;
|
||||
top: 0;
|
||||
transition: all 0.1s ease-in-out;
|
||||
&:hover {
|
||||
/*margin-top: -4px;**/
|
||||
top: -5px;
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,13 +4,13 @@
|
|||
"home": {
|
||||
"title": "Plantillas",
|
||||
"refreshListLabel": "Refrescar lista",
|
||||
"createLabel": "Crear nuevo Plantilla",
|
||||
"createOrEditLabel": "Crear o editar Plantilla",
|
||||
"notFound": "Ningún Plantillas encontrado"
|
||||
"createLabel": "Crear nueva plantilla",
|
||||
"createOrEditLabel": "Crear o editar plantilla",
|
||||
"notFound": "No se encontró ninguna plantilla"
|
||||
},
|
||||
"created": "Un nuevo Plantilla ha sido creado con el identificador {{ param }}",
|
||||
"updated": "Un Plantilla ha sido actualizado con el identificador {{ param }}",
|
||||
"deleted": "Un Plantilla ha sido eliminado con el identificador {{ param }}",
|
||||
"created": "Una nueva plantilla ha sido creada con el identificador {{ param }}",
|
||||
"updated": "Una plantilla ha sido actualizada con el identificador {{ param }}",
|
||||
"deleted": "Una plantilla ha sido eliminada con el identificador {{ param }}",
|
||||
"delete": {
|
||||
"question": "¿Seguro que quiere eliminar Plantilla {{ id }}?"
|
||||
},
|
||||
|
@ -19,9 +19,9 @@
|
|||
},
|
||||
"id": "ID",
|
||||
"nombre": "Nombre",
|
||||
"descripcion": "Descripcion",
|
||||
"fechaCreacion": "Fecha Creacion",
|
||||
"fechaPublicacionTienda": "Fecha Publicacion Tienda",
|
||||
"descripcion": "Descripción",
|
||||
"fechaCreacion": "Fecha Creación",
|
||||
"fechaPublicacionTienda": "Fecha Publicación Tienda",
|
||||
"estado": "Estado",
|
||||
"precio": "Precio",
|
||||
"pPreguntaCerrada": "P Pregunta Cerrada",
|
||||
|
|
Loading…
Reference in New Issue