Merge branch 'master' into VM/DM-508
This commit is contained in:
commit
9fe3fc39ed
@ -34,7 +34,7 @@ export function templateExistsWhenEnteringDossierList(): CanActivateFn {
|
||||
await firstValueFrom(dossierTemplatesService.loadAll());
|
||||
const dossierTemplateStats = dashboardStatsService.find(dossierTemplateId);
|
||||
if (!dossierTemplateStats || dossierTemplateStats.isEmpty) {
|
||||
logger.warn('[ROUTES] Dossier template not found, redirecting to main');
|
||||
logger.warn(`[ROUTES] Dossier template ${dossierTemplateId} not found, redirecting to main`);
|
||||
await router.navigate([tenantsService.activeTenantId, 'main']);
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -10,6 +10,7 @@ import jwt_decode from 'jwt-decode';
|
||||
|
||||
export interface JwtToken {
|
||||
auth_time: number;
|
||||
iat: number;
|
||||
}
|
||||
|
||||
export function ifLoggedIn(): AsyncGuard {
|
||||
@ -42,7 +43,8 @@ export function ifLoggedIn(): AsyncGuard {
|
||||
await licenseService.loadLicenses();
|
||||
|
||||
const token = await keycloakService.getToken();
|
||||
const authTime = (jwt_decode(token) as JwtToken).auth_time.toString();
|
||||
const jwtToken = jwt_decode(token) as JwtToken;
|
||||
const authTime = (jwtToken.auth_time || jwtToken.iat).toString();
|
||||
localStorage.setItem('authTime', authTime);
|
||||
}
|
||||
|
||||
|
||||
@ -93,11 +93,11 @@ export class AddEditCloneDossierTemplateDialogComponent extends BaseDialogCompon
|
||||
}
|
||||
this._dialogRef.close(true);
|
||||
} catch (error) {
|
||||
const message =
|
||||
error.status === HttpStatusCode.Conflict
|
||||
? _('add-edit-clone-dossier-template.error.conflict')
|
||||
: _('add-edit-clone-dossier-template.error.generic');
|
||||
this._toaster.error(message, { error });
|
||||
if (error.status === HttpStatusCode.Conflict) {
|
||||
this._toaster.error(_('add-edit-clone-dossier-template.error.conflict'), { error });
|
||||
} else {
|
||||
this._toaster.rawError(error.error.message);
|
||||
}
|
||||
}
|
||||
this._loadingService.stop();
|
||||
}
|
||||
@ -114,8 +114,8 @@ export class AddEditCloneDossierTemplateDialogComponent extends BaseDialogCompon
|
||||
|
||||
#getForm() {
|
||||
return this._formBuilder.group({
|
||||
name: [this.#getCloneName(), Validators.required],
|
||||
description: [this.dossierTemplate?.description],
|
||||
name: [this.#getCloneName(), [Validators.required, Validators.maxLength(255)]],
|
||||
description: [this.dossierTemplate?.description, Validators.maxLength(4000)],
|
||||
validFrom: [
|
||||
this.dossierTemplate?.validFrom ? dayjs(this.dossierTemplate?.validFrom).toDate() : null,
|
||||
this.#requiredIfValidator(() => this.hasValidFrom),
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
<section class="dialog">
|
||||
<div
|
||||
[innerHTML]="
|
||||
'add-edit-justification.title' | translate : { type: data.justification ? 'edit' : 'create', name: data.justification?.name }
|
||||
'add-edit-justification.title' | translate: { type: data.justification ? 'edit' : 'create', name: data.justification?.name }
|
||||
"
|
||||
class="dialog-header heading-l"
|
||||
></div>
|
||||
|
||||
@ -29,19 +29,25 @@ export class AddEditJustificationDialogComponent extends BaseDialogComponent {
|
||||
|
||||
async save() {
|
||||
const dossierTemplateId = this.data.dossierTemplateId;
|
||||
|
||||
this._loadingService.start();
|
||||
await firstValueFrom(this._justificationService.createOrUpdate(this.form.getRawValue() as Justification, dossierTemplateId));
|
||||
await firstValueFrom(this._justificationService.loadAll(dossierTemplateId));
|
||||
try {
|
||||
await firstValueFrom(this._justificationService.createOrUpdate(this.form.getRawValue() as Justification, dossierTemplateId));
|
||||
await firstValueFrom(this._justificationService.loadAll(dossierTemplateId));
|
||||
this._dialogRef.close(true);
|
||||
} catch (error) {
|
||||
this._toaster.rawError(error.error.message);
|
||||
}
|
||||
this._loadingService.stop();
|
||||
this._dialogRef.close(true);
|
||||
}
|
||||
|
||||
private _getForm(): UntypedFormGroup {
|
||||
return this._formBuilder.group({
|
||||
name: [{ value: this.data.justification?.name, disabled: !!this.data.justification }, Validators.required],
|
||||
reason: [this.data.justification?.reason, Validators.required],
|
||||
description: [this.data.justification?.description, Validators.required],
|
||||
name: [
|
||||
{ value: this.data.justification?.name, disabled: !!this.data.justification },
|
||||
[Validators.required, Validators.maxLength(255)],
|
||||
],
|
||||
reason: [this.data.justification?.reason, [Validators.required, Validators.maxLength(4000)]],
|
||||
description: [this.data.justification?.description, [Validators.required, Validators.maxLength(4000)]],
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,3 +1 @@
|
||||
<div class="canvas-container">
|
||||
<canvas [data]="chartData" [options]="chartOptions" [type]="'line'" baseChart></canvas>
|
||||
</div>
|
||||
<canvas [data]="chartData" [options]="chartOptions" [type]="'line'" baseChart height="400px" width="1000px"></canvas>
|
||||
|
||||
@ -1,4 +0,0 @@
|
||||
.canvas-container {
|
||||
position: relative;
|
||||
width: 1000px;
|
||||
}
|
||||
@ -32,6 +32,7 @@ export class ChartComponent implements OnChanges {
|
||||
|
||||
#setChartOptions(): void {
|
||||
this.chartOptions = {
|
||||
responsive: false,
|
||||
scales: {
|
||||
y: {
|
||||
stacked: true,
|
||||
|
||||
@ -3,7 +3,6 @@
|
||||
}
|
||||
|
||||
.grid-container {
|
||||
width: calc(100% - 40px);
|
||||
display: grid;
|
||||
grid-template-columns: 250px 300px 1fr;
|
||||
margin: 20px;
|
||||
|
||||
@ -3,7 +3,6 @@
|
||||
}
|
||||
|
||||
.grid-container {
|
||||
width: calc(100% - 40px);
|
||||
display: grid;
|
||||
grid-template-columns: 250px 300px 1fr;
|
||||
margin: 20px;
|
||||
|
||||
@ -3,7 +3,6 @@
|
||||
}
|
||||
|
||||
.grid-container {
|
||||
width: calc(100% - 40px);
|
||||
display: grid;
|
||||
grid-template-columns: 250px 300px 1fr;
|
||||
margin: 20px;
|
||||
|
||||
@ -1,81 +1,77 @@
|
||||
<section class="settings">
|
||||
<div>
|
||||
<iqser-page-header
|
||||
(closeAction)="routerHistoryService.navigateToLastDossiersScreen()"
|
||||
[buttonConfigs]="buttonConfigs"
|
||||
[pageLabel]="'license-information' | translate"
|
||||
[showCloseButton]="currentUser.isUser && permissionsService.has$(roles.dossiers.read) | async"
|
||||
></iqser-page-header>
|
||||
<iqser-page-header
|
||||
(closeAction)="routerHistoryService.navigateToLastDossiersScreen()"
|
||||
[buttonConfigs]="buttonConfigs"
|
||||
[pageLabel]="'license-information' | translate"
|
||||
[showCloseButton]="currentUser.isUser && permissionsService.has$(roles.dossiers.read) | async"
|
||||
></iqser-page-header>
|
||||
|
||||
<div class="content-inner">
|
||||
<div class="content-container">
|
||||
<div *ngIf="licenseService.licenseData$ | async" class="grid-container">
|
||||
<div class="row">
|
||||
<div translate="license-info-screen.backend-version"></div>
|
||||
<div>{{ configService.values.BACKEND_APP_VERSION || '-' }}</div>
|
||||
</div>
|
||||
<div class="content-inner">
|
||||
<div class="content-container">
|
||||
<div *ngIf="licenseService.licenseData$ | async" class="grid-container">
|
||||
<div class="row">
|
||||
<div translate="license-info-screen.backend-version"></div>
|
||||
<div>{{ configService.values.BACKEND_APP_VERSION || '-' }}</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div translate="license-info-screen.custom-app-title"></div>
|
||||
<div>{{ configService.values.APP_NAME || '-' }}</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div translate="license-info-screen.custom-app-title"></div>
|
||||
<div>{{ configService.values.APP_NAME || '-' }}</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div translate="license-info-screen.copyright-claim-title"></div>
|
||||
<div>
|
||||
{{ 'license-info-screen.copyright-claim-text' | translate: { currentYear: currentYear } }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div translate="license-info-screen.copyright-claim-title"></div>
|
||||
<div>
|
||||
{{ 'license-info-screen.copyright-claim-text' | translate: { currentYear: currentYear } }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div translate="license-info-screen.end-user-license-title"></div>
|
||||
<div translate="license-info-screen.end-user-license-text"></div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div translate="license-info-screen.end-user-license-title"></div>
|
||||
<div translate="license-info-screen.end-user-license-text"></div>
|
||||
</div>
|
||||
|
||||
<div class="section-title all-caps-label" translate="license-info-screen.licensing-details.section-title"></div>
|
||||
<div class="section-title all-caps-label" translate="license-info-screen.licensing-details.section-title"></div>
|
||||
|
||||
<div class="row">
|
||||
<div class="flex-align-items-center" translate="license-info-screen.licensing-details.license-title"></div>
|
||||
<div>
|
||||
<redaction-license-select></redaction-license-select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="flex-align-items-center" translate="license-info-screen.licensing-details.license-title"></div>
|
||||
<div>
|
||||
<redaction-license-select></redaction-license-select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<ng-container *ngIf="licenseService.selectedLicense$ | async as selectedLicense">
|
||||
<div class="row">
|
||||
<div translate="license-info-screen.licensing-details.licensed-to"></div>
|
||||
<div>{{ selectedLicense.licensedTo || '-' }}</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div translate="license-info-screen.licensing-details.licensing-period"></div>
|
||||
<div>
|
||||
{{ (selectedLicense.validFrom | date: 'dd-MM-yyyy') || '-' }} /
|
||||
{{ (selectedLicense.validUntil | date: 'dd-MM-yyyy') || '-' }}
|
||||
</div>
|
||||
</div>
|
||||
</ng-container>
|
||||
|
||||
<div *ngIf="licenseService.isPageBased" class="row">
|
||||
<div>{{ 'license-info-screen.licensing-details.licensed-page-count' | translate }}</div>
|
||||
<div>{{ licenseService.totalLicensedNumberOfPages }}</div>
|
||||
</div>
|
||||
|
||||
<div *ngIf="licenseService.isCapacityBased" class="row">
|
||||
<div>{{ 'license-info-screen.licensing-details.licensed-analysis-capacity' | translate }}</div>
|
||||
<div>{{ licenseService.analysisCapacityBytes | size }}</div>
|
||||
</div>
|
||||
|
||||
<div *ngIf="licenseService.isCapacityBased" class="row">
|
||||
<div>{{ 'license-info-screen.licensing-details.licensed-retention-capacity' | translate }}</div>
|
||||
<div>{{ licenseService.retentionCapacityBytes | size }}</div>
|
||||
</div>
|
||||
<ng-container *ngIf="licenseService.selectedLicense$ | async as selectedLicense">
|
||||
<div class="row">
|
||||
<div translate="license-info-screen.licensing-details.licensed-to"></div>
|
||||
<div>{{ selectedLicense.licensedTo || '-' }}</div>
|
||||
</div>
|
||||
|
||||
<red-license-page-usage *ngIf="licenseService.isPageBased"></red-license-page-usage>
|
||||
<red-license-analysis-capacity-usage *ngIf="licenseService.isCapacityBased"></red-license-analysis-capacity-usage>
|
||||
<red-license-retention-capacity *ngIf="licenseService.isCapacityBased"></red-license-retention-capacity>
|
||||
<div class="row">
|
||||
<div translate="license-info-screen.licensing-details.licensing-period"></div>
|
||||
<div>
|
||||
{{ (selectedLicense.validFrom | date: 'dd-MM-yyyy') || '-' }} /
|
||||
{{ (selectedLicense.validUntil | date: 'dd-MM-yyyy') || '-' }}
|
||||
</div>
|
||||
</div>
|
||||
</ng-container>
|
||||
|
||||
<div *ngIf="licenseService.isPageBased" class="row">
|
||||
<div>{{ 'license-info-screen.licensing-details.licensed-page-count' | translate }}</div>
|
||||
<div>{{ licenseService.totalLicensedNumberOfPages }}</div>
|
||||
</div>
|
||||
|
||||
<div *ngIf="licenseService.isCapacityBased" class="row">
|
||||
<div>{{ 'license-info-screen.licensing-details.licensed-analysis-capacity' | translate }}</div>
|
||||
<div>{{ licenseService.analysisCapacityBytes | size }}</div>
|
||||
</div>
|
||||
|
||||
<div *ngIf="licenseService.isCapacityBased" class="row">
|
||||
<div>{{ 'license-info-screen.licensing-details.licensed-retention-capacity' | translate }}</div>
|
||||
<div>{{ licenseService.retentionCapacityBytes | size }}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<red-license-page-usage *ngIf="licenseService.isPageBased"></red-license-page-usage>
|
||||
<red-license-analysis-capacity-usage *ngIf="licenseService.isCapacityBased"></red-license-analysis-capacity-usage>
|
||||
<red-license-retention-capacity *ngIf="licenseService.isCapacityBased"></red-license-retention-capacity>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@ -4,12 +4,7 @@
|
||||
overflow: auto;
|
||||
@include common-mixins.scroll-bar;
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
||||
.grid-container {
|
||||
width: calc(100% - 40px);
|
||||
display: grid;
|
||||
grid-template-columns: 250px 300px 1fr;
|
||||
margin: 20px;
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import { Component, inject, OnInit } from '@angular/core';
|
||||
import { FormBuilder, FormControl } from '@angular/forms';
|
||||
import { FormBuilder, FormControl, Validators } from '@angular/forms';
|
||||
import { DetailsRadioOption, IconButtonTypes, IqserDialogComponent } from '@iqser/common-ui';
|
||||
import { Dictionary, SuperTypes } from '@red/domain';
|
||||
import { ActiveDossiersService } from '@services/dossiers/active-dossiers.service';
|
||||
@ -58,7 +58,7 @@ export class EditRedactionDialogComponent
|
||||
}
|
||||
|
||||
get disabled() {
|
||||
return this.showExtras ? !this.form.controls.reason.value : false;
|
||||
return this.form.invalid || (this.showExtras ? !this.form.controls.reason.value : false);
|
||||
}
|
||||
|
||||
async ngOnInit() {
|
||||
@ -126,7 +126,7 @@ export class EditRedactionDialogComponent
|
||||
const sameSection = this.data.annotations.every(annotation => annotation.section === this.data.annotations[0].section);
|
||||
return this._formBuilder.group({
|
||||
reason: new FormControl<LegalBasisOption>(null),
|
||||
comment: new FormControl<string>(null),
|
||||
comment: new FormControl<string>(null, Validators.maxLength(4000)),
|
||||
type: new FormControl<string>(sameType ? this.data.annotations[0].type : null),
|
||||
section: new FormControl<string>(sameSection ? this.data.annotations[0].section : null),
|
||||
option: new FormControl<LegalBasisOption>(null),
|
||||
|
||||
@ -397,8 +397,6 @@ export class FilePreviewScreenComponent
|
||||
$event.preventDefault();
|
||||
this.fullScreen = false;
|
||||
this.closeFullScreen();
|
||||
this.pdf.deactivateSearch();
|
||||
this.pdf.focusViewer();
|
||||
this._changeRef.markForCheck();
|
||||
}
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import { Injectable } from '@angular/core';
|
||||
import { IqserDialog } from '@common-ui/dialog/iqser-dialog.service';
|
||||
import { getConfig } from '@iqser/common-ui';
|
||||
import { getConfig, Toaster } from '@iqser/common-ui';
|
||||
import { List, log } from '@iqser/common-ui/lib/utils';
|
||||
import { AnnotationPermissions } from '@models/file/annotation.permissions';
|
||||
import { AnnotationWrapper } from '@models/file/annotation.wrapper';
|
||||
@ -60,6 +60,7 @@ export class AnnotationActionsService {
|
||||
private readonly _skippedService: SkippedService,
|
||||
private readonly _dossierTemplatesService: DossierTemplatesService,
|
||||
private readonly _permissionsService: PermissionsService,
|
||||
private readonly _toaster: Toaster,
|
||||
) {}
|
||||
|
||||
removeHighlights(highlights: AnnotationWrapper[]): void {
|
||||
@ -126,8 +127,12 @@ export class AnnotationActionsService {
|
||||
}
|
||||
|
||||
if (result.comment) {
|
||||
for (const a of annotations) {
|
||||
await this._manualRedactionService.addComment(result.comment, a.id, dossierId, fileId);
|
||||
try {
|
||||
for (const a of annotations) {
|
||||
await this._manualRedactionService.addComment(result.comment, a.id, dossierId, fileId);
|
||||
}
|
||||
} catch (error) {
|
||||
this._toaster.rawError(error.error.message);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -108,14 +108,9 @@ export class PdfViewer {
|
||||
}
|
||||
|
||||
deactivateSearch() {
|
||||
this.#clearSearchResultsWhenVisibilityChanged();
|
||||
this.#instance.UI.closeElements(['searchPanel']);
|
||||
}
|
||||
|
||||
focusViewer() {
|
||||
this.instance.UI.iframeWindow.focus();
|
||||
}
|
||||
|
||||
resetAnnotationActions() {
|
||||
if (this.#instance.UI.annotationPopup.getItems().length) {
|
||||
this.#logger.info('[PDF] Reset annotation actions');
|
||||
@ -167,8 +162,9 @@ export class PdfViewer {
|
||||
this.#setSelectionMode();
|
||||
this.#configureElements();
|
||||
this.#disableHotkeys();
|
||||
this.#clearSearchResultsWhenVisibilityChanged();
|
||||
this.#listenForCommandF();
|
||||
this.#listenForEsc();
|
||||
this.#clearSearchResultsWhenVisibilityChanged();
|
||||
});
|
||||
|
||||
return this.#instance;
|
||||
@ -267,6 +263,16 @@ export class PdfViewer {
|
||||
});
|
||||
}
|
||||
|
||||
#listenForEsc() {
|
||||
this.#instance.UI.hotkeys.on('esc', e => {
|
||||
e.preventDefault();
|
||||
if (this.#isElementActive('searchPanel')) {
|
||||
this.deactivateSearch();
|
||||
this.#focusViewer();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
#adjustPage(page: number) {
|
||||
if (this.isCompareMode()) {
|
||||
if (page % 2 === 1) {
|
||||
@ -351,4 +357,9 @@ export class PdfViewer {
|
||||
input.select();
|
||||
}
|
||||
}
|
||||
|
||||
#focusViewer() {
|
||||
this.instance.UI.iframeWindow.document.getElementById('SearchPanel__input').blur();
|
||||
this.instance.UI.iframeWindow.focus();
|
||||
}
|
||||
}
|
||||
|
||||
@ -33,7 +33,8 @@ export class RouterHistoryService {
|
||||
}
|
||||
|
||||
const token = await this._keycloakService.getToken();
|
||||
const authTime = (jwt_decode(token) as JwtToken).auth_time;
|
||||
const jwtToken = jwt_decode(token) as JwtToken;
|
||||
const authTime = (jwtToken.auth_time || jwtToken.iat).toString();
|
||||
const localStorageAuthTime = localStorage.getItem('authTime');
|
||||
|
||||
if (authTime.toString() !== localStorageAuthTime) {
|
||||
|
||||
@ -1 +1 @@
|
||||
Subproject commit 6dc910c4ca6182fd4f1d6746b1114ad5210229a8
|
||||
Subproject commit a9d6e5e7286b7655140a3ed19c9f0b9c5464b0ae
|
||||
Loading…
x
Reference in New Issue
Block a user