thingsboard/ui-ngx/src/app/modules/home/pages/dashboard/dashboard-page.component.ts

830 lines
25 KiB
TypeScript
Raw Normal View History

///
/// Copyright © 2016-2019 The Thingsboard Authors
///
/// Licensed under the Apache License, Version 2.0 (the "License");
/// you may not use this file except in compliance with the License.
/// You may obtain a copy of the License at
///
/// http://www.apache.org/licenses/LICENSE-2.0
///
/// Unless required by applicable law or agreed to in writing, software
/// distributed under the License is distributed on an "AS IS" BASIS,
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/// See the License for the specific language governing permissions and
/// limitations under the License.
///
2019-09-25 19:37:29 +03:00
import { Component, Inject, OnDestroy, OnInit, ViewEncapsulation, ViewChild, NgZone } from '@angular/core';
import { PageComponent } from '@shared/components/page.component';
import { Store } from '@ngrx/store';
import { AppState } from '@core/core.state';
import { ActivatedRoute, Router } from '@angular/router';
import { UtilsService } from '@core/services/utils.service';
import { AuthService } from '@core/auth/auth.service';
import {
Dashboard,
DashboardConfiguration,
WidgetLayout,
DashboardLayoutInfo,
DashboardLayoutsInfo
} from '@app/shared/models/dashboard.models';
import { WINDOW } from '@core/services/window.service';
import { WindowMessage } from '@shared/models/window-message.model';
import { deepClone, isDefined } from '@app/core/utils';
import {
DashboardContext, DashboardPageLayout,
DashboardPageLayoutContext,
DashboardPageLayouts,
DashboardPageScope, IDashboardController
} from './dashboard-page.models';
import { BreakpointObserver, BreakpointState } from '@angular/cdk/layout';
import { MediaBreakpoints } from '@shared/models/constants';
import { AuthUser } from '@shared/models/user.model';
import { getCurrentAuthUser } from '@core/auth/auth.selectors';
2019-09-25 19:37:29 +03:00
import { Widget, widgetTypesData } from '@app/shared/models/widget.models';
import { environment as env } from '@env/environment';
import { Authority } from '@shared/models/authority.enum';
import { DialogService } from '@core/services/dialog.service';
import { EntityService } from '@core/http/entity.service';
import { AliasController } from '@core/api/alias-controller';
2019-09-25 19:37:29 +03:00
import { Observable, Subscription, of } from 'rxjs';
import { FooterFabButtons } from '@shared/components/footer-fab-buttons.component';
import { IStateController } from '@core/api/widget-api.models';
import { DashboardUtilsService } from '@core/services/dashboard-utils.service';
import { DashboardService } from '@core/http/dashboard.service';
2019-09-25 19:37:29 +03:00
import {
WidgetContextMenuItem,
DashboardContextMenuItem,
IDashboardComponent, WidgetPosition
} from '../../models/dashboard-component.models';
import { WidgetComponentService } from '../../components/widget/widget-component.service';
import { FormBuilder, FormGroup, NgForm } from '@angular/forms';
import { ItemBufferService } from '@core/services/item-buffer.service';
import {
DeviceCredentialsDialogComponent,
DeviceCredentialsDialogData
} from '@home/pages/device/device-credentials-dialog.component';
import { DeviceCredentials } from '@shared/models/device.models';
import { MatDialog } from '@angular/material/dialog';
import {
EntityAliasesDialogComponent,
EntityAliasesDialogData
} from '@home/components/alias/entity-aliases-dialog.component';
import { EntityAliases } from '@app/shared/models/alias.models';
@Component({
selector: 'tb-dashboard-page',
templateUrl: './dashboard-page.component.html',
styleUrls: ['./dashboard-page.component.scss'],
encapsulation: ViewEncapsulation.None
})
export class DashboardPageComponent extends PageComponent implements IDashboardController, OnDestroy {
authUser: AuthUser = getCurrentAuthUser(this.store);
dashboard: Dashboard;
dashboardConfiguration: DashboardConfiguration;
prevDashboard: Dashboard;
iframeMode = this.utils.iframeMode;
widgetEditMode: boolean;
singlePageMode: boolean;
forceFullscreen = this.authService.forceFullscreen;
isFullscreen = false;
isEdit = false;
isEditingWidget = false;
isMobile = !this.breakpointObserver.isMatched(MediaBreakpoints['gt-sm']);
forceDashboardMobileMode = false;
isAddingWidget = false;
isToolbarOpened = false;
isToolbarOpenedAnimate = false;
isRightLayoutOpened = false;
editingWidget: Widget = null;
editingWidgetLayout: WidgetLayout = null;
editingWidgetOriginal: Widget = null;
editingWidgetLayoutOriginal: WidgetLayout = null;
editingWidgetSubtitle: string = null;
editingLayoutCtx: DashboardPageLayoutContext = null;
2019-09-25 19:37:29 +03:00
editingWidgetFormGroup: FormGroup;
thingsboardVersion: string = env.tbVersion;
currentDashboardId: string;
currentCustomerId: string;
currentDashboardScope: DashboardPageScope;
layouts: DashboardPageLayouts = {
main: {
show: false,
layoutCtx: {
id: 'main',
widgets: [],
widgetLayouts: {},
gridSettings: {},
ignoreLoading: false,
2019-09-25 19:37:29 +03:00
ctrl: null,
dashboardCtrl: this
}
},
right: {
show: false,
layoutCtx: {
id: 'right',
widgets: [],
widgetLayouts: {},
gridSettings: {},
ignoreLoading: false,
2019-09-25 19:37:29 +03:00
ctrl: null,
dashboardCtrl: this
}
}
};
dashboardCtx: DashboardContext = {
dashboard: null,
dashboardTimewindow: null,
state: null,
stateController: null,
aliasController: null
};
addWidgetFabButtons: FooterFabButtons = {
fabTogglerName: 'dashboard.add-widget',
fabTogglerIcon: 'add',
buttons: [
{
name: 'dashboard.create-new-widget',
icon: 'insert_drive_file',
onAction: ($event) => {
this.addWidget($event);
}
},
{
name: 'dashboard.import-widget',
icon: 'file_upload',
onAction: ($event) => {
this.importWidget($event);
}
}
]
};
private rxSubscriptions = new Array<Subscription>();
get toolbarOpened(): boolean {
return !this.widgetEditMode &&
(this.toolbarAlwaysOpen() || this.isToolbarOpened || this.isEdit || this.showRightLayoutSwitch());
}
set toolbarOpened(toolbarOpened: boolean) {
}
get rightLayoutOpened(): boolean {
return !this.isMobile || this.isRightLayoutOpened;
}
set rightLayoutOpened(rightLayoutOpened: boolean) {
}
constructor(protected store: Store<AppState>,
@Inject(WINDOW) private window: Window,
private breakpointObserver: BreakpointObserver,
private route: ActivatedRoute,
private router: Router,
private utils: UtilsService,
private dashboardUtils: DashboardUtilsService,
private authService: AuthService,
private entityService: EntityService,
private dialogService: DialogService,
2019-09-25 19:37:29 +03:00
private widgetComponentService: WidgetComponentService,
private dashboardService: DashboardService,
private itembuffer: ItemBufferService,
private fb: FormBuilder,
private dialog: MatDialog) {
super(store);
2019-09-25 19:37:29 +03:00
this.editingWidgetFormGroup = this.fb.group({
widgetConfig: [null]
});
this.rxSubscriptions.push(this.route.data.subscribe(
(data) => {
this.init(data);
}
));
this.rxSubscriptions.push(this.breakpointObserver
.observe(MediaBreakpoints['gt-sm'])
.subscribe((state: BreakpointState) => {
this.isMobile = !state.matches;
}
));
}
private init(data: any) {
this.reset();
this.currentDashboardId = this.route.snapshot.params.dashboardId;
if (this.route.snapshot.params.customerId) {
this.currentCustomerId = this.route.snapshot.params.customerId;
this.currentDashboardScope = 'customer';
} else {
this.currentDashboardScope = this.authUser.authority === Authority.TENANT_ADMIN ? 'tenant' : 'customer';
this.currentCustomerId = this.authUser.customerId;
}
this.dashboard = data.dashboard;
this.dashboardConfiguration = this.dashboard.configuration;
this.widgetEditMode = data.widgetEditMode;
this.singlePageMode = data.singlePageMode;
this.dashboardCtx.dashboard = this.dashboard;
this.dashboardCtx.dashboardTimewindow = this.dashboardConfiguration.timewindow;
this.dashboardCtx.aliasController = new AliasController(this.utils,
this.entityService,
() => this.dashboardCtx.stateController,
this.dashboardConfiguration.entityAliases);
if (this.widgetEditMode) {
const message: WindowMessage = {
type: 'widgetEditModeInited'
};
this.window.parent.postMessage(JSON.stringify(message), '*');
}
}
private reset() {
this.dashboard = null;
this.dashboardConfiguration = null;
this.prevDashboard = null;
this.widgetEditMode = false;
this.singlePageMode = false;
this.isFullscreen = false;
this.isEdit = false;
this.isEditingWidget = false;
this.forceDashboardMobileMode = false;
this.isAddingWidget = false;
this.isToolbarOpened = false;
this.isToolbarOpenedAnimate = false;
this.isRightLayoutOpened = false;
this.editingWidget = null;
this.editingWidgetLayout = null;
this.editingWidgetOriginal = null;
this.editingWidgetLayoutOriginal = null;
this.editingWidgetSubtitle = null;
this.editingLayoutCtx = null;
this.currentDashboardId = null;
this.currentCustomerId = null;
this.currentDashboardScope = null;
2019-09-25 19:37:29 +03:00
this.dashboardCtx.state = null;
}
ngOnDestroy(): void {
this.rxSubscriptions.forEach((subscription) => {
subscription.unsubscribe();
});
this.rxSubscriptions.length = 0;
}
public openToolbar() {
this.isToolbarOpenedAnimate = true;
this.isToolbarOpened = true;
}
public closeToolbar() {
this.isToolbarOpenedAnimate = true;
this.isToolbarOpened = false;
}
public showCloseToolbar() {
return !this.toolbarAlwaysOpen() && !this.isEdit && !this.showRightLayoutSwitch();
}
public hideFullscreenButton(): boolean {
return this.widgetEditMode || this.iframeMode || this.forceFullscreen || this.singlePageMode;
}
public toolbarAlwaysOpen(): boolean {
if (this.dashboard.configuration.settings &&
isDefined(this.dashboard.configuration.settings.toolbarAlwaysOpen)) {
return this.dashboard.configuration.settings.toolbarAlwaysOpen;
} else {
return true;
}
}
public displayTitle(): boolean {
if (this.dashboard.configuration.settings &&
isDefined(this.dashboard.configuration.settings.showTitle)) {
return this.dashboard.configuration.settings.showTitle;
} else {
return false;
}
}
public displayExport(): boolean {
if (this.dashboard.configuration.settings &&
isDefined(this.dashboard.configuration.settings.showDashboardExport)) {
return this.dashboard.configuration.settings.showDashboardExport;
} else {
return true;
}
}
public displayDashboardTimewindow(): boolean {
if (this.dashboard.configuration.settings &&
isDefined(this.dashboard.configuration.settings.showDashboardTimewindow)) {
return this.dashboard.configuration.settings.showDashboardTimewindow;
} else {
return true;
}
}
public displayDashboardsSelect(): boolean {
if (this.dashboard.configuration.settings &&
isDefined(this.dashboard.configuration.settings.showDashboardsSelect)) {
return this.dashboard.configuration.settings.showDashboardsSelect;
} else {
return true;
}
}
public displayEntitiesSelect(): boolean {
if (this.dashboard.configuration.settings &&
isDefined(this.dashboard.configuration.settings.showEntitiesSelect)) {
return this.dashboard.configuration.settings.showEntitiesSelect;
} else {
return true;
}
}
public showRightLayoutSwitch(): boolean {
return this.isMobile && this.layouts.right.show;
}
public toggleLayouts() {
this.isRightLayoutOpened = !this.isRightLayoutOpened;
}
public openRightLayout() {
this.isRightLayoutOpened = true;
}
public mainLayoutWidth(): string {
if (this.isEditingWidget && this.editingLayoutCtx.id === 'main') {
return '100%';
} else {
return this.layouts.right.show && !this.isMobile ? '50%' : '100%';
}
}
public mainLayoutHeight(): string {
if (!this.isEditingWidget || this.editingLayoutCtx.id === 'main') {
return '100%';
} else {
return '0px';
}
}
public rightLayoutWidth(): string {
if (this.isEditingWidget && this.editingLayoutCtx.id === 'right') {
return '100%';
} else {
return this.isMobile ? '100%' : '50%';
}
}
public rightLayoutHeight(): string {
if (!this.isEditingWidget || this.editingLayoutCtx.id === 'right') {
return '100%';
} else {
return '0px';
}
}
public isPublicUser(): boolean {
return this.authUser.isPublic;
}
public isTenantAdmin(): boolean {
return this.authUser.authority === Authority.TENANT_ADMIN;
}
public isSystemAdmin(): boolean {
return this.authUser.authority === Authority.SYS_ADMIN;
}
public exportDashboard($event: Event) {
if ($event) {
$event.stopPropagation();
}
// TODO:
this.dialogService.todo();
}
public openEntityAliases($event: Event) {
if ($event) {
$event.stopPropagation();
}
this.dialog.open<EntityAliasesDialogComponent, EntityAliasesDialogData,
EntityAliases>(EntityAliasesDialogComponent, {
disableClose: true,
panelClass: ['tb-dialog', 'tb-fullscreen-dialog'],
data: {
entityAliases: deepClone(this.dashboard.configuration.entityAliases),
widgets: this.dashboardUtils.getWidgetsArray(this.dashboard),
isSingleEntityAlias: false
}
}).afterClosed().subscribe((entityAliases) => {
if (entityAliases) {
this.dashboard.configuration.entityAliases = entityAliases;
this.entityAliasesUpdated();
}
});
}
public openDashboardSettings($event: Event) {
if ($event) {
$event.stopPropagation();
}
// TODO:
this.dialogService.todo();
}
public manageDashboardStates($event: Event) {
if ($event) {
$event.stopPropagation();
}
// TODO:
this.dialogService.todo();
}
public manageDashboardLayouts($event: Event) {
if ($event) {
$event.stopPropagation();
}
// TODO:
this.dialogService.todo();
}
private importWidget($event: Event) {
if ($event) {
$event.stopPropagation();
}
// TODO:
this.dialogService.todo();
}
public currentDashboardIdChanged(dashboardId: string) {
if (!this.widgetEditMode) {
if (this.currentDashboardScope === 'customer' && this.authUser.authority === Authority.TENANT_ADMIN) {
this.router.navigateByUrl(`customers/${this.currentCustomerId}/dashboards/${dashboardId}`);
} else {
if (this.singlePageMode) {
this.router.navigateByUrl(`dashboard/${dashboardId}`);
} else {
this.router.navigateByUrl(`dashboards/${dashboardId}`);
}
}
}
}
public toggleDashboardEditMode() {
this.setEditMode(!this.isEdit, true);
}
public saveDashboard() {
this.setEditMode(false, false);
this.notifyDashboardUpdated();
}
public openDashboardState(state: string, openRightLayout: boolean) {
const layoutsData = this.dashboardUtils.getStateLayoutsData(this.dashboard, state);
if (layoutsData) {
this.dashboardCtx.state = state;
this.dashboardCtx.aliasController.dashboardStateChanged();
let layoutVisibilityChanged = false;
for (const l of Object.keys(this.layouts)) {
const layout: DashboardPageLayout = this.layouts[l];
let showLayout;
if (layoutsData[l]) {
showLayout = true;
} else {
showLayout = false;
}
if (layout.show !== showLayout) {
layout.show = showLayout;
layoutVisibilityChanged = !this.isMobile;
}
}
this.isRightLayoutOpened = openRightLayout ? true : false;
this.updateLayouts(layoutsData, layoutVisibilityChanged);
}
}
private updateLayouts(layoutsData: DashboardLayoutsInfo, layoutVisibilityChanged: boolean) {
for (const l of Object.keys(this.layouts)) {
const layout: DashboardPageLayout = this.layouts[l];
if (layoutsData[l]) {
const layoutInfo: DashboardLayoutInfo = layoutsData[l];
if (layout.layoutCtx.id === 'main') {
layout.layoutCtx.ctrl.setResizing(layoutVisibilityChanged);
}
this.updateLayout(layout, layoutInfo);
} else {
this.updateLayout(layout, {widgets: [], widgetLayouts: {}, gridSettings: null});
}
}
}
private updateLayout(layout: DashboardPageLayout, layoutInfo: DashboardLayoutInfo) {
if (layoutInfo.gridSettings) {
layout.layoutCtx.gridSettings = layoutInfo.gridSettings;
}
layout.layoutCtx.widgets = layoutInfo.widgets;
layout.layoutCtx.widgetLayouts = layoutInfo.widgetLayouts;
if (layout.show && layout.layoutCtx.ctrl) {
layout.layoutCtx.ctrl.reload();
}
layout.layoutCtx.ignoreLoading = true;
}
private setEditMode(isEdit: boolean, revert: boolean) {
this.isEdit = isEdit;
if (this.isEdit) {
this.dashboardCtx.stateController.preserveState();
this.prevDashboard = deepClone(this.dashboard);
} else {
if (this.widgetEditMode) {
if (revert) {
this.dashboard = this.prevDashboard;
}
} else {
this.resetHighlight();
if (revert) {
this.dashboard = this.prevDashboard;
this.dashboardConfiguration = this.dashboard.configuration;
this.dashboardCtx.dashboardTimewindow = this.dashboardConfiguration.timewindow;
this.entityAliasesUpdated();
} else {
this.dashboard.configuration.timewindow = this.dashboardCtx.dashboardTimewindow;
}
}
}
}
private resetHighlight() {
for (const l of Object.keys(this.layouts)) {
if (this.layouts[l].layoutCtx) {
if (this.layouts[l].layoutCtx.ctrl) {
this.layouts[l].layoutCtx.ctrl.resetHighlight();
}
}
}
}
private entityAliasesUpdated() {
this.dashboardCtx.aliasController.updateEntityAliases(this.dashboard.configuration.entityAliases);
}
private notifyDashboardUpdated() {
if (this.widgetEditMode) {
const widget = this.layouts.main.layoutCtx.widgets[0];
const layout = this.layouts.main.layoutCtx.widgetLayouts[widget.id];
widget.sizeX = layout.sizeX;
widget.sizeY = layout.sizeY;
const message: WindowMessage = {
type: 'widgetEditUpdated',
data: widget
};
this.window.parent.postMessage(JSON.stringify(message), '*');
} else {
2019-09-25 19:37:29 +03:00
this.dashboardService.saveDashboard(this.dashboard).subscribe();
}
}
helpLinkIdForWidgetType(): string {
let link = 'widgetsConfig';
if (this.editingWidget && this.editingWidget.type) {
link = widgetTypesData.get(this.editingWidget.type).configHelpLinkId;
}
return link;
}
addWidget($event: Event, layoutCtx?: DashboardPageLayoutContext) {
if ($event) {
$event.stopPropagation();
}
// TODO:
this.dialogService.todo();
}
onRevertWidgetEdit() {
if (this.editingWidgetFormGroup.dirty) {
this.editingWidgetFormGroup.markAsPristine();
this.editingWidget = deepClone(this.editingWidgetOriginal);
this.editingWidgetLayout = deepClone(this.editingWidgetLayoutOriginal);
}
}
saveWidget() {
this.editingWidgetFormGroup.markAsPristine();
const widget = deepClone(this.editingWidget);
const widgetLayout = deepClone(this.editingWidgetLayout);
const id = this.editingWidgetOriginal.id;
const index = this.editingLayoutCtx.widgets.indexOf(this.editingWidgetOriginal);
this.dashboardConfiguration.widgets[id] = widget;
this.editingWidgetOriginal = widget;
this.editingWidgetLayoutOriginal = widgetLayout;
this.editingLayoutCtx.widgets[index] = widget;
this.editingLayoutCtx.widgetLayouts[widget.id] = widgetLayout;
this.editingLayoutCtx.ctrl.highlightWidget(index, 0);
}
onEditWidgetClosed() {
this.editingWidgetOriginal = null;
this.editingWidget = null;
this.editingWidgetLayoutOriginal = null;
this.editingWidgetLayout = null;
this.editingLayoutCtx = null;
this.editingWidgetSubtitle = null;
this.isEditingWidget = false;
this.resetHighlight();
this.forceDashboardMobileMode = false;
}
editWidget($event: Event, layoutCtx: DashboardPageLayoutContext, widget: Widget, index: number) {
$event.stopPropagation();
if (this.editingWidgetOriginal === widget) {
this.onEditWidgetClosed();
} else {
const transition = !this.forceDashboardMobileMode;
this.editingWidgetOriginal = widget;
this.editingWidgetLayoutOriginal = layoutCtx.widgetLayouts[widget.id];
this.editingWidget = deepClone(this.editingWidgetOriginal);
this.editingWidgetLayout = deepClone(this.editingWidgetLayoutOriginal);
this.editingLayoutCtx = layoutCtx;
this.editingWidgetSubtitle = this.widgetComponentService.getInstantWidgetInfo(this.editingWidget).widgetName;
this.forceDashboardMobileMode = true;
this.isEditingWidget = true;
if (layoutCtx) {
const delayOffset = transition ? 350 : 0;
const delay = transition ? 400 : 300;
setTimeout(() => {
layoutCtx.ctrl.highlightWidget(index, delay);
}, delayOffset);
}
}
}
copyWidget($event: Event, layoutCtx: DashboardPageLayoutContext, widget: Widget) {
// TODO:
this.dialogService.todo();
}
copyWidgetReference($event: Event, layoutCtx: DashboardPageLayoutContext, widget: Widget) {
// TODO:
this.dialogService.todo();
}
pasteWidget($event: Event, layoutCtx: DashboardPageLayoutContext, pos: WidgetPosition) {
// TODO:
this.dialogService.todo();
}
pasteWidgetReference($event: Event, layoutCtx: DashboardPageLayoutContext, pos: WidgetPosition) {
// TODO:
this.dialogService.todo();
}
removeWidget($event: Event, layoutCtx: DashboardPageLayoutContext, widget: Widget) {
// TODO:
this.dialogService.todo();
}
exportWidget($event: Event, layoutCtx: DashboardPageLayoutContext, widget: Widget, index: number) {
$event.stopPropagation();
// TODO:
this.dialogService.todo();
}
widgetClicked($event: Event, layoutCtx: DashboardPageLayoutContext, widget: Widget, index: number) {
if (this.isEditingWidget) {
this.editWidget($event, layoutCtx, widget, index);
}
}
widgetMouseDown($event: Event, layoutCtx: DashboardPageLayoutContext, widget: Widget, index: number) {
if (this.isEdit && !this.isEditingWidget) {
layoutCtx.ctrl.selectWidget(index, 0);
}
}
prepareDashboardContextMenu(layoutCtx: DashboardPageLayoutContext): Array<DashboardContextMenuItem> {
const dashboardContextActions: Array<DashboardContextMenuItem> = [];
if (this.isEdit && !this.isEditingWidget && !this.widgetEditMode) {
dashboardContextActions.push(
{
action: this.openDashboardSettings.bind(this),
enabled: true,
value: 'dashboard.settings',
icon: 'settings'
}
);
dashboardContextActions.push(
{
action: this.openEntityAliases.bind(this),
enabled: true,
value: 'entity.aliases',
icon: 'devices_other'
}
);
dashboardContextActions.push(
{
action: ($event) => {
layoutCtx.ctrl.pasteWidget($event);
},
enabled: this.itembuffer.hasWidget(),
value: 'action.paste',
icon: 'content_paste',
shortcut: 'M-V'
}
);
dashboardContextActions.push(
{
action: ($event) => {
layoutCtx.ctrl.pasteWidgetReference($event);
},
enabled: this.itembuffer.canPasteWidgetReference(this.dashboard, this.dashboardCtx.state, layoutCtx.id),
value: 'action.paste-reference',
icon: 'content_paste',
shortcut: 'M-I'
}
);
}
return dashboardContextActions;
}
prepareWidgetContextMenu(layoutCtx: DashboardPageLayoutContext, widget: Widget, index: number): Array<WidgetContextMenuItem> {
const widgetContextActions: Array<WidgetContextMenuItem> = [];
if (this.isEdit && !this.isEditingWidget) {
widgetContextActions.push(
{
action: (event, currentWidget) => {
this.editWidget(event, layoutCtx, currentWidget, index);
},
enabled: true,
value: 'action.edit',
icon: 'edit'
}
);
if (!this.widgetEditMode) {
widgetContextActions.push(
{
action: (event, currentWidget) => {
this.copyWidget(event, layoutCtx, currentWidget);
},
enabled: true,
value: 'action.copy',
icon: 'content_copy',
shortcut: 'M-C'
}
);
widgetContextActions.push(
{
action: (event, currentWidget) => {
this.copyWidgetReference(event, layoutCtx, currentWidget);
},
enabled: true,
value: 'action.copy-reference',
icon: 'content_copy',
shortcut: 'M-R'
}
);
widgetContextActions.push(
{
action: (event, currentWidget) => {
this.removeWidget(event, layoutCtx, currentWidget);
},
enabled: true,
value: 'action.delete',
icon: 'clear',
shortcut: 'M-X'
}
);
}
}
2019-09-25 19:37:29 +03:00
return widgetContextActions;
}
}