2019-11-13 07:00:25 +00:00
|
|
|
import { WidgetType, RenderMode } from "constants/WidgetConstants";
|
2019-09-17 10:11:50 +00:00
|
|
|
import {
|
|
|
|
|
WidgetBuilder,
|
|
|
|
|
WidgetProps,
|
|
|
|
|
WidgetDataProps,
|
2020-04-13 08:24:13 +00:00
|
|
|
WidgetState,
|
2019-11-13 07:00:25 +00:00
|
|
|
} from "widgets/BaseWidget";
|
2020-03-16 07:59:07 +00:00
|
|
|
import {
|
|
|
|
|
WidgetPropertyValidationType,
|
|
|
|
|
BASE_WIDGET_VALIDATION,
|
|
|
|
|
} from "./ValidationFactory";
|
2020-03-06 09:45:21 +00:00
|
|
|
import React from "react";
|
2019-02-10 13:06:05 +00:00
|
|
|
|
2020-01-17 09:28:26 +00:00
|
|
|
type WidgetDerivedPropertyType = any;
|
|
|
|
|
export type DerivedPropertiesMap = Record<string, string>;
|
2020-02-18 10:41:52 +00:00
|
|
|
export type TriggerPropertiesMap = Record<string, true>;
|
2020-01-17 09:28:26 +00:00
|
|
|
|
2019-02-10 13:06:05 +00:00
|
|
|
class WidgetFactory {
|
2020-04-13 08:24:13 +00:00
|
|
|
static widgetMap: Map<
|
|
|
|
|
WidgetType,
|
|
|
|
|
WidgetBuilder<WidgetProps, WidgetState>
|
|
|
|
|
> = new Map();
|
2019-11-19 12:44:58 +00:00
|
|
|
static widgetPropValidationMap: Map<
|
|
|
|
|
WidgetType,
|
|
|
|
|
WidgetPropertyValidationType
|
|
|
|
|
> = new Map();
|
2020-01-17 09:28:26 +00:00
|
|
|
static widgetDerivedPropertiesGetterMap: Map<
|
|
|
|
|
WidgetType,
|
|
|
|
|
WidgetDerivedPropertyType
|
|
|
|
|
> = new Map();
|
|
|
|
|
static derivedPropertiesMap: Map<
|
|
|
|
|
WidgetType,
|
|
|
|
|
DerivedPropertiesMap
|
|
|
|
|
> = new Map();
|
2020-02-18 10:41:52 +00:00
|
|
|
static triggerPropertiesMap: Map<
|
|
|
|
|
WidgetType,
|
|
|
|
|
TriggerPropertiesMap
|
|
|
|
|
> = new Map();
|
2020-04-17 16:15:09 +00:00
|
|
|
static defaultPropertiesMap: Map<
|
|
|
|
|
WidgetType,
|
|
|
|
|
Record<string, string>
|
|
|
|
|
> = new Map();
|
|
|
|
|
static metaPropertiesMap: Map<WidgetType, Record<string, any>> = new Map();
|
2019-09-09 09:08:54 +00:00
|
|
|
|
|
|
|
|
static registerWidgetBuilder(
|
|
|
|
|
widgetType: WidgetType,
|
2020-04-13 08:24:13 +00:00
|
|
|
widgetBuilder: WidgetBuilder<WidgetProps, WidgetState>,
|
2019-11-19 12:44:58 +00:00
|
|
|
widgetPropertyValidation: WidgetPropertyValidationType,
|
2020-01-17 09:28:26 +00:00
|
|
|
derivedPropertiesMap: DerivedPropertiesMap,
|
2020-02-18 10:41:52 +00:00
|
|
|
triggerPropertiesMap: TriggerPropertiesMap,
|
2020-04-17 16:15:09 +00:00
|
|
|
defaultPropertiesMap: Record<string, string>,
|
|
|
|
|
metaPropertiesMap: Record<string, any>,
|
2019-09-09 09:08:54 +00:00
|
|
|
) {
|
|
|
|
|
this.widgetMap.set(widgetType, widgetBuilder);
|
2019-11-19 12:44:58 +00:00
|
|
|
this.widgetPropValidationMap.set(widgetType, widgetPropertyValidation);
|
2020-01-17 09:28:26 +00:00
|
|
|
this.derivedPropertiesMap.set(widgetType, derivedPropertiesMap);
|
2020-02-18 10:41:52 +00:00
|
|
|
this.triggerPropertiesMap.set(widgetType, triggerPropertiesMap);
|
2020-04-17 16:15:09 +00:00
|
|
|
this.defaultPropertiesMap.set(widgetType, defaultPropertiesMap);
|
|
|
|
|
this.metaPropertiesMap.set(widgetType, metaPropertiesMap);
|
2019-09-09 09:08:54 +00:00
|
|
|
}
|
|
|
|
|
|
2019-09-17 10:11:50 +00:00
|
|
|
static createWidget(
|
|
|
|
|
widgetData: WidgetDataProps,
|
|
|
|
|
renderMode: RenderMode,
|
2020-03-06 09:45:21 +00:00
|
|
|
): React.ReactNode {
|
2019-09-17 10:11:50 +00:00
|
|
|
const widgetProps: WidgetProps = {
|
|
|
|
|
key: widgetData.widgetId,
|
2019-11-06 12:12:41 +00:00
|
|
|
isVisible: true,
|
2019-09-21 01:52:38 +00:00
|
|
|
...widgetData,
|
2019-11-06 12:12:41 +00:00
|
|
|
renderMode: renderMode,
|
2019-09-17 10:11:50 +00:00
|
|
|
};
|
2019-09-17 10:09:00 +00:00
|
|
|
const widgetBuilder = this.widgetMap.get(widgetData.type);
|
2019-09-17 10:11:50 +00:00
|
|
|
if (widgetBuilder) {
|
2019-11-19 12:44:58 +00:00
|
|
|
// TODO validate props here
|
2019-09-17 10:11:50 +00:00
|
|
|
const widget = widgetBuilder.buildWidget(widgetProps);
|
|
|
|
|
return widget;
|
|
|
|
|
} else {
|
2019-09-09 09:08:54 +00:00
|
|
|
const ex: WidgetCreationException = {
|
|
|
|
|
message:
|
2019-09-17 10:09:00 +00:00
|
|
|
"Widget Builder not registered for widget type" + widgetData.type,
|
2019-09-09 09:08:54 +00:00
|
|
|
};
|
2020-03-06 09:45:21 +00:00
|
|
|
console.error(ex);
|
|
|
|
|
return null;
|
2019-04-02 16:12:08 +00:00
|
|
|
}
|
2019-09-09 09:08:54 +00:00
|
|
|
}
|
2019-04-02 16:12:08 +00:00
|
|
|
|
2019-09-09 09:08:54 +00:00
|
|
|
static getWidgetTypes(): WidgetType[] {
|
|
|
|
|
return Array.from(this.widgetMap.keys());
|
|
|
|
|
}
|
2019-11-19 12:44:58 +00:00
|
|
|
|
|
|
|
|
static getWidgetPropertyValidationMap(
|
|
|
|
|
widgetType: WidgetType,
|
|
|
|
|
): WidgetPropertyValidationType {
|
|
|
|
|
const map = this.widgetPropValidationMap.get(widgetType);
|
|
|
|
|
if (!map) {
|
|
|
|
|
console.error("Widget type validation is not defined");
|
2020-03-16 07:59:07 +00:00
|
|
|
return BASE_WIDGET_VALIDATION;
|
2019-11-19 12:44:58 +00:00
|
|
|
}
|
|
|
|
|
return map;
|
|
|
|
|
}
|
2020-01-17 09:28:26 +00:00
|
|
|
|
|
|
|
|
static getWidgetDerivedPropertiesMap(
|
|
|
|
|
widgetType: WidgetType,
|
|
|
|
|
): DerivedPropertiesMap {
|
|
|
|
|
const map = this.derivedPropertiesMap.get(widgetType);
|
|
|
|
|
if (!map) {
|
|
|
|
|
console.error("Widget type validation is not defined");
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
return map;
|
|
|
|
|
}
|
2020-02-18 10:41:52 +00:00
|
|
|
|
|
|
|
|
static getWidgetTriggerPropertiesMap(
|
|
|
|
|
widgetType: WidgetType,
|
|
|
|
|
): TriggerPropertiesMap {
|
|
|
|
|
const map = this.triggerPropertiesMap.get(widgetType);
|
|
|
|
|
if (!map) {
|
|
|
|
|
console.error("Widget trigger map is not defined");
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
return map;
|
|
|
|
|
}
|
2020-04-17 16:15:09 +00:00
|
|
|
|
|
|
|
|
static getWidgetDefaultPropertiesMap(
|
|
|
|
|
widgetType: WidgetType,
|
|
|
|
|
): Record<string, string> {
|
|
|
|
|
const map = this.defaultPropertiesMap.get(widgetType);
|
|
|
|
|
if (!map) {
|
|
|
|
|
console.error("Widget default properties not defined");
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
return map;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static getWidgetMetaPropertiesMap(
|
|
|
|
|
widgetType: WidgetType,
|
|
|
|
|
): Record<string, any> {
|
|
|
|
|
const map = this.metaPropertiesMap.get(widgetType);
|
|
|
|
|
if (!map) {
|
|
|
|
|
console.error("Widget meta properties not defined");
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
return map;
|
|
|
|
|
}
|
2019-02-10 13:06:05 +00:00
|
|
|
}
|
|
|
|
|
|
2019-08-29 11:22:09 +00:00
|
|
|
export interface WidgetCreationException {
|
2019-09-09 09:08:54 +00:00
|
|
|
message: string;
|
2019-02-10 13:06:05 +00:00
|
|
|
}
|
|
|
|
|
|
2019-09-09 09:08:54 +00:00
|
|
|
export default WidgetFactory;
|