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.
43 lines
1.0 KiB
43 lines
1.0 KiB
/*
|
|
* Squidex Headless CMS
|
|
*
|
|
* @license
|
|
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
|
|
*/
|
|
|
|
import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';
|
|
import { equalsQuery, Query, SavedQuery } from '@app/shared/internal';
|
|
|
|
@Component({
|
|
selector: 'sqx-query-list',
|
|
styleUrls: ['./query-list.component.scss'],
|
|
templateUrl: './query-list.component.html',
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
|
})
|
|
export class QueryListComponent {
|
|
@Output()
|
|
public search = new EventEmitter<Query>();
|
|
|
|
@Output()
|
|
public remove = new EventEmitter<SavedQuery>();
|
|
|
|
@Input()
|
|
public queryUsed?: Query;
|
|
|
|
@Input()
|
|
public queries: ReadonlyArray<SavedQuery>;
|
|
|
|
@Input()
|
|
public canRemove: boolean;
|
|
|
|
@Input()
|
|
public types: string;
|
|
|
|
public isSelectedQuery(saved: SavedQuery) {
|
|
return equalsQuery(saved.query, this.queryUsed);
|
|
}
|
|
|
|
public trackByQuery(_index: number, query: SavedQuery) {
|
|
return query.name;
|
|
}
|
|
}
|