Merge branch 'dev' into feature/US-62
This commit is contained in:
commit
7cba3ac321
|
@ -0,0 +1 @@
|
||||||
|
<p>encuesta-compartir-dialog works!</p>
|
|
@ -0,0 +1,24 @@
|
||||||
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { EncuestaCompartirDialogComponent } from './encuesta-compartir-dialog.component';
|
||||||
|
|
||||||
|
describe('EncuestaCompartirDialogComponent', () => {
|
||||||
|
let component: EncuestaCompartirDialogComponent;
|
||||||
|
let fixture: ComponentFixture<EncuestaCompartirDialogComponent>;
|
||||||
|
|
||||||
|
beforeEach(async () => {
|
||||||
|
await TestBed.configureTestingModule({
|
||||||
|
declarations: [EncuestaCompartirDialogComponent],
|
||||||
|
}).compileComponents();
|
||||||
|
});
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
fixture = TestBed.createComponent(EncuestaCompartirDialogComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,12 @@
|
||||||
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
|
||||||
|
@Component({
|
||||||
|
selector: 'jhi-encuesta-compartir-dialog',
|
||||||
|
templateUrl: './encuesta-compartir-dialog.component.html',
|
||||||
|
styleUrls: ['./encuesta-compartir-dialog.component.scss'],
|
||||||
|
})
|
||||||
|
export class EncuestaCompartirDialogComponent implements OnInit {
|
||||||
|
constructor() {}
|
||||||
|
|
||||||
|
ngOnInit(): void {}
|
||||||
|
}
|
|
@ -9,6 +9,7 @@ import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
|
||||||
import { EncuestaPublishDialogComponent } from './encuesta-publish-dialog/encuesta-publish-dialog.component';
|
import { EncuestaPublishDialogComponent } from './encuesta-publish-dialog/encuesta-publish-dialog.component';
|
||||||
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 { EncuestaCompartirDialogComponent } from './encuesta-compartir-dialog/encuesta-compartir-dialog.component';
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [SharedModule, EncuestaRoutingModule, FontAwesomeModule],
|
imports: [SharedModule, EncuestaRoutingModule, FontAwesomeModule],
|
||||||
|
@ -20,6 +21,7 @@ import { EncuestaDeleteOptionDialogComponent } from './encuesta-delete-option-di
|
||||||
EncuestaPublishDialogComponent,
|
EncuestaPublishDialogComponent,
|
||||||
EncuestaDeleteQuestionDialogComponent,
|
EncuestaDeleteQuestionDialogComponent,
|
||||||
EncuestaDeleteOptionDialogComponent,
|
EncuestaDeleteOptionDialogComponent,
|
||||||
|
EncuestaCompartirDialogComponent,
|
||||||
],
|
],
|
||||||
entryComponents: [EncuestaDeleteDialogComponent],
|
entryComponents: [EncuestaDeleteDialogComponent],
|
||||||
})
|
})
|
||||||
|
|
|
@ -533,7 +533,6 @@ export class EncuestaComponent implements OnInit, AfterViewInit {
|
||||||
survey.categoria = this.surveyEditForm.get(['categoria'])!.value;
|
survey.categoria = this.surveyEditForm.get(['categoria'])!.value;
|
||||||
// Prevent user update by setting to null
|
// Prevent user update by setting to null
|
||||||
survey.usuarioExtra!.user = null;
|
survey.usuarioExtra!.user = null;
|
||||||
console.log(survey);
|
|
||||||
|
|
||||||
this.encuestaService.updateSurvey(survey).subscribe(res => {
|
this.encuestaService.updateSurvey(survey).subscribe(res => {
|
||||||
this.loadAll();
|
this.loadAll();
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<div>
|
<div>
|
||||||
<h2 id="page-heading" data-cy="EPreguntaCerradaHeading">
|
<h2 id="page-heading" data-cy="EPreguntaCerradaHeading">
|
||||||
<div class="d-flex align-items-center">
|
<div class="d-flex align-items-center">
|
||||||
<p class="ds-title ds-title--interactive" contenteditable="true" spellcheck="false" (blur)="updateSurveyName($event)">
|
<p class="ds-title ds-contenteditable" contenteditable="true" spellcheck="false" (blur)="updateSurveyName($event)">
|
||||||
{{ encuesta!.nombre }}
|
{{ encuesta!.nombre }}
|
||||||
</p>
|
</p>
|
||||||
<fa-icon
|
<fa-icon
|
||||||
|
@ -93,7 +93,18 @@
|
||||||
class="ds-survey--question"
|
class="ds-survey--question"
|
||||||
>
|
>
|
||||||
<div class="ds-survey--titulo">
|
<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
|
<fa-icon
|
||||||
*ngIf="encuesta!.estado === 'DRAFT'"
|
*ngIf="encuesta!.estado === 'DRAFT'"
|
||||||
class="ds-survey--titulo--icon"
|
class="ds-survey--titulo--icon"
|
||||||
|
|
|
@ -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 { EPreguntaCerrada } from './../../e-pregunta-cerrada/e-pregunta-cerrada.model';
|
||||||
import { EPreguntaCerradaOpcion, IEPreguntaCerradaOpcion } from './../../e-pregunta-cerrada-opcion/e-pregunta-cerrada-opcion.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';
|
import { EPreguntaAbiertaService } from './../../e-pregunta-abierta/service/e-pregunta-abierta.service';
|
||||||
|
@ -133,7 +133,6 @@ export class EncuestaUpdateComponent implements OnInit, AfterViewChecked {
|
||||||
(res: any) => {
|
(res: any) => {
|
||||||
this.isLoading = false;
|
this.isLoading = false;
|
||||||
this.ePreguntas = res.body ?? [];
|
this.ePreguntas = res.body ?? [];
|
||||||
console.log(this.ePreguntas);
|
|
||||||
},
|
},
|
||||||
() => {
|
() => {
|
||||||
this.isLoading = false;
|
this.isLoading = false;
|
||||||
|
@ -154,7 +153,6 @@ export class EncuestaUpdateComponent implements OnInit, AfterViewChecked {
|
||||||
(res: any) => {
|
(res: any) => {
|
||||||
this.isLoading = false;
|
this.isLoading = false;
|
||||||
this.usuariosColaboradores = res.body ?? [];
|
this.usuariosColaboradores = res.body ?? [];
|
||||||
console.log(this.usuariosColaboradores);
|
|
||||||
},
|
},
|
||||||
() => {
|
() => {
|
||||||
this.isLoading = false;
|
this.isLoading = false;
|
||||||
|
@ -165,7 +163,6 @@ export class EncuestaUpdateComponent implements OnInit, AfterViewChecked {
|
||||||
async loadAplicationParameters(): Promise<void> {
|
async loadAplicationParameters(): Promise<void> {
|
||||||
const params = await this.parametroAplicacionService.find(1).toPromise();
|
const params = await this.parametroAplicacionService.find(1).toPromise();
|
||||||
this.parametrosAplicacion = params.body;
|
this.parametrosAplicacion = params.body;
|
||||||
//console.log(this.parametrosAplicacion);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {
|
||||||
|
@ -370,7 +367,6 @@ export class EncuestaUpdateComponent implements OnInit, AfterViewChecked {
|
||||||
|
|
||||||
createQuestion(): void {
|
createQuestion(): void {
|
||||||
const surveyId = this.encuesta?.id;
|
const surveyId = this.encuesta?.id;
|
||||||
console.log(surveyId);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected createFromFormClosedQuestion(): IEPreguntaCerrada {
|
protected createFromFormClosedQuestion(): IEPreguntaCerrada {
|
||||||
|
@ -466,6 +462,45 @@ export class EncuestaUpdateComponent implements OnInit, AfterViewChecked {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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 {
|
// previousState(): void {
|
||||||
// window.history.back();
|
// window.history.back();
|
||||||
// }
|
// }
|
||||||
|
|
|
@ -30,22 +30,23 @@
|
||||||
<div class="container px-0">
|
<div class="container px-0">
|
||||||
<!--filtrado-->
|
<!--filtrado-->
|
||||||
|
|
||||||
<!--<div class="input-group">
|
<div class="input-group">
|
||||||
<div class="ds-filter">
|
<div class="ds-filter">
|
||||||
<div class="input-group-addon"><i class="glyphicon glyphicon-search"></i></div>
|
<div class="input-group-addon"><i class="glyphicon glyphicon-search"></i></div>
|
||||||
<input type="text" name="searchString" placeholder="Buscar por nombre..." [(ngModel)]="searchString" />
|
<input class="form-control" type="text" name="searchString" placeholder="Buscar por nombre..." [(ngModel)]="searchString" />
|
||||||
</div>
|
</div>
|
||||||
<div class="ds-filter">
|
<!--<div class="ds-filter">
|
||||||
<div class="input-group-addon"><i class="glyphicon glyphicon-search"></i></div>
|
<select name="searchCategoria" class="form-control" [(ngModel)]="searchCategoria" style="width: 200px">
|
||||||
<select name="accesoEncuestas" id="accesoEncuesta" [(ngModel)]="searchCategoria" style="width: 200px">
|
<option value="" selected="selected" disabled="disabled">Filtrar por categoría</option>
|
||||||
<option selected="selected" *ngFor="let categoria of categorias" [value]="categoria.nombre">{{categoria.nombre}}</option>
|
<option value="">Todas las categorías</option>
|
||||||
|
<option *ngFor="let categoria of categorias" [value]="categoria.nombre">{{categoria.nombre}}</option>
|
||||||
</select>
|
</select>
|
||||||
|
</div>-->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<hr />
|
||||||
|
|
||||||
</div>-->
|
<div class="container" *ngIf="encuestas && encuestas.length == 0">
|
||||||
|
|
||||||
<div class="container">
|
|
||||||
<h1 class="ds-title">Encuestas</h1>
|
<h1 class="ds-title">Encuestas</h1>
|
||||||
|
|
||||||
<hr />
|
<hr />
|
||||||
|
@ -58,60 +59,61 @@
|
||||||
|
|
||||||
<!--Inicio de los cards-->
|
<!--Inicio de los cards-->
|
||||||
|
|
||||||
<!-- <div class="row gx-5" *ngIf="encuestas && encuestas.length > 0">
|
<div class="row gx-5" *ngIf="encuestas && encuestas.length > 0">
|
||||||
<div class="col-xl-4 col-lg-4 col-md-6 mb-5" *ngFor="let encuesta of encuestas; trackBy: trackId">
|
|
||||||
<div
|
<div
|
||||||
class="card-encuesta lift h-100"
|
class="col-xl-4 col-lg-4 col-md-6 mb-5"
|
||||||
|
*ngFor="
|
||||||
[attr.data-id]="encuesta.id"
|
let encuesta of encuestas | filter: 'nombre':searchString | filter: 'categoria.nombre':searchCategoria;
|
||||||
|
trackBy: trackId
|
||||||
|
"
|
||||||
>
|
>
|
||||||
|
<div class="card-encuesta lift h-100" [attr.data-id]="encuesta.id">
|
||||||
|
<!--(dblclick)="openSurvey($event)"
|
||||||
|
(click)="selectSurvey($event)"
|
||||||
|
|
||||||
<!–(dblclick)="openSurvey($event)"
|
-->
|
||||||
(click)="selectSurvey($event)"–>
|
|
||||||
|
|
||||||
|
<div class="card-body p-3">
|
||||||
|
|
||||||
<!– <div class="card-body p-3">
|
|
||||||
<div class="card-title mb-0">{{ encuesta.nombre }}</div>
|
<div class="card-title mb-0">{{ encuesta.nombre }}</div>
|
||||||
<div class="entity-body--row m-2">
|
<div class="entity-body--row m-2">
|
||||||
<span class="tag mt-2">{{ encuesta.categoria?.nombre | lowercase }}</span>
|
<span class="tag mt-2">{{ encuesta.categoria?.nombre | lowercase }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="entity-body--row m-2">
|
<div class="entity-body--row m-2">
|
||||||
<span class="subtitle mt-2">{{ encuesta.descripcion | titlecase }}</span>
|
<span class="subtitle mt-2">{{ encuesta.descripcion | titlecase }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="text-xs text-gray-500">
|
<div class="text-xs text-gray-500">
|
||||||
<div class="entity-body">
|
<div class="entity-body">
|
||||||
<div class="entity-body--row m-2">
|
<div class="entity-body--row m-2">
|
||||||
<span class="mt-2"
|
<span class="mt-2"
|
||||||
>Fecha de inicio <fa-icon class="entity-icon--access" [icon]="faCalendarAlt"></fa-icon> {{
|
>Fecha de inicio <fa-icon class="entity-icon--access" [icon]="faCalendarAlt"></fa-icon> {{
|
||||||
encuesta.fechaPublicacion | formatShortDatetime | titlecase
|
encuesta.fechaPublicacion | formatShortDatetime | titlecase
|
||||||
}}</span
|
}}</span
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
<div class="entity-body--row m-2">
|
<div class="entity-body--row m-2">
|
||||||
<span class="mt-2"
|
<span class="mt-2"
|
||||||
>Fecha de finalización <fa-icon class="entity-icon--access" [icon]="faCalendarAlt"></fa-icon
|
>Fecha de finalización <fa-icon class="entity-icon--access" [icon]="faCalendarAlt"></fa-icon
|
||||||
> {{ encuesta.fechaFinalizar | formatShortDatetime | titlecase }}</span
|
> {{ encuesta.fechaFinalizar | formatShortDatetime | titlecase }}</span
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
<div class="entity-body--row m-2">
|
<div class="entity-body--row m-2">
|
||||||
<p>Calificacion</p>
|
<p>Calificacion</p>
|
||||||
<fa-icon *ngFor="let i of [].constructor(encuesta.calificacion)" class="entity-icon--star" [icon]="faStar"></fa-icon>
|
<fa-icon *ngFor="let i of [].constructor(encuesta.calificacion)" class="entity-icon--star" [icon]="faStar"></fa-icon>
|
||||||
<fa-icon
|
<fa-icon
|
||||||
*ngFor="let i of [].constructor(5 - encuesta.calificacion!)"
|
*ngFor="let i of [].constructor(5 - encuesta.calificacion!)"
|
||||||
class="entity-icon--star--off"
|
class="entity-icon--star--off"
|
||||||
[icon]="faStar"
|
[icon]="faStar"
|
||||||
></fa-icon>
|
></fa-icon>
|
||||||
</div>
|
</div>
|
||||||
<div class="entity-body--row m-2">
|
<div class="entity-body--row m-2">
|
||||||
<button class="ds-btn btn-card"><fa-icon [icon]="faPollH"></fa-icon> Completar encuesta</button>
|
<button class="ds-btn btn-card"><fa-icon [icon]="faPollH"></fa-icon> Completar encuesta</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>–>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>-->
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -9,8 +9,9 @@
|
||||||
letter-spacing: 0.025rem;
|
letter-spacing: 0.025rem;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
|
}
|
||||||
|
|
||||||
&--interactive {
|
.ds-contenteditable {
|
||||||
border: 2.25px solid transparent;
|
border: 2.25px solid transparent;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
|
@ -23,7 +24,6 @@
|
||||||
&:focus {
|
&:focus {
|
||||||
border: 2.25px solid #2962ff;
|
border: 2.25px solid #2962ff;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.ds-title--small {
|
.ds-title--small {
|
||||||
|
|
Loading…
Reference in New Issue