dees-wcctools/ts_web/elements/wcc-dashboard.ts

176 lines
5.2 KiB
TypeScript
Raw Permalink Normal View History

2020-05-11 00:36:58 +00:00
import { LitElement, property, html, customElement, TemplateResult } from 'lit-element';
2020-06-01 15:07:13 +00:00
import * as plugins from '../wcctools.plugins';
2020-05-27 22:13:50 +00:00
2020-05-11 00:36:58 +00:00
import { WccDefaultElement } from './wcc-defaultelement';
// wcc tools
import './wcc-frame';
import './wcc-sidebar';
import './wcc-properties';
2020-11-26 02:28:17 +00:00
import { TTheme } from './wcc-properties';
import { TElementType } from './wcc-sidebar';
import { TViewport } from '@designestate/dees-domtools/dist_ts/domtools.breakpoints';
2020-05-11 00:36:58 +00:00
@customElement('wcc-dashboard')
export class WccDashboard extends LitElement {
2020-07-15 19:55:35 +00:00
public domtools: plugins.deesDomtools.DomTools;
2020-11-26 02:28:17 +00:00
@property()
public selectedType: TElementType;
2020-05-11 00:36:58 +00:00
@property()
2020-06-01 13:18:51 +00:00
public selectedItem: TemplateResult | LitElement;
2020-05-11 00:36:58 +00:00
@property()
2020-06-01 15:07:13 +00:00
public selectedViewport: plugins.deesDomtools.breakpoints.TViewport = 'desktop';
2020-05-11 00:36:58 +00:00
2020-11-26 02:28:17 +00:00
@property()
public selectedTheme: TTheme = 'dark';
2020-05-11 00:36:58 +00:00
@property()
2020-05-23 14:00:49 +00:00
public pages: { [key: string]: TemplateResult } = {};
2020-05-11 00:36:58 +00:00
@property()
2020-05-23 14:00:49 +00:00
public elements: { [key: string]: LitElement } = {};
2020-05-11 00:36:58 +00:00
2020-05-24 19:37:43 +00:00
@property()
public warning: string = null;
2020-11-26 02:28:17 +00:00
constructor(
elementsArg?: { [key: string]: LitElement },
pagesArg?: { [key: string]: TemplateResult }
) {
2020-05-11 00:36:58 +00:00
super();
2020-05-23 14:00:49 +00:00
if (elementsArg) {
this.elements = elementsArg;
2020-11-26 02:28:17 +00:00
console.log('got elements:');
console.log(this.elements);
2020-05-23 14:00:49 +00:00
}
if (pagesArg) {
this.pages = pagesArg;
}
2020-05-11 00:36:58 +00:00
}
public render(): TemplateResult {
return html`
<style>
@import url('https://fonts.googleapis.com/css?family=Roboto');
:host {
font-family: 'Roboto', sans-serif;
background: #fcfcfc;
display: block;
box-sizing: border-box;
}
:host([hidden]) {
display: none;
}
</style>
2020-11-26 02:28:17 +00:00
<wcc-sidebar
.dashboardRef=${this}
.selectedItem=${this.selectedItem}
@selectedItem=${(eventArg) => {
this.selectedItem = eventArg.detail;
}}
@selectedType=${(eventArg) => {
this.selectedType = eventArg.detail;
}}
></wcc-sidebar>
<wcc-properties
.dashboardRef=${this}
.warning="${this.warning}"
.selectedItem=${this.selectedItem}
2020-11-26 02:50:50 +00:00
.selectedViewport=${this.selectedViewport}
.selectedTheme=${this.selectedTheme}
2020-11-26 02:28:17 +00:00
@selectedViewport=${(eventArg) => {
this.selectedViewport = eventArg.detail;
this.performUpdate();
}}
@selectedTheme=${(eventArg) => {
this.selectedTheme = eventArg.detail;
}}
></wcc-properties>
2020-05-11 00:36:58 +00:00
<wcc-frame id="wccFrame" viewport=${this.selectedViewport}>
${(() => {
if (this.selectedItem instanceof TemplateResult) {
return this.selectedItem;
} else if (this.selectedItem) {
2020-11-26 02:28:17 +00:00
// console.log(this.selectedItem);
2020-05-11 00:36:58 +00:00
const anonItem: any = this.selectedItem;
2020-05-24 19:37:43 +00:00
if (!anonItem.demo) {
this.setWarning(`component ${anonItem.name} does not expose a demo property.`);
return;
2020-05-11 00:36:58 +00:00
}
2020-05-24 19:37:43 +00:00
if (!(typeof anonItem.demo === 'function')) {
2020-11-26 02:28:17 +00:00
this.setWarning(
`component ${anonItem.name} has demo property, but it is not of type function`
);
2020-05-24 19:37:43 +00:00
return;
}
this.setWarning(null);
return html`${anonItem.demo()}`;
2020-05-11 00:36:58 +00:00
}
})()}
</wcc-frame>
`;
}
2020-05-24 19:37:43 +00:00
public setWarning(warningTextArg: string) {
if (this.warning !== warningTextArg) {
console.log(warningTextArg);
this.warning = warningTextArg;
setTimeout(() => {
super.performUpdate();
}, 0);
}
}
2020-07-15 21:00:47 +00:00
public async firstUpdated() {
this.domtools = await plugins.deesDomtools.DomTools.setupDomTools();
2020-11-26 02:28:17 +00:00
this.domtools.router.on('/:itemType/:itemName/:viewport/:theme', async (routeInfo) => {
if (routeInfo.params.itemType === 'element') {
this.selectedType = 'element';
this.selectedItem = this.elements[routeInfo.params.itemName];
} else if (routeInfo.params.itemType === 'page') {
this.selectedType = 'page';
this.selectedItem = this.pages[routeInfo.params.pageName];
}
const domtoolsInstance = await plugins.deesDomtools.elementBasic.setup();
domtoolsInstance.setVirtualViewport(routeInfo.params.viewport as TViewport);
this.selectedViewport = routeInfo.params.viewport as TViewport;
this.selectedTheme = routeInfo.params.theme as TTheme;
2020-11-26 02:50:50 +00:00
domtoolsInstance.themeManager.goBrightBoolean = this.selectedTheme === 'bright';
2020-07-15 21:00:47 +00:00
});
2020-11-26 02:28:17 +00:00
}
2020-07-15 21:00:47 +00:00
2020-11-26 02:28:17 +00:00
private updating = false;
public async updated() {
if (this.updating) {
return;
}
this.domtools = await plugins.deesDomtools.DomTools.setupDomTools();
await this.domtools.router._handleRouteState();
this.updating = true;
const storeElement = this.selectedItem;
setTimeout(async () => {
this.selectedItem = null;
setTimeout(async () => {
this.selectedItem = storeElement;
setTimeout(() => {
this.updating = false;
}, 0);
});
}, 0);
}
public buildUrl() {
this.domtools.router.pushUrl(
`/${this.selectedType}/${(this.selectedItem as any).name}/${this.selectedViewport}/${
this.selectedTheme
}`,
0
);
2020-07-15 21:00:47 +00:00
}
2020-05-11 00:36:58 +00:00
}