mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-06-16 17:54:45 +00:00
file from template effect
This commit is contained in:
parent
2e2f015a41
commit
dd6a61e9f1
@ -39,7 +39,8 @@ import {
|
|||||||
SearchEffects,
|
SearchEffects,
|
||||||
LibraryEffects,
|
LibraryEffects,
|
||||||
UploadEffects,
|
UploadEffects,
|
||||||
FavoriteEffects
|
FavoriteEffects,
|
||||||
|
TemplateEffects
|
||||||
} from './effects';
|
} from './effects';
|
||||||
import { INITIAL_STATE } from './initial-state';
|
import { INITIAL_STATE } from './initial-state';
|
||||||
|
|
||||||
@ -56,7 +57,8 @@ import { INITIAL_STATE } from './initial-state';
|
|||||||
SearchEffects,
|
SearchEffects,
|
||||||
LibraryEffects,
|
LibraryEffects,
|
||||||
UploadEffects,
|
UploadEffects,
|
||||||
FavoriteEffects
|
FavoriteEffects,
|
||||||
|
TemplateEffects
|
||||||
]),
|
]),
|
||||||
!environment.production
|
!environment.production
|
||||||
? StoreDevtoolsModule.instrument({ maxAge: 25 })
|
? StoreDevtoolsModule.instrument({ maxAge: 25 })
|
||||||
|
@ -32,3 +32,4 @@ export * from './effects/search.effects';
|
|||||||
export * from './effects/library.effects';
|
export * from './effects/library.effects';
|
||||||
export * from './effects/upload.effects';
|
export * from './effects/upload.effects';
|
||||||
export * from './effects/upload.effects';
|
export * from './effects/upload.effects';
|
||||||
|
export * from './effects/template.effects';
|
||||||
|
87
src/app/store/effects/template.effects.ts
Normal file
87
src/app/store/effects/template.effects.ts
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
/*!
|
||||||
|
* @license
|
||||||
|
* Alfresco Example Content Application
|
||||||
|
*
|
||||||
|
* Copyright (C) 2005 - 2019 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 { Effect, Actions, ofType } from '@ngrx/effects';
|
||||||
|
import { Injectable } from '@angular/core';
|
||||||
|
import { map, withLatestFrom, switchMap, catchError } from 'rxjs/operators';
|
||||||
|
import { Store } from '@ngrx/store';
|
||||||
|
import {
|
||||||
|
CreateFileFromTemplate,
|
||||||
|
TemplateActionTypes,
|
||||||
|
getCurrentFolder,
|
||||||
|
AppStore,
|
||||||
|
SnackbarErrorAction
|
||||||
|
} from '@alfresco/aca-shared/store';
|
||||||
|
import { CreateFileFromTemplateService } from '../../services/create-file-from-template.service';
|
||||||
|
import { AlfrescoApiService } from '@alfresco/adf-core';
|
||||||
|
import { ContentManagementService } from '../../services/content-management.service';
|
||||||
|
import { from, of } from 'rxjs';
|
||||||
|
import { NodeEntry } from '@alfresco/js-api';
|
||||||
|
|
||||||
|
@Injectable()
|
||||||
|
export class TemplateEffects {
|
||||||
|
constructor(
|
||||||
|
private content: ContentManagementService,
|
||||||
|
private store: Store<AppStore>,
|
||||||
|
private apiService: AlfrescoApiService,
|
||||||
|
private actions$: Actions,
|
||||||
|
private createFileFromTemplateService: CreateFileFromTemplateService
|
||||||
|
) {}
|
||||||
|
|
||||||
|
@Effect({ dispatch: false })
|
||||||
|
fileFromTemplate$ = this.actions$.pipe(
|
||||||
|
ofType<CreateFileFromTemplate>(TemplateActionTypes.CreateFileFromTemplate),
|
||||||
|
map(() => {
|
||||||
|
this.createFileFromTemplateService
|
||||||
|
.openTemplatesDialog()
|
||||||
|
.pipe(
|
||||||
|
withLatestFrom(this.store.select(getCurrentFolder)),
|
||||||
|
switchMap(([[template], parentNode]) => {
|
||||||
|
return from(
|
||||||
|
this.apiService
|
||||||
|
.getInstance()
|
||||||
|
.nodes.copyNode(template.id, { targetParentId: parentNode.id })
|
||||||
|
);
|
||||||
|
}),
|
||||||
|
catchError(error => {
|
||||||
|
const { statusCode } = JSON.parse(error.message).error;
|
||||||
|
|
||||||
|
if (statusCode !== 409) {
|
||||||
|
this.store.dispatch(
|
||||||
|
new SnackbarErrorAction('APP.MESSAGES.ERRORS.GENERIC')
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return of(null);
|
||||||
|
})
|
||||||
|
)
|
||||||
|
.subscribe((node: NodeEntry | null) => {
|
||||||
|
if (node) {
|
||||||
|
this.content.reload.next();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user