Merge branch 'dev' into feature/US-30
This commit is contained in:
commit
f8c15583ea
|
@ -11,7 +11,7 @@
|
||||||
<button type="button" class="ds-btn ds-btn--secondary" (click)="previousState()">
|
<button type="button" class="ds-btn ds-btn--secondary" (click)="previousState()">
|
||||||
<fa-icon icon="arrow-left"></fa-icon> <span jhiTranslate="entity.action.back">Back</span>
|
<fa-icon icon="arrow-left"></fa-icon> <span jhiTranslate="entity.action.back">Back</span>
|
||||||
</button>
|
</button>
|
||||||
<ng-container *ngIf="encuesta!.estado === 'DRAFT'">
|
<ng-container *ngIf="encuesta!.estado === 'DRAFT' && (isAutor() || isEscritor())">
|
||||||
<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>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -14,7 +14,7 @@ import { IEncuesta, Encuesta } from '../encuesta.model';
|
||||||
import { EncuestaService } from '../service/encuesta.service';
|
import { EncuestaService } from '../service/encuesta.service';
|
||||||
import { ICategoria } from 'app/entities/categoria/categoria.model';
|
import { ICategoria } from 'app/entities/categoria/categoria.model';
|
||||||
import { CategoriaService } from 'app/entities/categoria/service/categoria.service';
|
import { CategoriaService } from 'app/entities/categoria/service/categoria.service';
|
||||||
import { IUsuarioExtra } from 'app/entities/usuario-extra/usuario-extra.model';
|
import { IUsuarioExtra, UsuarioExtra } from 'app/entities/usuario-extra/usuario-extra.model';
|
||||||
import { UsuarioExtraService } from 'app/entities/usuario-extra/service/usuario-extra.service';
|
import { UsuarioExtraService } from 'app/entities/usuario-extra/service/usuario-extra.service';
|
||||||
|
|
||||||
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
||||||
|
@ -30,6 +30,10 @@ import { PreguntaCerradaTipo } from 'app/entities/enumerations/pregunta-cerrada-
|
||||||
|
|
||||||
import { faTimes, faPlus, faStar, faQuestion } from '@fortawesome/free-solid-svg-icons';
|
import { faTimes, faPlus, faStar, faQuestion } from '@fortawesome/free-solid-svg-icons';
|
||||||
import { EncuestaPublishDialogComponent } from '../encuesta-publish-dialog/encuesta-publish-dialog.component';
|
import { EncuestaPublishDialogComponent } from '../encuesta-publish-dialog/encuesta-publish-dialog.component';
|
||||||
|
import { UsuarioEncuestaService } from 'app/entities/usuario-encuesta/service/usuario-encuesta.service';
|
||||||
|
import { Account } from '../../../core/auth/account.model';
|
||||||
|
import { AccountService } from 'app/core/auth/account.service';
|
||||||
|
import { IUsuarioEncuesta } from '../../usuario-encuesta/usuario-encuesta.model';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'jhi-encuesta-detail',
|
selector: 'jhi-encuesta-detail',
|
||||||
|
@ -47,6 +51,8 @@ export class EncuestaDetailComponent implements OnInit {
|
||||||
successPublished = false;
|
successPublished = false;
|
||||||
ePreguntas?: any[];
|
ePreguntas?: any[];
|
||||||
ePreguntasOpciones?: any[];
|
ePreguntasOpciones?: any[];
|
||||||
|
usuarioExtra: UsuarioExtra | null = null;
|
||||||
|
usuariosColaboradores: IUsuarioEncuesta[] = [];
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
protected activatedRoute: ActivatedRoute,
|
protected activatedRoute: ActivatedRoute,
|
||||||
|
@ -57,7 +63,9 @@ export class EncuestaDetailComponent implements OnInit {
|
||||||
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 accountService: AccountService,
|
||||||
|
protected usuarioEncuestaService: UsuarioEncuestaService
|
||||||
) {}
|
) {}
|
||||||
|
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {
|
||||||
|
@ -69,6 +77,15 @@ export class EncuestaDetailComponent implements OnInit {
|
||||||
this.previousState();
|
this.previousState();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Get jhi_user and usuario_extra information
|
||||||
|
this.accountService.getAuthenticationState().subscribe(account => {
|
||||||
|
if (account !== null) {
|
||||||
|
this.usuarioExtraService.find(account.id).subscribe(usuarioExtra => {
|
||||||
|
this.usuarioExtra = usuarioExtra.body;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
ngAfterViewChecked(): void {
|
ngAfterViewChecked(): void {
|
||||||
|
@ -145,6 +162,16 @@ export class EncuestaDetailComponent implements OnInit {
|
||||||
this.isLoading = false;
|
this.isLoading = false;
|
||||||
}
|
}
|
||||||
);*/
|
);*/
|
||||||
|
|
||||||
|
this.usuarioEncuestaService.findCollaborators(this.encuesta?.id!).subscribe(
|
||||||
|
(res: any) => {
|
||||||
|
this.isLoading = false;
|
||||||
|
this.usuariosColaboradores = res.body ?? [];
|
||||||
|
},
|
||||||
|
() => {
|
||||||
|
this.isLoading = false;
|
||||||
|
}
|
||||||
|
);
|
||||||
}
|
}
|
||||||
publishSurvey(): void {
|
publishSurvey(): void {
|
||||||
const modalRef = this.modalService.open(EncuestaPublishDialogComponent, { size: 'lg', backdrop: 'static' });
|
const modalRef = this.modalService.open(EncuestaPublishDialogComponent, { size: 'lg', backdrop: 'static' });
|
||||||
|
@ -161,4 +188,20 @@ export class EncuestaDetailComponent implements OnInit {
|
||||||
previousState(): void {
|
previousState(): void {
|
||||||
window.history.back();
|
window.history.back();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
isAutor() {
|
||||||
|
return this.usuarioExtra?.id === this.encuesta?.usuarioExtra?.id;
|
||||||
|
}
|
||||||
|
|
||||||
|
isEscritor() {
|
||||||
|
let escritor = false;
|
||||||
|
this.usuariosColaboradores.forEach(c => {
|
||||||
|
if (this.usuarioExtra?.id === c.usuarioExtra?.id) {
|
||||||
|
if (c.rol === 'WRITE') {
|
||||||
|
escritor = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return escritor;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
<div class="col-12 ds-list-collabs">
|
<div class="col-12 ds-list-collabs">
|
||||||
<div class="row" style="flex-direction: row-reverse">
|
<div class="row" style="flex-direction: row-reverse">
|
||||||
<div class="col-mb-2 iconos-colab">
|
<div class="col-mb-2 iconos-colab">
|
||||||
<div class="add-collab">
|
<div class="add-collab" *ngIf="isAutor()">
|
||||||
<fa-icon icon="sync" [icon]="faPlus"></fa-icon>
|
<fa-icon icon="sync" [icon]="faPlus"></fa-icon>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -61,7 +61,7 @@
|
||||||
[disabled]="isLoading"
|
[disabled]="isLoading"
|
||||||
data-toggle="modal"
|
data-toggle="modal"
|
||||||
data-target="#crearPregunta"
|
data-target="#crearPregunta"
|
||||||
*ngIf="encuesta!.estado !== 'FINISHED'"
|
*ngIf="encuesta!.estado !== 'FINISHED' && (isAutor() || isEscritor())"
|
||||||
>
|
>
|
||||||
<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>
|
||||||
|
@ -112,7 +112,7 @@
|
||||||
>
|
>
|
||||||
</span>
|
</span>
|
||||||
<fa-icon
|
<fa-icon
|
||||||
*ngIf="encuesta!.estado === 'DRAFT'"
|
*ngIf="encuesta!.estado === 'DRAFT' && (isAutor() || isEscritor())"
|
||||||
class="ds-survey--titulo--icon"
|
class="ds-survey--titulo--icon"
|
||||||
[icon]="faTimes"
|
[icon]="faTimes"
|
||||||
(click)="deleteQuestion($event)"
|
(click)="deleteQuestion($event)"
|
||||||
|
@ -144,7 +144,7 @@
|
||||||
<!-- <input class="ds-survey--checkbox" id="{{ ePregunta.id }}-{{ ePreguntaOpcionFinal.id }}" type="checkbox" disabled /> -->
|
<!-- <input class="ds-survey--checkbox" id="{{ ePregunta.id }}-{{ ePreguntaOpcionFinal.id }}" type="checkbox" disabled /> -->
|
||||||
<label for="{{ ePregunta.id }}-{{ ePreguntaOpcionFinal.id }}">{{ ePreguntaOpcionFinal.nombre }}</label>
|
<label for="{{ ePregunta.id }}-{{ ePreguntaOpcionFinal.id }}">{{ ePreguntaOpcionFinal.nombre }}</label>
|
||||||
<fa-icon
|
<fa-icon
|
||||||
*ngIf="encuesta!.estado === 'DRAFT'"
|
*ngIf="encuesta!.estado === 'DRAFT' && (isAutor() || isEscritor())"
|
||||||
class="ds-survey--titulo--icon ds-survey--titulo--icon--small"
|
class="ds-survey--titulo--icon ds-survey--titulo--icon--small"
|
||||||
[icon]="faTimes"
|
[icon]="faTimes"
|
||||||
(click)="deleteOption($event)"
|
(click)="deleteOption($event)"
|
||||||
|
@ -160,6 +160,7 @@
|
||||||
data-toggle="modal"
|
data-toggle="modal"
|
||||||
data-target="#crearOpcion"
|
data-target="#crearOpcion"
|
||||||
[attr.data-id]="ePregunta.id"
|
[attr.data-id]="ePregunta.id"
|
||||||
|
*ngIf="isAutor() || isEscritor()"
|
||||||
>
|
>
|
||||||
<fa-icon
|
<fa-icon
|
||||||
class="ds-survey--add-option--icon"
|
class="ds-survey--add-option--icon"
|
||||||
|
|
|
@ -35,7 +35,7 @@ import { IParametroAplicacion } from './../../parametro-aplicacion/parametro-apl
|
||||||
import { Router } from '@angular/router';
|
import { Router } from '@angular/router';
|
||||||
|
|
||||||
import { UsuarioEncuestaService } from 'app/entities/usuario-encuesta/service/usuario-encuesta.service';
|
import { UsuarioEncuestaService } from 'app/entities/usuario-encuesta/service/usuario-encuesta.service';
|
||||||
import { IUsuarioEncuesta } from '../../usuario-encuesta/usuario-encuesta.model';
|
import { IUsuarioEncuesta, UsuarioEncuesta } from '../../usuario-encuesta/usuario-encuesta.model';
|
||||||
import { RolColaborador } from '../../enumerations/rol-colaborador.model';
|
import { RolColaborador } from '../../enumerations/rol-colaborador.model';
|
||||||
import { Account } from '../../../core/auth/account.model';
|
import { Account } from '../../../core/auth/account.model';
|
||||||
import { AccountService } from 'app/core/auth/account.service';
|
import { AccountService } from 'app/core/auth/account.service';
|
||||||
|
@ -684,7 +684,19 @@ export class EncuestaUpdateComponent implements OnInit, AfterViewChecked {
|
||||||
}
|
}
|
||||||
|
|
||||||
isAutor() {
|
isAutor() {
|
||||||
return this.usuarioExtra?.id == this.encuesta?.usuarioExtra?.id;
|
return this.usuarioExtra?.id === this.encuesta?.usuarioExtra?.id;
|
||||||
|
}
|
||||||
|
|
||||||
|
isEscritor() {
|
||||||
|
let escritor = false;
|
||||||
|
this.usuariosColaboradores.forEach(c => {
|
||||||
|
if (this.usuarioExtra?.id === c.usuarioExtra?.id) {
|
||||||
|
if (c.rol === 'WRITE') {
|
||||||
|
escritor = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return escritor;
|
||||||
}
|
}
|
||||||
|
|
||||||
finalizar(): void {
|
finalizar(): void {
|
||||||
|
|
|
@ -42,7 +42,7 @@ import { RouterModule } from '@angular/router';
|
||||||
import('./e-pregunta-cerrada-opcion/e-pregunta-cerrada-opcion.module').then(m => m.EPreguntaCerradaOpcionModule),
|
import('./e-pregunta-cerrada-opcion/e-pregunta-cerrada-opcion.module').then(m => m.EPreguntaCerradaOpcionModule),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'usuario-encuesta',
|
path: 'colaboraciones',
|
||||||
data: { pageTitle: 'dataSurveyApp.usuarioEncuesta.home.title' },
|
data: { pageTitle: 'dataSurveyApp.usuarioEncuesta.home.title' },
|
||||||
loadChildren: () => import('./usuario-encuesta/usuario-encuesta.module').then(m => m.UsuarioEncuestaModule),
|
loadChildren: () => import('./usuario-encuesta/usuario-encuesta.module').then(m => m.UsuarioEncuestaModule),
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,16 +1,10 @@
|
||||||
<form *ngIf="usuarioEncuesta" name="deleteForm" (ngSubmit)="confirmDelete(usuarioEncuesta.id!)">
|
<form class="ds-form" *ngIf="usuarioEncuesta" name="deleteForm" (ngSubmit)="confirmDelete(usuarioEncuesta.id!)">
|
||||||
<div class="modal-header">
|
|
||||||
<h4 class="modal-title" data-cy="usuarioEncuestaDeleteDialogHeading" jhiTranslate="entity.delete.title">Confirm delete operation</h4>
|
|
||||||
|
|
||||||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true" (click)="cancel()">×</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<jhi-alert-error></jhi-alert-error>
|
<p class="ds-title--small">Salir de colaboración</p>
|
||||||
|
|
||||||
<p
|
<p
|
||||||
|
class="ds-subtitle"
|
||||||
id="jhi-delete-usuarioEncuesta-heading"
|
id="jhi-delete-usuarioEncuesta-heading"
|
||||||
jhiTranslate="dataSurveyApp.usuarioEncuesta.delete.question"
|
jhiTranslate="dataSurveyApp.usuarioEncuesta.delete.questionGetOut"
|
||||||
[translateValues]="{ id: usuarioEncuesta.id }"
|
[translateValues]="{ id: usuarioEncuesta.id }"
|
||||||
>
|
>
|
||||||
Are you sure you want to delete this Usuario Encuesta?
|
Are you sure you want to delete this Usuario Encuesta?
|
||||||
|
@ -18,12 +12,12 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<button type="button" class="btn btn-secondary" data-dismiss="modal" (click)="cancel()">
|
<button type="button" class="ds-btn ds-btn--secondary" data-dismiss="modal" (click)="cancel()">
|
||||||
<fa-icon icon="ban"></fa-icon> <span jhiTranslate="entity.action.cancel">Cancel</span>
|
<fa-icon icon="arrow-left"></fa-icon> <span jhiTranslate="entity.action.cancel">Cancel</span>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<button id="jhi-confirm-delete-usuarioEncuesta" data-cy="entityConfirmDeleteButton" type="submit" class="btn btn-danger">
|
<button id="jhi-confirm-delete-usuarioEncuesta" data-cy="entityConfirmDeleteButton" type="submit" class="btn btn-danger">
|
||||||
<fa-icon icon="times"></fa-icon> <span jhiTranslate="entity.action.delete">Delete</span>
|
<fa-icon icon="sign-out-alt"></fa-icon> <span jhiTranslate="dataSurveyApp.usuarioEncuesta.delete.getOut">Get Out</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
|
@ -1,29 +1,38 @@
|
||||||
<div>
|
<div>
|
||||||
<h2 id="page-heading" data-cy="UsuarioEncuestaHeading">
|
<h2 id="page-heading" data-cy="UsuarioEncuestaHeading">
|
||||||
<span jhiTranslate="dataSurveyApp.usuarioEncuesta.home.title">Usuario Encuestas</span>
|
<span class="ds-title" jhiTranslate="dataSurveyApp.usuarioEncuesta.home.title">Colaboraciones </span>
|
||||||
|
<p class="ds-subtitle">Gestione las colaboraciones en encuestas a las que se encuentra agregado</p>
|
||||||
|
|
||||||
<div class="d-flex justify-content-end">
|
<div class="d-flex justify-content-end">
|
||||||
<button class="btn btn-info mr-2" (click)="loadAll()" [disabled]="isLoading">
|
<button class="ds-btn ds-btn--secondary mr-2" (click)="loadAll()" [disabled]="isLoading">
|
||||||
<fa-icon icon="sync" [spin]="isLoading"></fa-icon>
|
<fa-icon icon="sync" [spin]="isLoading"></fa-icon>
|
||||||
<span jhiTranslate="dataSurveyApp.usuarioEncuesta.home.refreshListLabel">Refresh List</span>
|
<span jhiTranslate="dataSurveyApp.usuarioEncuesta.home.refreshListLabel">Refresh List</span>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<button
|
|
||||||
id="jh-create-entity"
|
|
||||||
data-cy="entityCreateButton"
|
|
||||||
class="btn btn-primary jh-create-entity create-usuario-encuesta"
|
|
||||||
[routerLink]="['/usuario-encuesta/new']"
|
|
||||||
>
|
|
||||||
<fa-icon icon="plus"></fa-icon>
|
|
||||||
<span jhiTranslate="dataSurveyApp.usuarioEncuesta.home.createLabel"> Create a new Usuario Encuesta </span>
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
<jhi-alert-error></jhi-alert-error>
|
<jhi-alert-error></jhi-alert-error>
|
||||||
|
|
||||||
<jhi-alert></jhi-alert>
|
<jhi-alert></jhi-alert>
|
||||||
|
<form class="ds-form">
|
||||||
|
<div class="input-group">
|
||||||
|
<div class="ds-filter">
|
||||||
|
<div class="input-group-addon"><i class="glyphicon glyphicon-search"></i></div>
|
||||||
|
<select name="searchRol" id="searchRol" [(ngModel)]="searchRol" style="width: 200px">
|
||||||
|
<option value="" selected="selected" disabled="disabled">Filtrar por rol</option>
|
||||||
|
<option value="">Todos los roles</option>
|
||||||
|
<option value="Read">Lector</option>
|
||||||
|
<option value="Write">Escritor</option>
|
||||||
|
</select>
|
||||||
|
<select name="searchRol" id="searchEstado" [(ngModel)]="searchEstado" style="width: 200px">
|
||||||
|
<option value="" selected="selected" disabled="disabled">Filtrar por estado</option>
|
||||||
|
<option value="">Todos los estados</option>
|
||||||
|
<option value="ACTIVE">Activos</option>
|
||||||
|
<option value="PENDING">Pendientes</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
<div class="alert alert-warning" id="no-result" *ngIf="usuarioEncuestas?.length === 0">
|
<div class="alert alert-warning" id="no-result" *ngIf="usuarioEncuestas?.length === 0">
|
||||||
<span jhiTranslate="dataSurveyApp.usuarioEncuesta.home.notFound">No usuarioEncuestas found</span>
|
<span jhiTranslate="dataSurveyApp.usuarioEncuesta.home.notFound">No usuarioEncuestas found</span>
|
||||||
</div>
|
</div>
|
||||||
|
@ -32,58 +41,39 @@
|
||||||
<table class="table table-striped" aria-describedby="page-heading">
|
<table class="table table-striped" aria-describedby="page-heading">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="col"><span jhiTranslate="global.field.id">ID</span></th>
|
|
||||||
<th scope="col"><span jhiTranslate="dataSurveyApp.usuarioEncuesta.rol">Rol</span></th>
|
<th scope="col"><span jhiTranslate="dataSurveyApp.usuarioEncuesta.rol">Rol</span></th>
|
||||||
<th scope="col"><span jhiTranslate="dataSurveyApp.usuarioEncuesta.estado">Estado</span></th>
|
<th scope="col"><span jhiTranslate="dataSurveyApp.usuarioEncuesta.estado">Estado</span></th>
|
||||||
<th scope="col"><span jhiTranslate="dataSurveyApp.usuarioEncuesta.fechaAgregado">Fecha Agregado</span></th>
|
<th scope="col"><span jhiTranslate="dataSurveyApp.usuarioEncuesta.fechaAgregado">Fecha Agregado</span></th>
|
||||||
<th scope="col"><span jhiTranslate="dataSurveyApp.usuarioEncuesta.usuarioExtra">Usuario Extra</span></th>
|
<th scope="col"><span>Encuesta</span></th>
|
||||||
<th scope="col"><span jhiTranslate="dataSurveyApp.usuarioEncuesta.encuesta">Encuesta</span></th>
|
|
||||||
<th scope="col"></th>
|
<th scope="col"></th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr *ngFor="let usuarioEncuesta of usuarioEncuestas; trackBy: trackId" data-cy="entityTable">
|
<tr
|
||||||
<td>
|
*ngFor="let usuarioEncuesta of usuarioEncuestas | filter: 'rol':searchRol | filter: 'estado':searchEstado; trackBy: trackId"
|
||||||
<a [routerLink]="['/usuario-encuesta', usuarioEncuesta.id, 'view']">{{ usuarioEncuesta.id }}</a>
|
data-cy="entityTable"
|
||||||
</td>
|
>
|
||||||
<td jhiTranslate="{{ 'dataSurveyApp.RolColaborador.' + usuarioEncuesta.rol }}">{{ usuarioEncuesta.rol }}</td>
|
<td jhiTranslate="{{ 'dataSurveyApp.RolColaborador.' + usuarioEncuesta.rol }}">{{ usuarioEncuesta.rol }}</td>
|
||||||
<td jhiTranslate="{{ 'dataSurveyApp.EstadoColaborador.' + usuarioEncuesta.estado }}">{{ usuarioEncuesta.estado }}</td>
|
<td jhiTranslate="{{ 'dataSurveyApp.EstadoColaborador.' + usuarioEncuesta.estado }}">{{ usuarioEncuesta.estado }}</td>
|
||||||
<td>{{ usuarioEncuesta.fechaAgregado | formatMediumDatetime }}</td>
|
<td>{{ usuarioEncuesta.fechaAgregado | formatShortDatetime | titlecase }}</td>
|
||||||
<td>
|
|
||||||
<div *ngIf="usuarioEncuesta.usuarioExtra">
|
|
||||||
<a [routerLink]="['/usuario-extra', usuarioEncuesta.usuarioExtra?.id, 'view']">{{ usuarioEncuesta.usuarioExtra?.id }}</a>
|
|
||||||
</div>
|
|
||||||
</td>
|
|
||||||
<td>
|
<td>
|
||||||
<div *ngIf="usuarioEncuesta.encuesta">
|
<div *ngIf="usuarioEncuesta.encuesta">
|
||||||
<a [routerLink]="['/encuesta', usuarioEncuesta.encuesta?.id, 'view']">{{ usuarioEncuesta.encuesta?.id }}</a>
|
<a>{{ usuarioEncuesta.encuesta?.nombre }} (#{{ usuarioEncuesta.encuesta?.id }})</a>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td class="text-right">
|
<td class="text-right">
|
||||||
<div class="btn-group">
|
<div class="btn-group" *ngIf="usuarioEncuesta.encuesta">
|
||||||
<button
|
<button
|
||||||
type="submit"
|
type="button"
|
||||||
[routerLink]="['/usuario-encuesta', usuarioEncuesta.id, 'view']"
|
[routerLink]="['/encuesta', usuarioEncuesta.encuesta.id, 'edit']"
|
||||||
class="btn btn-info btn-sm"
|
class="ds-btn ds-btn--primary"
|
||||||
data-cy="entityDetailsButton"
|
[disabled]="isLoading"
|
||||||
>
|
>
|
||||||
<fa-icon icon="eye"></fa-icon>
|
<span>Editar encuesta</span>
|
||||||
<span class="d-none d-md-inline" jhiTranslate="entity.action.view">View</span>
|
|
||||||
</button>
|
</button>
|
||||||
|
<button type="submit" (click)="delete(usuarioEncuesta)" class="ds-btn ds-btn--danger btn-sm" data-cy="entityDeleteButton">
|
||||||
<button
|
<fa-icon icon="sign-out-alt"></fa-icon>
|
||||||
type="submit"
|
<span class="d-none d-md-inline" jhiTranslate="dataSurveyApp.usuarioEncuesta.delete.getOut">Get Out</span>
|
||||||
[routerLink]="['/usuario-encuesta', usuarioEncuesta.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(usuarioEncuesta)" 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>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
|
|
|
@ -5,16 +5,43 @@ import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
||||||
import { IUsuarioEncuesta } from '../usuario-encuesta.model';
|
import { IUsuarioEncuesta } from '../usuario-encuesta.model';
|
||||||
import { UsuarioEncuestaService } from '../service/usuario-encuesta.service';
|
import { UsuarioEncuestaService } from '../service/usuario-encuesta.service';
|
||||||
import { UsuarioEncuestaDeleteDialogComponent } from '../delete/usuario-encuesta-delete-dialog.component';
|
import { UsuarioEncuestaDeleteDialogComponent } from '../delete/usuario-encuesta-delete-dialog.component';
|
||||||
|
import * as dayjs from 'dayjs';
|
||||||
|
import { faPollH, faPencilAlt } from '@fortawesome/free-solid-svg-icons';
|
||||||
|
|
||||||
|
import { AccountService } from 'app/core/auth/account.service';
|
||||||
|
import { Account } from 'app/core/auth/account.model';
|
||||||
|
import { IUsuarioExtra, UsuarioExtra } from 'app/entities/usuario-extra/usuario-extra.model';
|
||||||
|
import { IUser } from '../../user/user.model';
|
||||||
|
import { UsuarioExtraService } from 'app/entities/usuario-extra/service/usuario-extra.service';
|
||||||
|
import { ActivatedRoute, Router } from '@angular/router';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'jhi-usuario-encuesta',
|
selector: 'jhi-usuario-encuesta',
|
||||||
templateUrl: './usuario-encuesta.component.html',
|
templateUrl: './usuario-encuesta.component.html',
|
||||||
})
|
})
|
||||||
export class UsuarioEncuestaComponent implements OnInit {
|
export class UsuarioEncuestaComponent implements OnInit {
|
||||||
|
faPollH = faPollH;
|
||||||
|
faPencilAlt = faPencilAlt;
|
||||||
|
|
||||||
usuarioEncuestas?: IUsuarioEncuesta[];
|
usuarioEncuestas?: IUsuarioEncuesta[];
|
||||||
isLoading = false;
|
isLoading = false;
|
||||||
|
usuarioExtra: IUsuarioExtra | null = null;
|
||||||
|
user: IUser | null = null;
|
||||||
|
|
||||||
constructor(protected usuarioEncuestaService: UsuarioEncuestaService, protected modalService: NgbModal) {}
|
public searchRol: string;
|
||||||
|
public searchEstado: string;
|
||||||
|
|
||||||
|
constructor(
|
||||||
|
protected usuarioEncuestaService: UsuarioEncuestaService,
|
||||||
|
protected modalService: NgbModal,
|
||||||
|
protected usuarioExtraService: UsuarioExtraService,
|
||||||
|
protected activatedRoute: ActivatedRoute,
|
||||||
|
protected accountService: AccountService,
|
||||||
|
protected router: Router
|
||||||
|
) {
|
||||||
|
this.searchRol = '';
|
||||||
|
this.searchEstado = '';
|
||||||
|
}
|
||||||
|
|
||||||
loadAll(): void {
|
loadAll(): void {
|
||||||
this.isLoading = true;
|
this.isLoading = true;
|
||||||
|
@ -22,7 +49,10 @@ export class UsuarioEncuestaComponent implements OnInit {
|
||||||
this.usuarioEncuestaService.query().subscribe(
|
this.usuarioEncuestaService.query().subscribe(
|
||||||
(res: HttpResponse<IUsuarioEncuesta[]>) => {
|
(res: HttpResponse<IUsuarioEncuesta[]>) => {
|
||||||
this.isLoading = false;
|
this.isLoading = false;
|
||||||
this.usuarioEncuestas = res.body ?? [];
|
const tempUsuarioEncuestas = res.body ?? [];
|
||||||
|
this.usuarioEncuestas = tempUsuarioEncuestas
|
||||||
|
.filter(c => c.usuarioExtra?.id === this.usuarioExtra?.id)
|
||||||
|
.filter(c => c.encuesta?.estado !== 'DELETED');
|
||||||
},
|
},
|
||||||
() => {
|
() => {
|
||||||
this.isLoading = false;
|
this.isLoading = false;
|
||||||
|
@ -31,7 +61,22 @@ export class UsuarioEncuestaComponent implements OnInit {
|
||||||
}
|
}
|
||||||
|
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {
|
||||||
this.loadAll();
|
this.searchRol = '';
|
||||||
|
this.searchEstado = '';
|
||||||
|
this.accountService.getAuthenticationState().subscribe(account => {
|
||||||
|
if (account !== null) {
|
||||||
|
this.usuarioExtraService.find(account.id).subscribe(usuarioExtra => {
|
||||||
|
this.usuarioExtra = usuarioExtra.body;
|
||||||
|
this.loadAll();
|
||||||
|
if (this.usuarioExtra !== null) {
|
||||||
|
if (this.usuarioExtra.id === undefined) {
|
||||||
|
const today = dayjs().startOf('day');
|
||||||
|
this.usuarioExtra.fechaNacimiento = today;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
trackId(index: number, item: IUsuarioEncuesta): number {
|
trackId(index: number, item: IUsuarioEncuesta): number {
|
||||||
|
|
|
@ -6,6 +6,9 @@ import { UsuarioEncuestaComponent } from '../list/usuario-encuesta.component';
|
||||||
import { UsuarioEncuestaDetailComponent } from '../detail/usuario-encuesta-detail.component';
|
import { UsuarioEncuestaDetailComponent } from '../detail/usuario-encuesta-detail.component';
|
||||||
import { UsuarioEncuestaUpdateComponent } from '../update/usuario-encuesta-update.component';
|
import { UsuarioEncuestaUpdateComponent } from '../update/usuario-encuesta-update.component';
|
||||||
import { UsuarioEncuestaRoutingResolveService } from './usuario-encuesta-routing-resolve.service';
|
import { UsuarioEncuestaRoutingResolveService } from './usuario-encuesta-routing-resolve.service';
|
||||||
|
import { EncuestaDetailComponent } from '../../encuesta/detail/encuesta-detail.component';
|
||||||
|
import { EncuestaUpdateComponent } from '../../encuesta/update/encuesta-update.component';
|
||||||
|
import { EncuestaRoutingResolveService } from '../../encuesta/route/encuesta-routing-resolve.service';
|
||||||
|
|
||||||
const usuarioEncuestaRoute: Routes = [
|
const usuarioEncuestaRoute: Routes = [
|
||||||
{
|
{
|
||||||
|
@ -37,6 +40,22 @@ const usuarioEncuestaRoute: Routes = [
|
||||||
},
|
},
|
||||||
canActivate: [UserRouteAccessService],
|
canActivate: [UserRouteAccessService],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/encuesta/:id/preview',
|
||||||
|
component: EncuestaDetailComponent,
|
||||||
|
resolve: {
|
||||||
|
usuarioEncuesta: EncuestaRoutingResolveService,
|
||||||
|
},
|
||||||
|
canActivate: [UserRouteAccessService],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/encuesta/:id/edit',
|
||||||
|
component: EncuestaUpdateComponent,
|
||||||
|
resolve: {
|
||||||
|
usuarioEncuesta: EncuestaRoutingResolveService,
|
||||||
|
},
|
||||||
|
canActivate: [UserRouteAccessService],
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
|
|
|
@ -76,10 +76,10 @@ export const USER_ROUTES: RouteInfo[] = [
|
||||||
// type: 'link',
|
// type: 'link',
|
||||||
// icontype: 'nc-icon nc-album-2',
|
// icontype: 'nc-icon nc-album-2',
|
||||||
// },
|
// },
|
||||||
// {
|
{
|
||||||
// path: '/colaboraciones',
|
path: '/colaboraciones',
|
||||||
// title: 'Colaboraciones',
|
title: 'Colaboraciones',
|
||||||
// type: 'link',
|
type: 'link',
|
||||||
// icontype: 'nc-icon nc-world-2',
|
icontype: 'nc-icon nc-world-2',
|
||||||
// },
|
},
|
||||||
];
|
];
|
||||||
|
|
|
@ -13,7 +13,9 @@
|
||||||
"deleted": "Un Colaborador ha sido expulsado de la encuesta",
|
"deleted": "Un Colaborador ha sido expulsado de la encuesta",
|
||||||
"delete": {
|
"delete": {
|
||||||
"question": "¿Seguro que quiere expulsar al colaborador de la encuesta?",
|
"question": "¿Seguro que quiere expulsar al colaborador de la encuesta?",
|
||||||
"action": "Expulsar"
|
"action": "Expulsar",
|
||||||
|
"questionGetOut": "¿Seguro que quiere salirse de la colaboracion de encuesta?",
|
||||||
|
"getOut": "Salir"
|
||||||
},
|
},
|
||||||
"detail": {
|
"detail": {
|
||||||
"title": "Colaborador"
|
"title": "Colaborador"
|
||||||
|
|
Loading…
Reference in New Issue