Headless CMS and Content Managment Hub
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

214 lines
6.5 KiB

/*
* Squidex Headless CMS
*
* @license
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
*/
import { Injectable } from '@angular/core';
import { DialogService, shareSubscribed, State } from '@app/framework';
import { Observable } from 'rxjs';
import { finalize, tap } from 'rxjs/operators';
import { RuleDto, RulesService, UpsertRuleDto } from './../services/rules.service';
import { AppsState } from './apps.state';
interface Snapshot {
// The current rules.
rules: RulesList;
// Indicates if the rules are loaded.
isLoaded?: boolean;
// Indicates if the rules are loading.
isLoading?: boolean;
// The id of the rule that is currently running.
runningRuleId?: string;
// Indicates if a rule run can be cancelled.
canCancelRun?: boolean;
// Indicates if the user can create rules.
canCreate?: boolean;
// Indicates if the user can read events.
canReadEvents?: boolean;
}
type RulesList = ReadonlyArray<RuleDto>;
@Injectable()
export class RulesState extends State<Snapshot> {
public rules =
this.project(x => x.rules);
public isLoaded =
this.project(x => x.isLoaded === true);
public isLoading =
this.project(x => x.isLoading === true);
public canCreate =
this.project(x => x.canCreate === true);
public canCancelRun =
this.project(x => x.canCancelRun === true);
public canReadEvents =
this.project(x => x.canReadEvents === true);
public runningRuleId =
this.project(x => x.runningRuleId);
public runningRule =
this.projectFrom2(this.rules, this.runningRuleId, (r, id) => r.find(x => x.id === id));
constructor(
private readonly appsState: AppsState,
private readonly dialogs: DialogService,
private readonly rulesService: RulesService
) {
super({ rules: [] }, 'Rules');
}
public load(isReload = false): Observable<any> {
if (!isReload) {
this.resetState('Loading Initial');
}
return this.loadInternal(isReload);
}
private loadInternal(isReload: boolean): Observable<any> {
this.next({ isLoading: true }, 'Loading Started');
return this.rulesService.getRules(this.appName).pipe(
tap(({ items: rules, runningRuleId, canCancelRun, canCreate, canReadEvents }) => {
if (isReload) {
this.dialogs.notifyInfo('i18n:rules.reloaded');
}
this.next({
canCancelRun,
canCreate,
canReadEvents,
isLoaded: true,
isLoading: false,
runningRuleId,
rules
}, 'Loading Success');
}),
finalize(() => {
this.next({ isLoading: false }, 'Loading Done');
}),
shareSubscribed(this.dialogs));
}
public create(request: UpsertRuleDto): Observable<RuleDto> {
return this.rulesService.postRule(this.appName, request).pipe(
tap(created => {
this.next(s => {
const rules = [...s.rules, created];
return { ...s, rules };
}, 'Created');
}),
shareSubscribed(this.dialogs));
}
public delete(rule: RuleDto): Observable<any> {
return this.rulesService.deleteRule(this.appName, rule, rule.version).pipe(
tap(() => {
this.next(s => {
const rules = s.rules.removeBy('id', rule);
return { ...s, rules };
}, 'Deleted');
}),
shareSubscribed(this.dialogs));
}
public updateAction(rule: RuleDto, action: any): Observable<RuleDto> {
return this.rulesService.putRule(this.appName, rule, { action }, rule.version).pipe(
tap(updated => {
this.replaceRule(updated);
}),
shareSubscribed(this.dialogs));
}
public updateTrigger(rule: RuleDto, trigger: any): Observable<RuleDto> {
return this.rulesService.putRule(this.appName, rule, { trigger }, rule.version).pipe(
tap(updated => {
this.replaceRule(updated);
}),
shareSubscribed(this.dialogs));
}
public rename(rule: RuleDto, name: string): Observable<RuleDto> {
return this.rulesService.putRule(this.appName, rule, { name }, rule.version).pipe(
tap(updated => {
this.replaceRule(updated);
}),
shareSubscribed(this.dialogs));
}
public enable(rule: RuleDto): Observable<any> {
return this.rulesService.enableRule(this.appName, rule, rule.version).pipe(
tap(updated => {
this.replaceRule(updated);
}),
shareSubscribed(this.dialogs));
}
public disable(rule: RuleDto): Observable<any> {
return this.rulesService.disableRule(this.appName, rule, rule.version).pipe(
tap(updated => {
this.replaceRule(updated);
}),
shareSubscribed(this.dialogs));
}
public run(rule: RuleDto): Observable<any> {
return this.rulesService.runRule(this.appName, rule).pipe(
tap(() => {
this.dialogs.notifyInfo('i18n:rules.restarted');
}),
shareSubscribed(this.dialogs));
}
public runFromSnapshots(rule: RuleDto): Observable<any> {
return this.rulesService.runRuleFromSnapshots(this.appName, rule).pipe(
tap(() => {
this.dialogs.notifyInfo('i18n:rules.restarted');
}),
shareSubscribed(this.dialogs));
}
public trigger(rule: RuleDto): Observable<any> {
return this.rulesService.triggerRule(this.appName, rule).pipe(
tap(() => {
this.dialogs.notifyInfo('i18n:rules.enqueued');
}),
shareSubscribed(this.dialogs));
}
public runCancel(): Observable<any> {
return this.rulesService.runCancel(this.appName).pipe(
tap(() => {
this.dialogs.notifyInfo('i18n:rules.stop');
}),
shareSubscribed(this.dialogs));
}
private replaceRule(rule: RuleDto) {
this.next(s => {
const rules = s.rules.replaceBy('id', rule);
return { ...s, rules };
}, 'Updated');
}
private get appName() {
return this.appsState.appName;
}
}