Skip to content

Commit

Permalink
[ACS-9008] Proper form initialization for Saved Searches (#4243)
Browse files Browse the repository at this point in the history
* [ACS-9008] Proper form initialization

* [ACS-9008] Add saved search form interface, fix other dialog
  • Loading branch information
MichalKinas authored Nov 18, 2024
1 parent baaa8ca commit 90cb0d4
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import { Store } from '@ngrx/store';
import { CoreModule } from '@alfresco/adf-core';
import { FormControl, FormGroup, Validators } from '@angular/forms';
import { UniqueSearchNameValidator } from '../unique-search-name-validator';
import { SavedSearchForm } from '../saved-search-form.interface';

@Component({
standalone: true,
Expand All @@ -42,15 +43,7 @@ import { UniqueSearchNameValidator } from '../unique-search-name-validator';
host: { class: 'aca-saved-search-edit-dialog' }
})
export class SavedSearchEditDialogComponent {
form = new FormGroup({
name: new FormControl('', {
validators: [Validators.required, forbidOnlySpaces],
asyncValidators: [this.uniqueSearchNameValidator.validate.bind(this.uniqueSearchNameValidator)],
updateOn: 'blur'
}),
description: new FormControl('')
});

form: FormGroup<SavedSearchForm>;
isLoading = false;

constructor(
Expand All @@ -60,6 +53,15 @@ export class SavedSearchEditDialogComponent {
private readonly uniqueSearchNameValidator: UniqueSearchNameValidator,
@Inject(MAT_DIALOG_DATA) private readonly data: SavedSearch
) {
this.form = new FormGroup({
name: new FormControl('', {
validators: [Validators.required, forbidOnlySpaces],
asyncValidators: [this.uniqueSearchNameValidator.validate.bind(this.uniqueSearchNameValidator)],
updateOn: 'change'
}),
description: new FormControl('')
});

this.form.patchValue({
name: this.data.name,
description: this.data.description
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ import { take } from 'rxjs/operators';
import { Store } from '@ngrx/store';
import { AppStore, SnackbarErrorAction, SnackbarInfoAction } from '@alfresco/aca-shared/store';
import { UniqueSearchNameValidator } from './unique-search-name-validator';
import { SavedSearchForm } from './saved-search-form.interface';

@Component({
standalone: true,
Expand All @@ -66,15 +67,7 @@ import { UniqueSearchNameValidator } from './unique-search-name-validator';
host: { class: 'aca-save-search-dialog' }
})
export class SaveSearchDialogComponent {
form = new FormGroup({
name: new FormControl('', {
validators: [Validators.required, forbidOnlySpaces],
asyncValidators: [this.uniqueSearchNameValidator.validate.bind(this.uniqueSearchNameValidator)],
updateOn: 'blur'
}),
description: new FormControl('')
});

form: FormGroup<SavedSearchForm>;
disableSubmitButton = false;

constructor(
Expand All @@ -83,7 +76,16 @@ export class SaveSearchDialogComponent {
private readonly savedSearchesService: SavedSearchesService,
private readonly uniqueSearchNameValidator: UniqueSearchNameValidator,
@Inject(MAT_DIALOG_DATA) private readonly data: { searchUrl: string }
) {}
) {
this.form = new FormGroup({
name: new FormControl('', {
validators: [Validators.required, forbidOnlySpaces],
asyncValidators: [this.uniqueSearchNameValidator.validate.bind(this.uniqueSearchNameValidator)],
updateOn: 'change'
}),
description: new FormControl('')
});
}

submit() {
if (this.form.invalid || this.disableSubmitButton) {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/*!
* Copyright © 2005-2024 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Alfresco Example Content Application
*
* This file is part of the Alfresco Example Content Application.
* If the software was purchased under a paid Alfresco license, the terms of
* the paid license agreement will prevail. Otherwise, the software is
* provided under the following open source license terms:
*
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* The Alfresco Example Content Application 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
*/

import { FormControl } from '@angular/forms';

export interface SavedSearchForm {
name: FormControl<string>;
description: FormControl<string>;
}

0 comments on commit 90cb0d4

Please sign in to comment.