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.
39 lines
1.0 KiB
39 lines
1.0 KiB
/*
|
|
* Squidex Headless CMS
|
|
*
|
|
* @license
|
|
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
|
|
*/
|
|
|
|
import { ChangeDetectionStrategy, Component, inject, OnDestroy, OnInit } from '@angular/core';
|
|
import markerSDK, { MarkerSdk } from '@marker.io/browser';
|
|
import { UIOptions } from '@app/shared';
|
|
|
|
@Component({
|
|
selector: 'sqx-feedback-menu',
|
|
styleUrls: ['./feedback-menu.component.scss'],
|
|
templateUrl: './feedback-menu.component.html',
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
})
|
|
export class FeedbackMenuComponent implements OnInit, OnDestroy {
|
|
private widget?: MarkerSdk;
|
|
|
|
public readonly markerProject = inject(UIOptions).value.markerProject;
|
|
|
|
public ngOnDestroy() {
|
|
this.widget?.unload();
|
|
}
|
|
|
|
public async ngOnInit() {
|
|
if (!this.markerProject) {
|
|
return;
|
|
}
|
|
|
|
this.widget = await markerSDK.loadWidget({ project: this.markerProject });
|
|
this.widget.hide();
|
|
}
|
|
|
|
public capture() {
|
|
this.widget?.capture('fullscreen');
|
|
}
|
|
}
|
|
|