delete unused header

This commit is contained in:
Mads Rasmussen
2023-11-22 11:55:12 +01:00
parent 3cf3ba87b4
commit de87c49e80

View File

@@ -1,65 +0,0 @@
import { UmbUserGroupCollectionContext } from '../user-group-collection.context.js';
import { UUIInputEvent } from '@umbraco-cms/backoffice/external/uui';
import { css, html, customElement } from '@umbraco-cms/backoffice/external/lit';
import { UMB_COLLECTION_CONTEXT } from '@umbraco-cms/backoffice/collection';
import { UmbLitElement } from '@umbraco-cms/internal/lit-element';
@customElement('umb-user-group-collection-header')
export class UmbUserGroupCollectionHeaderElement extends UmbLitElement {
#collectionContext?: UmbUserGroupCollectionContext;
constructor() {
super();
this.consumeContext(UMB_COLLECTION_CONTEXT, (instance) => {
this.#collectionContext = instance as UmbUserGroupCollectionContext;
});
}
#onCreate() {
history.pushState(null, '', 'section/user-management/view/user-groups/user-group/create/');
}
#onSearch(event: UUIInputEvent) {
//TODO How do we handle search when theres no endpoint (we have to do it locally)
}
render() {
return html`
<uui-button
@click=${this.#onCreate}
label=${this.localize.term('actions_createGroup')}
look="outline"></uui-button>
<uui-input
@input=${this.#onSearch}
label=${this.localize.term('general_search')}
placeholder=${this.localize.term('visuallyHiddenTexts_userGroupSearchLabel')}
id="input-search"></uui-input>
`;
}
static styles = [
css`
:host {
height: 100%;
width: 100%;
display: flex;
justify-content: space-between;
white-space: nowrap;
gap: var(--uui-size-space-5);
align-items: center;
}
#input-search {
width: 100%;
}
`,
];
}
export default UmbUserGroupCollectionHeaderElement;
declare global {
interface HTMLElementTagNameMap {
'umb-user-group-collection-header': UmbUserGroupCollectionHeaderElement;
}
}