Merge branch 'feature/entity-action-kind' of https://github.com/umbraco/Umbraco.CMS.Backoffice into feature/entity-action-kind

This commit is contained in:
Mads Rasmussen
2024-03-03 15:24:40 +01:00
2 changed files with 13 additions and 2 deletions

View File

@@ -16,6 +16,8 @@ export class UmbDeleteEntityAction extends UmbEntityActionBase<MetaEntityActionD
constructor(host: UmbControllerHost, args: UmbEntityActionArgs<MetaEntityActionDeleteKind>) {
super(host, args);
// TODO: We should properly look into how we can simplify the one time usage of a extension api, as its a bit of overkill to take conditions/overwrites and observation of extensions into play here: [NL]
// But since this happens when we execute an action, it does most likely not hurt any users, but it is a bit of a overkill to do this for every action: [NL]
this.#init = Promise.all([
new UmbExtensionApiInitializer(
this._host,

View File

@@ -1,9 +1,14 @@
import type { UmbControllerHost } from '@umbraco-cms/backoffice/controller-api';
import { UmbEntityActionBase } from '@umbraco-cms/backoffice/entity-action';
import { UMB_MODAL_MANAGER_CONTEXT } from '@umbraco-cms/backoffice/modal';
import { type UmbFolderRepository, UMB_FOLDER_CREATE_MODAL } from '@umbraco-cms/backoffice/tree';
import { type UmbFolderRepository } from '@umbraco-cms/backoffice/tree';
export class UmbCreateFolderEntityAction<T extends UmbFolderRepository> extends UmbEntityActionBase<T> {
constructor(host: UmbControllerHost, args: any) {
super(host, args);
}
async execute() {
/*
if (!this.repository) return;
const modalManager = await this.getContext(UMB_MODAL_MANAGER_CONTEXT);
@@ -15,5 +20,9 @@ export class UmbCreateFolderEntityAction<T extends UmbFolderRepository> extends
});
await modalContext.onSubmit();
*/
console.log(`execute create-folder for: ${this.args.unique}`);
}
destroy(): void {}
}