mirror of https://github.com/Squidex/squidex.git
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.
42 lines
872 B
42 lines
872 B
/*
|
|
* Squidex Headless CMS
|
|
*
|
|
* @license
|
|
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
|
|
*/
|
|
|
|
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
|
|
|
import {
|
|
AppDto,
|
|
AppsState,
|
|
DialogModel,
|
|
fadeAnimation,
|
|
ModalModel,
|
|
UIState
|
|
} from '@app/shared';
|
|
|
|
@Component({
|
|
selector: 'sqx-apps-menu',
|
|
styleUrls: ['./apps-menu.component.scss'],
|
|
templateUrl: './apps-menu.component.html',
|
|
animations: [
|
|
fadeAnimation
|
|
],
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
|
})
|
|
export class AppsMenuComponent {
|
|
public addAppDialog = new DialogModel();
|
|
|
|
public appsMenu = new ModalModel();
|
|
|
|
constructor(
|
|
public readonly appsState: AppsState,
|
|
public readonly uiState: UIState
|
|
) {
|
|
}
|
|
|
|
public trackByApp(index: number, app: AppDto) {
|
|
return app.id;
|
|
}
|
|
}
|