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-06 09:45:21 +00:00
|
|
|
import React from "react";
|
2021-02-16 10:29:08 +00:00
|
|
|
import {
|
|
|
|
|
PropertyPaneConfig,
|
|
|
|
|
PropertyPaneControlConfig,
|
2021-07-26 05:50:46 +00:00
|
|
|
ValidationConfig,
|
2021-02-16 10:29:08 +00:00
|
|
|
} from "constants/PropertyControlConstants";
|
|
|
|
|
import { generateReactKey } from "./generators";
|
2021-07-26 05:50:46 +00:00
|
|
|
import { ValidationTypes } from "constants/WidgetValidation";
|
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>;
|
2021-02-16 10:29:08 +00:00
|
|
|
|
|
|
|
|
// TODO (abhinav): To enforce the property pane config structure in this function
|
|
|
|
|
// Throw an error if the config is not of the desired format.
|
|
|
|
|
const addPropertyConfigIds = (config: PropertyPaneConfig[]) => {
|
|
|
|
|
return config.map((sectionOrControlConfig: PropertyPaneConfig) => {
|
|
|
|
|
sectionOrControlConfig.id = generateReactKey();
|
|
|
|
|
if (sectionOrControlConfig.children) {
|
|
|
|
|
sectionOrControlConfig.children = addPropertyConfigIds(
|
|
|
|
|
sectionOrControlConfig.children,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
const config = sectionOrControlConfig as PropertyPaneControlConfig;
|
|
|
|
|
if (
|
|
|
|
|
config.panelConfig &&
|
|
|
|
|
config.panelConfig.children &&
|
|
|
|
|
Array.isArray(config.panelConfig.children)
|
|
|
|
|
) {
|
|
|
|
|
config.panelConfig.children = addPropertyConfigIds(
|
|
|
|
|
config.panelConfig.children,
|
|
|
|
|
);
|
2020-01-17 09:28:26 +00:00
|
|
|
|
2021-02-16 10:29:08 +00:00
|
|
|
(sectionOrControlConfig as PropertyPaneControlConfig) = config;
|
|
|
|
|
}
|
|
|
|
|
return sectionOrControlConfig;
|
|
|
|
|
});
|
|
|
|
|
};
|
2021-07-26 05:50:46 +00:00
|
|
|
|
|
|
|
|
function validatePropertyPaneConfig(config: PropertyPaneConfig[]) {
|
|
|
|
|
return config.map((sectionOrControlConfig: PropertyPaneConfig) => {
|
|
|
|
|
if (sectionOrControlConfig.children) {
|
|
|
|
|
sectionOrControlConfig.children = sectionOrControlConfig.children.map(
|
|
|
|
|
validatePropertyControl,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
return sectionOrControlConfig;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function validatePropertyControl(
|
|
|
|
|
config: PropertyPaneConfig,
|
|
|
|
|
): PropertyPaneConfig {
|
|
|
|
|
const _config = config as PropertyPaneControlConfig;
|
|
|
|
|
if (_config.validation !== undefined) {
|
|
|
|
|
_config.validation = validateValidationStructure(_config.validation);
|
|
|
|
|
}
|
|
|
|
|
if (_config.children) {
|
|
|
|
|
_config.children = _config.children.map(validatePropertyControl);
|
|
|
|
|
}
|
|
|
|
|
return _config;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function validateValidationStructure(
|
|
|
|
|
config: ValidationConfig,
|
|
|
|
|
): ValidationConfig {
|
|
|
|
|
// Todo(abhinav): This only checks for top level params. Throwing nothing here.
|
|
|
|
|
if (
|
|
|
|
|
config.type === ValidationTypes.FUNCTION &&
|
|
|
|
|
config.params &&
|
|
|
|
|
config.params.fn
|
|
|
|
|
) {
|
|
|
|
|
config.params.fnString = config.params.fn.toString();
|
|
|
|
|
if (!config.params.expected)
|
|
|
|
|
console.error(
|
|
|
|
|
`Error in configuration ${JSON.stringify(config)}: For a ${
|
|
|
|
|
ValidationTypes.FUNCTION
|
|
|
|
|
} type validation, expected type and example are mandatory`,
|
|
|
|
|
);
|
|
|
|
|
delete config.params.fn;
|
|
|
|
|
}
|
|
|
|
|
return config;
|
|
|
|
|
}
|
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();
|
2020-01-17 09:28:26 +00:00
|
|
|
static widgetDerivedPropertiesGetterMap: Map<
|
|
|
|
|
WidgetType,
|
|
|
|
|
WidgetDerivedPropertyType
|
|
|
|
|
> = new Map();
|
|
|
|
|
static derivedPropertiesMap: Map<
|
|
|
|
|
WidgetType,
|
|
|
|
|
DerivedPropertiesMap
|
|
|
|
|
> = 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();
|
2021-02-16 10:29:08 +00:00
|
|
|
static propertyPaneConfigsMap: Map<
|
|
|
|
|
WidgetType,
|
|
|
|
|
readonly PropertyPaneConfig[]
|
|
|
|
|
> = 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>,
|
2020-01-17 09:28:26 +00:00
|
|
|
derivedPropertiesMap: DerivedPropertiesMap,
|
2020-04-17 16:15:09 +00:00
|
|
|
defaultPropertiesMap: Record<string, string>,
|
|
|
|
|
metaPropertiesMap: Record<string, any>,
|
2021-02-16 10:29:08 +00:00
|
|
|
propertyPaneConfig?: PropertyPaneConfig[],
|
2019-09-09 09:08:54 +00:00
|
|
|
) {
|
|
|
|
|
this.widgetMap.set(widgetType, widgetBuilder);
|
2020-01-17 09:28:26 +00:00
|
|
|
this.derivedPropertiesMap.set(widgetType, derivedPropertiesMap);
|
2020-04-17 16:15:09 +00:00
|
|
|
this.defaultPropertiesMap.set(widgetType, defaultPropertiesMap);
|
|
|
|
|
this.metaPropertiesMap.set(widgetType, metaPropertiesMap);
|
2021-02-16 10:29:08 +00:00
|
|
|
|
2021-07-26 05:50:46 +00:00
|
|
|
if (propertyPaneConfig) {
|
|
|
|
|
const validatedPropertyPaneConfig = validatePropertyPaneConfig(
|
|
|
|
|
propertyPaneConfig,
|
|
|
|
|
);
|
|
|
|
|
|
2021-02-16 10:29:08 +00:00
|
|
|
this.propertyPaneConfigsMap.set(
|
|
|
|
|
widgetType,
|
2021-07-26 05:50:46 +00:00
|
|
|
Object.freeze(addPropertyConfigIds(validatedPropertyPaneConfig)),
|
2021-02-16 10:29:08 +00:00
|
|
|
);
|
2021-07-26 05:50:46 +00:00
|
|
|
}
|
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
|
|
|
|
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
|
|
|
|
2020-04-17 16:15:09 +00:00
|
|
|
static getWidgetDefaultPropertiesMap(
|
|
|
|
|
widgetType: WidgetType,
|
|
|
|
|
): Record<string, string> {
|
|
|
|
|
const map = this.defaultPropertiesMap.get(widgetType);
|
|
|
|
|
if (!map) {
|
2021-02-16 10:29:08 +00:00
|
|
|
console.error("Widget default properties not defined", widgetType);
|
2020-04-17 16:15:09 +00:00
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
return map;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static getWidgetMetaPropertiesMap(
|
|
|
|
|
widgetType: WidgetType,
|
2021-06-18 07:42:57 +00:00
|
|
|
): Record<string, string> {
|
2020-04-17 16:15:09 +00:00
|
|
|
const map = this.metaPropertiesMap.get(widgetType);
|
|
|
|
|
if (!map) {
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
console.error("Widget meta properties not defined: ", widgetType);
|
2020-04-17 16:15:09 +00:00
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
return map;
|
2021-02-16 10:29:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static getWidgetPropertyPaneConfig(
|
|
|
|
|
type: WidgetType,
|
|
|
|
|
): readonly PropertyPaneConfig[] {
|
|
|
|
|
const map = this.propertyPaneConfigsMap.get(type);
|
|
|
|
|
if (!map) {
|
|
|
|
|
console.error("Widget property pane configs not defined", type);
|
|
|
|
|
return [];
|
|
|
|
|
}
|
|
|
|
|
return map;
|
2020-04-17 16:15:09 +00:00
|
|
|
}
|
2020-10-21 04:25:32 +00:00
|
|
|
|
|
|
|
|
static getWidgetTypeConfigMap(): WidgetTypeConfigMap {
|
|
|
|
|
const typeConfigMap: WidgetTypeConfigMap = {};
|
2020-12-24 04:32:25 +00:00
|
|
|
WidgetFactory.getWidgetTypes().forEach((type) => {
|
2020-10-21 04:25:32 +00:00
|
|
|
typeConfigMap[type] = {
|
|
|
|
|
defaultProperties: WidgetFactory.getWidgetDefaultPropertiesMap(type),
|
|
|
|
|
derivedProperties: WidgetFactory.getWidgetDerivedPropertiesMap(type),
|
|
|
|
|
metaProperties: WidgetFactory.getWidgetMetaPropertiesMap(type),
|
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
return typeConfigMap;
|
|
|
|
|
}
|
2019-02-10 13:06:05 +00:00
|
|
|
}
|
|
|
|
|
|
2020-10-21 04:25:32 +00:00
|
|
|
export type WidgetTypeConfigMap = Record<
|
|
|
|
|
string,
|
|
|
|
|
{
|
|
|
|
|
defaultProperties: Record<string, string>;
|
|
|
|
|
metaProperties: Record<string, any>;
|
2021-06-18 07:42:57 +00:00
|
|
|
derivedProperties: WidgetDerivedPropertyType;
|
2020-10-21 04:25:32 +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;
|