mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-26 17:24:45 +00:00
* enable strict mode for angular templates * update formatting * fix lint * fix formatting * remove deprecated method * upgrade to latest ADF * restore error handler
142 lines
4.7 KiB
TypeScript
142 lines
4.7 KiB
TypeScript
/*!
|
|
* @license
|
|
* Alfresco Example Content Application
|
|
*
|
|
* Copyright (C) 2005 - 2020 Alfresco Software Limited
|
|
*
|
|
* 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
|
|
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import { Component, ViewEncapsulation, OnInit } from '@angular/core';
|
|
import { AppConfigService, StorageService, OauthConfigModel } from '@alfresco/adf-core';
|
|
import { Validators, FormGroup, FormBuilder } from '@angular/forms';
|
|
import { Observable } from 'rxjs';
|
|
import { Store } from '@ngrx/store';
|
|
import { AppStore, getHeaderColor, getAppName, getUserProfile, SetSettingsParameterAction } from '@alfresco/aca-shared/store';
|
|
import { ProfileState } from '@alfresco/adf-extensions';
|
|
import { AppExtensionService, SettingsGroupRef, SettingsParameterRef } from '@alfresco/aca-shared';
|
|
|
|
interface RepositoryConfig {
|
|
ecmHost: string;
|
|
authType: string;
|
|
aisHost: string;
|
|
}
|
|
|
|
@Component({
|
|
selector: 'aca-settings',
|
|
templateUrl: './settings.component.html',
|
|
styleUrls: ['./settings.component.scss'],
|
|
encapsulation: ViewEncapsulation.None,
|
|
host: { class: 'aca-settings' }
|
|
})
|
|
export class SettingsComponent implements OnInit {
|
|
private defaultPath = '/assets/images/alfresco-logo-white.svg';
|
|
|
|
form: FormGroup;
|
|
|
|
profile$: Observable<ProfileState>;
|
|
appName$: Observable<string>;
|
|
headerColor$: Observable<string>;
|
|
|
|
get settingGroups(): SettingsGroupRef[] {
|
|
return this.appExtensions.getSettingsGroups();
|
|
}
|
|
|
|
constructor(
|
|
private appExtensions: AppExtensionService,
|
|
private store: Store<AppStore>,
|
|
private appConfig: AppConfigService,
|
|
private storage: StorageService,
|
|
private fb: FormBuilder
|
|
) {
|
|
this.profile$ = store.select(getUserProfile);
|
|
this.appName$ = store.select(getAppName);
|
|
this.headerColor$ = store.select(getHeaderColor);
|
|
}
|
|
|
|
get logo(): string {
|
|
return this.appConfig.get('application.logo', this.defaultPath);
|
|
}
|
|
|
|
ngOnInit() {
|
|
this.form = this.fb.group({
|
|
ecmHost: ['', [Validators.required, Validators.pattern('^(http|https)://.*[^/]$')]],
|
|
aisHost: ['', [Validators.required, Validators.pattern('^(http|https)://.*[^/]$')]],
|
|
authType: ['']
|
|
});
|
|
|
|
this.reset();
|
|
}
|
|
|
|
apply(model: RepositoryConfig, isValid: boolean) {
|
|
if (isValid) {
|
|
this.storage.setItem('ecmHost', model.ecmHost);
|
|
this.storage.setItem('authType', model.authType);
|
|
|
|
const config: OauthConfigModel = this.appConfig.get<OauthConfigModel>('oauth2', null);
|
|
config.host = model.aisHost;
|
|
this.storage.setItem('oauth2', JSON.stringify(config));
|
|
|
|
// window.location.reload(true);
|
|
}
|
|
}
|
|
|
|
reset() {
|
|
const config: OauthConfigModel = this.appConfig.get<OauthConfigModel>('oauth2', null);
|
|
|
|
this.form.reset({
|
|
ecmHost: this.storage.getItem('ecmHost') || this.appConfig.get<string>('ecmHost'),
|
|
aisHost: config.host,
|
|
authType: this.appConfig.get<string>('authType')
|
|
});
|
|
}
|
|
|
|
getStringParamValue(param: SettingsParameterRef): string {
|
|
return this.storage.getItem(param.key) || param.value;
|
|
}
|
|
|
|
setParamValue(param: SettingsParameterRef, value: any) {
|
|
const currentValue = this.getStringParamValue(param);
|
|
|
|
if (currentValue !== value.toString()) {
|
|
param.value = value;
|
|
this.saveToStorage(param);
|
|
}
|
|
}
|
|
|
|
onParamValueChanged(event: Event, param: SettingsParameterRef) {
|
|
const target = event.target as HTMLInputElement;
|
|
this.setParamValue(param, target.value);
|
|
}
|
|
|
|
getBooleanParamValue(param: SettingsParameterRef): boolean {
|
|
const result = this.storage.getItem(param.key);
|
|
if (result) {
|
|
return result === 'true';
|
|
} else {
|
|
return !!param.value;
|
|
}
|
|
}
|
|
|
|
private saveToStorage(param: SettingsParameterRef) {
|
|
this.storage.setItem(param.key, param.value ? param.value.toString() : param.value);
|
|
this.store.dispatch(new SetSettingsParameterAction({ name: param.key, value: param.value }));
|
|
}
|
|
}
|