Merge branch 'dev' into feature/US-27
This commit is contained in:
commit
bea3cf9115
|
@ -318,7 +318,7 @@
|
||||||
data-cy="entityTable"
|
data-cy="entityTable"
|
||||||
>
|
>
|
||||||
<td>{{ encuesta.nombre }}</td>
|
<td>{{ encuesta.nombre }}</td>
|
||||||
<td>{{ encuesta.fechaCreacion | formatMediumDatetime }}</td>
|
<td>{{ encuesta.fechaCreacion | formatShortDatetime | titlecase }}</td>
|
||||||
<td jhiTranslate="{{ 'dataSurveyApp.AccesoEncuesta.' + encuesta.acceso }}">{{ encuesta.acceso }}</td>
|
<td jhiTranslate="{{ 'dataSurveyApp.AccesoEncuesta.' + encuesta.acceso }}">{{ encuesta.acceso }}</td>
|
||||||
<td jhiTranslate="{{ 'dataSurveyApp.EstadoEncuesta.' + encuesta.estado }}">{{ encuesta.estado }}</td>
|
<td jhiTranslate="{{ 'dataSurveyApp.EstadoEncuesta.' + encuesta.estado }}">{{ encuesta.estado }}</td>
|
||||||
<td>
|
<td>
|
||||||
|
@ -328,9 +328,7 @@
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<div *ngIf="encuesta.usuarioExtra">
|
<div *ngIf="encuesta.usuarioExtra">
|
||||||
<a [routerLink]="['/usuario-extra', encuesta.usuarioExtra?.nombre, 'view']">
|
{{ encuesta.usuarioExtra?.user?.login }}
|
||||||
{{ encuesta.usuarioExtra?.nombre }}
|
|
||||||
</a>
|
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td class="text-right">
|
<td class="text-right">
|
||||||
|
|
|
@ -23,6 +23,7 @@ import { AccountService } from 'app/core/auth/account.service';
|
||||||
import { Account } from 'app/core/auth/account.model';
|
import { Account } from 'app/core/auth/account.model';
|
||||||
import { Router } from '@angular/router';
|
import { Router } from '@angular/router';
|
||||||
import { EncuestaPublishDialogComponent } from '../encuesta-publish-dialog/encuesta-publish-dialog.component';
|
import { EncuestaPublishDialogComponent } from '../encuesta-publish-dialog/encuesta-publish-dialog.component';
|
||||||
|
import { IUser } from '../../user/user.model';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
faShareAlt,
|
faShareAlt,
|
||||||
|
@ -70,6 +71,7 @@ export class EncuestaComponent implements OnInit, AfterViewInit {
|
||||||
|
|
||||||
categoriasSharedCollection: ICategoria[] = [];
|
categoriasSharedCollection: ICategoria[] = [];
|
||||||
usuarioExtrasSharedCollection: IUsuarioExtra[] = [];
|
usuarioExtrasSharedCollection: IUsuarioExtra[] = [];
|
||||||
|
userSharedCollection: IUser[] = [];
|
||||||
|
|
||||||
selectedIdSurvey: number | null = null;
|
selectedIdSurvey: number | null = null;
|
||||||
encuestaencontrada: IEncuesta | null = null;
|
encuestaencontrada: IEncuesta | null = null;
|
||||||
|
@ -120,12 +122,37 @@ export class EncuestaComponent implements OnInit, AfterViewInit {
|
||||||
loadAll(): void {
|
loadAll(): void {
|
||||||
this.isLoading = true;
|
this.isLoading = true;
|
||||||
|
|
||||||
|
this.usuarioExtraService
|
||||||
|
.retrieveAllPublicUsers()
|
||||||
|
.pipe(finalize(() => this.loadUserExtras()))
|
||||||
|
.subscribe(res => {
|
||||||
|
this.userSharedCollection = res;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
loadPublicUser(): void {
|
||||||
|
this.usuarioExtraService
|
||||||
|
.retrieveAllPublicUsers()
|
||||||
|
.pipe(finalize(() => this.loadUserExtras()))
|
||||||
|
.subscribe(res => {
|
||||||
|
this.userSharedCollection = res;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
loadUserExtras() {
|
||||||
|
this.usuarioExtraService
|
||||||
|
.query()
|
||||||
|
.pipe(
|
||||||
|
finalize(() =>
|
||||||
this.encuestaService.query().subscribe(
|
this.encuestaService.query().subscribe(
|
||||||
(res: HttpResponse<IEncuesta[]>) => {
|
(res: HttpResponse<IEncuesta[]>) => {
|
||||||
this.isLoading = false;
|
this.isLoading = false;
|
||||||
const tmpEncuestas = res.body ?? [];
|
const tmpEncuestas = res.body ?? [];
|
||||||
if (this.isAdmin()) {
|
if (this.isAdmin()) {
|
||||||
this.encuestas = tmpEncuestas;
|
this.encuestas = tmpEncuestas;
|
||||||
|
this.encuestas.forEach(e => {
|
||||||
|
e.usuarioExtra = this.usuarioExtrasSharedCollection?.find(pU => pU.id == e.usuarioExtra?.id);
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
this.encuestas = tmpEncuestas
|
this.encuestas = tmpEncuestas
|
||||||
.filter(e => e.usuarioExtra?.id === this.usuarioExtra?.id)
|
.filter(e => e.usuarioExtra?.id === this.usuarioExtra?.id)
|
||||||
|
@ -135,6 +162,20 @@ export class EncuestaComponent implements OnInit, AfterViewInit {
|
||||||
() => {
|
() => {
|
||||||
this.isLoading = false;
|
this.isLoading = false;
|
||||||
}
|
}
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
.subscribe(
|
||||||
|
(res: HttpResponse<IUsuarioExtra[]>) => {
|
||||||
|
this.isLoading = false;
|
||||||
|
this.usuarioExtrasSharedCollection = res.body ?? [];
|
||||||
|
this.usuarioExtrasSharedCollection.forEach(uE => {
|
||||||
|
uE.user = this.userSharedCollection?.find(pU => pU.id == uE.user?.id);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
() => {
|
||||||
|
this.isLoading = false;
|
||||||
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -176,6 +217,7 @@ export class EncuestaComponent implements OnInit, AfterViewInit {
|
||||||
this.usuarioExtraService.find(account.id).subscribe(usuarioExtra => {
|
this.usuarioExtraService.find(account.id).subscribe(usuarioExtra => {
|
||||||
this.usuarioExtra = usuarioExtra.body;
|
this.usuarioExtra = usuarioExtra.body;
|
||||||
this.loadAll();
|
this.loadAll();
|
||||||
|
|
||||||
this.loadRelationshipsOptions();
|
this.loadRelationshipsOptions();
|
||||||
if (this.usuarioExtra !== null) {
|
if (this.usuarioExtra !== null) {
|
||||||
if (this.usuarioExtra.id === undefined) {
|
if (this.usuarioExtra.id === undefined) {
|
||||||
|
|
|
@ -17,7 +17,23 @@
|
||||||
<div class="alert alert-warning" id="no-result" *ngIf="usuarioExtras?.length === 0">
|
<div class="alert alert-warning" id="no-result" *ngIf="usuarioExtras?.length === 0">
|
||||||
<span jhiTranslate="dataSurveyApp.usuarioExtra.home.notFound">No usuarioExtras found</span>
|
<span jhiTranslate="dataSurveyApp.usuarioExtra.home.notFound">No usuarioExtras found</span>
|
||||||
</div>
|
</div>
|
||||||
|
<form class="ds-form d-inline">
|
||||||
|
<div class="input-group">
|
||||||
|
<div class="col-3">
|
||||||
|
<div class="input-group-addon"><i class="glyphicon glyphicon-search"></i></div>
|
||||||
|
<input type="text" name="searchNombreUsuario" placeholder="Buscar por nombre..." [(ngModel)]="searchNombreUsuario" />
|
||||||
|
</div>
|
||||||
|
<div class="col-3">
|
||||||
|
<div class="input-group-addon"><i class="glyphicon glyphicon-search"></i></div>
|
||||||
|
<select name="searchEstadoUsuario" id="searchEstadoUsuario" [(ngModel)]="searchEstadoUsuario" style="width: 200px">
|
||||||
|
<option value="" selected="selected" disabled="disabled">Filtrar por estado</option>
|
||||||
|
<option value="">Todos Estados</option>
|
||||||
|
<option value="Active">Activos</option>
|
||||||
|
<option value="Suspended">Bloqueados</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
<div class="table-responsive" id="entities" *ngIf="usuarioExtras && usuarioExtras.length > 0">
|
<div class="table-responsive" id="entities" *ngIf="usuarioExtras && usuarioExtras.length > 0">
|
||||||
<table class="table table-striped" aria-describedby="page-heading">
|
<table class="table table-striped" aria-describedby="page-heading">
|
||||||
<thead>
|
<thead>
|
||||||
|
@ -32,7 +48,13 @@
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr *ngFor="let usuarioExtra of usuarioExtras; trackBy: trackId" data-cy="entityTable">
|
<tr
|
||||||
|
*ngFor="
|
||||||
|
let usuarioExtra of usuarioExtras | filter: 'nombre':searchNombreUsuario | filter: 'estado':searchEstadoUsuario;
|
||||||
|
trackBy: trackId
|
||||||
|
"
|
||||||
|
data-cy="entityTable"
|
||||||
|
>
|
||||||
<td *ngIf="usuarioExtra.user">
|
<td *ngIf="usuarioExtra.user">
|
||||||
<ul class="listRoles">
|
<ul class="listRoles">
|
||||||
<li *ngFor="let userRole of usuarioExtra.user.authorities">
|
<li *ngFor="let userRole of usuarioExtra.user.authorities">
|
||||||
|
|
|
@ -17,8 +17,13 @@ export class UsuarioExtraComponent implements OnInit {
|
||||||
usuarioExtras?: IUsuarioExtra[];
|
usuarioExtras?: IUsuarioExtra[];
|
||||||
publicUsers?: IUser[];
|
publicUsers?: IUser[];
|
||||||
isLoading = false;
|
isLoading = false;
|
||||||
|
public searchNombreUsuario: string;
|
||||||
|
public searchEstadoUsuario: string;
|
||||||
|
|
||||||
constructor(protected usuarioExtraService: UsuarioExtraService, protected modalService: NgbModal) {}
|
constructor(protected usuarioExtraService: UsuarioExtraService, protected modalService: NgbModal) {
|
||||||
|
this.searchNombreUsuario = '';
|
||||||
|
this.searchEstadoUsuario = '';
|
||||||
|
}
|
||||||
|
|
||||||
loadPublicUser(): void {
|
loadPublicUser(): void {
|
||||||
this.usuarioExtraService
|
this.usuarioExtraService
|
||||||
|
@ -60,6 +65,8 @@ export class UsuarioExtraComponent implements OnInit {
|
||||||
}
|
}
|
||||||
|
|
||||||
ngOnInit(): void {
|
ngOnInit(): void {
|
||||||
|
this.searchNombreUsuario = '';
|
||||||
|
this.searchEstadoUsuario = '';
|
||||||
this.loadAll();
|
this.loadAll();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue