-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
editor: confirmation message when leaving
A confirmation message is displayed if the user leaves the form without saving it. * Removes spinner on editor. * Closes rero/rero-ils#2104. Co-Authored-by: Bertrand Zuchuat <bertrand.zuchuat@rero.ch>
- Loading branch information
1 parent
3d7d36e
commit f36e1a1
Showing
7 changed files
with
289 additions
and
109 deletions.
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
projects/rero/ng-core/src/lib/component/abstract-can-deactivate.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* RERO angular core | ||
* Copyright (C) 2023 RERO | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
* the Free Software Foundation, version 3 of the License. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
import {Component, HostListener} from "@angular/core"; | ||
|
||
/** | ||
* Doc: https://developer.mozilla.org/en-US/docs/Web/API/Window/beforeunload_event | ||
* | ||
* The beforeunload event is fired when the window, the document and its resources | ||
* are about to be unloaded. The document is still visible and the event is still | ||
* cancelable at this point. | ||
*/ | ||
@Component({ template: '' }) | ||
export abstract class AbstractCanDeactivateComponent { | ||
|
||
abstract canDeactivate: boolean; | ||
|
||
@HostListener('window:beforeunload', ['$event']) | ||
unloadNotification($event: any) { | ||
if (!this.canDeactivate) { | ||
$event.returnValue = true; | ||
} | ||
} | ||
|
||
/** | ||
* Can deactivate changed on editor | ||
* @param activate - boolean | ||
*/ | ||
canDeactivateChanged(activate: boolean): void { | ||
this.canDeactivate = activate; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
67 changes: 67 additions & 0 deletions
67
projects/rero/ng-core/src/lib/guard/component-can-deactivate.guard.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
* RERO angular core | ||
* Copyright (C) 2023 RERO | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
* the Free Software Foundation, version 3 of the License. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
import { TestBed } from '@angular/core/testing'; | ||
|
||
import { TranslateModule } from '@ngx-translate/core'; | ||
import { BsModalService, ModalModule } from 'ngx-bootstrap/modal'; | ||
import { Observable, of } from 'rxjs'; | ||
import { AbstractCanDeactivateComponent } from '../component/abstract-can-deactivate.component'; | ||
import { DialogService } from '../dialog/dialog.service'; | ||
import { ComponentCanDeactivateGuard } from './component-can-deactivate.guard'; | ||
|
||
export class MockComponent extends AbstractCanDeactivateComponent { | ||
canDeactivate: boolean = true; | ||
} | ||
|
||
describe('ComponentCanDeactivateGuard', () => { | ||
let guard: ComponentCanDeactivateGuard; | ||
let component: MockComponent; | ||
|
||
const dialogServiceSpy = jasmine.createSpyObj('DialogService', ['show']); | ||
dialogServiceSpy.show.and.returnValue(of(false)); | ||
|
||
beforeEach(() => { | ||
TestBed.configureTestingModule({ | ||
imports: [ | ||
ModalModule.forRoot(), | ||
TranslateModule.forRoot() | ||
], | ||
providers: [ | ||
MockComponent, | ||
ComponentCanDeactivateGuard, | ||
{ provide: DialogService, useValue: dialogServiceSpy }, | ||
BsModalService | ||
] | ||
}); | ||
guard = TestBed.inject(ComponentCanDeactivateGuard); | ||
component = TestBed.inject(MockComponent); | ||
}); | ||
|
||
it('should be created', () => { | ||
expect(guard).toBeTruthy(); | ||
}); | ||
|
||
it('should return a boolean if confirmation is not required.', () => { | ||
expect(guard.canDeactivate(component)).toBeTrue(); | ||
}); | ||
|
||
it('should return an observable on a boolean value.', () => { | ||
component.canDeactivate = false; | ||
const obs = guard.canDeactivate(component) as Observable<boolean>; | ||
obs.subscribe((value: boolean) => expect(value).toBeFalse()); | ||
}); | ||
}); |
60 changes: 60 additions & 0 deletions
60
projects/rero/ng-core/src/lib/guard/component-can-deactivate.guard.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* | ||
* RERO angular core | ||
* Copyright (C) 2023 RERO | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
* the Free Software Foundation, version 3 of the License. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
import { Injectable } from '@angular/core'; | ||
import { CanDeactivate } from '@angular/router'; | ||
import { TranslateService } from '@ngx-translate/core'; | ||
import { Observable } from 'rxjs'; | ||
import { AbstractCanDeactivateComponent } from '../component/abstract-can-deactivate.component'; | ||
import { DialogService } from '../dialog/dialog.service'; | ||
|
||
|
||
@Injectable() | ||
export class ComponentCanDeactivateGuard implements CanDeactivate<AbstractCanDeactivateComponent> { | ||
/** | ||
* Constructor | ||
* @param _translateService - TranslateService | ||
* @param _dialogService - DialogService | ||
*/ | ||
constructor( | ||
protected translateService: TranslateService, | ||
protected dialogService: DialogService | ||
) {} | ||
|
||
/** | ||
* CanDeactivate | ||
* @param component - AbstractCanDeactivateComponent | ||
* @returns Observable<boolean> or boolean | ||
*/ | ||
canDeactivate(component: AbstractCanDeactivateComponent): Observable<boolean> | boolean { | ||
if (!component.canDeactivate) { | ||
return this.dialogService.show({ | ||
ignoreBackdropClick: false, | ||
initialState: { | ||
title: this.translateService.instant('Quit the page'), | ||
body: this.translateService.instant( | ||
'Do you want to quit the page? The changes made so far will be lost.' | ||
), | ||
confirmButton: true, | ||
confirmTitleButton: this.translateService.instant('Quit'), | ||
cancelTitleButton: this.translateService.instant('Stay') | ||
} | ||
}); | ||
} | ||
|
||
return true; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.