use tree server data source base

This commit is contained in:
Mads Rasmussen
2023-12-07 20:02:42 +01:00
parent 739f28b277
commit a8d04c439a

View File

@@ -1,75 +1,50 @@
import { UmbDocumentTypeTreeItemModel } from './types.js';
import type { UmbTreeDataSource } from '@umbraco-cms/backoffice/tree';
import { DocumentTypeResource } from '@umbraco-cms/backoffice/backend-api';
import { UmbTreeServerDataSourceBase } from '@umbraco-cms/backoffice/tree';
import { DocumentTypeResource, DocumentTypeTreeItemResponseModel } from '@umbraco-cms/backoffice/backend-api';
import type { UmbControllerHost } from '@umbraco-cms/backoffice/controller-api';
import { tryExecuteAndNotify } from '@umbraco-cms/backoffice/resources';
/**
* A data source for the Document Type tree that fetches data from the server
* @export
* @class UmbDocumentTypeTreeServerDataSource
* @implements {UmbTreeDataSource}
* @extends {UmbTreeServerDataSourceBase}
*/
export class UmbDocumentTypeTreeServerDataSource implements UmbTreeDataSource<UmbDocumentTypeTreeItemModel> {
#host: UmbControllerHost;
export class UmbDocumentTypeTreeServerDataSource extends UmbTreeServerDataSourceBase<
DocumentTypeTreeItemResponseModel,
UmbDocumentTypeTreeItemModel
> {
/**
* Creates an instance of UmbDocumentTypeTreeServerDataSource.
* @param {UmbControllerHost} host
* @memberof UmbDocumentTypeTreeServerDataSource
*/
constructor(host: UmbControllerHost) {
this.#host = host;
}
/**
* Fetches the root items for the tree from the server
* @return {*}
* @memberof UmbDocumentTypeTreeServerDataSource
*/
async getRootItems() {
return tryExecuteAndNotify(this.#host, DocumentTypeResource.getTreeDocumentTypeRoot({}));
}
/**
* Fetches the children of a given parent id from the server
* @param {(string | null)} parentId
* @return {*}
* @memberof UmbDocumentTypeTreeServerDataSource
*/
async getChildrenOf(parentId: string | null) {
if (parentId === undefined) throw new Error('Parent id is missing');
/* TODO: should we make getRootItems() internal
so it only is a server concern that there are two endpoints? */
if (parentId === null) {
return this.getRootItems();
} else {
return tryExecuteAndNotify(
this.#host,
DocumentTypeResource.getTreeDocumentTypeChildren({
parentId,
}),
);
}
}
/**
* Fetches the items for the given ids from the server
* @param {Array<string>} ids
* @return {*}
* @memberof UmbDocumentTypeTreeServerDataSource
*/
async getItems(ids: Array<string>) {
if (ids) {
throw new Error('Ids are missing');
}
return tryExecuteAndNotify(
this.#host,
DocumentTypeResource.getDocumentTypeItem({
id: ids,
}),
);
super(host, {
getChildrenOf,
mapper,
});
}
}
const getChildrenOf = (parentUnique: string | null) => {
if (parentUnique === null) {
// eslint-disable-next-line local-rules/no-direct-api-import
return DocumentTypeResource.getTreeDocumentTypeRoot({});
} else {
// eslint-disable-next-line local-rules/no-direct-api-import
return DocumentTypeResource.getTreeDocumentTypeChildren({
parentId: parentUnique,
});
}
};
const mapper = (item: DocumentTypeTreeItemResponseModel): UmbDocumentTypeTreeItemModel => {
return {
id: item.id!,
parentId: item.parentId || null,
name: item.name!,
type: 'document-type',
isContainer: item.isContainer!,
hasChildren: item.hasChildren!,
};
};