- Each column has more options and can be configured in the property pane instead of the table - Table level styles can now be set in the property pane - Property sections are collapsible Co-authored-by: vicky-primathon.in <vicky.bansal@primathon.in> Co-authored-by: nandan.anantharamu <nandan.anantharamu@thoughtspot.com> Co-authored-by: Abhinav Jha <abhinav@appsmith.com> Co-authored-by: hetunandu <hetu@appsmith.com>
156 lines
4.4 KiB
TypeScript
156 lines
4.4 KiB
TypeScript
import React from "react";
|
|
import BaseWidget, { WidgetProps, WidgetState } from "./BaseWidget";
|
|
import { WidgetType } from "constants/WidgetConstants";
|
|
import TextComponent from "components/designSystems/blueprint/TextComponent";
|
|
import { VALIDATION_TYPES } from "constants/WidgetValidation";
|
|
import {
|
|
WidgetPropertyValidationType,
|
|
BASE_WIDGET_VALIDATION,
|
|
} from "utils/WidgetValidation";
|
|
import { DerivedPropertiesMap } from "utils/WidgetFactory";
|
|
import * as Sentry from "@sentry/react";
|
|
|
|
const LINE_HEIGHTS: { [key in TextStyle]: number } = {
|
|
// The following values are arrived at by multiplying line-height with font-size
|
|
BODY: 1.5 * 14,
|
|
HEADING: 1.28581 * 16,
|
|
LABEL: 1.28581 * 14,
|
|
SUB_TEXT: 1.28581 * 12,
|
|
};
|
|
|
|
class TextWidget extends BaseWidget<TextWidgetProps, WidgetState> {
|
|
static getPropertyPaneConfig() {
|
|
return [
|
|
{
|
|
sectionName: "General",
|
|
children: [
|
|
{
|
|
propertyName: "text",
|
|
helpText: "Sets the text of the widget",
|
|
label: "Text",
|
|
controlType: "INPUT_TEXT",
|
|
placeholderText: "Enter text",
|
|
isBindProperty: true,
|
|
isTriggerProperty: false,
|
|
},
|
|
{
|
|
propertyName: "textAlign",
|
|
helpText: "Sets the alignments of the text",
|
|
label: "Text Align",
|
|
controlType: "DROP_DOWN",
|
|
options: [
|
|
{
|
|
label: "Left",
|
|
value: "LEFT",
|
|
},
|
|
{
|
|
label: "Center",
|
|
value: "CENTER",
|
|
},
|
|
{
|
|
label: "Right",
|
|
value: "RIGHT",
|
|
},
|
|
],
|
|
isBindProperty: false,
|
|
isTriggerProperty: false,
|
|
},
|
|
{
|
|
propertyName: "textStyle",
|
|
helpText: "Sets the font and style of the text",
|
|
label: "Text Style",
|
|
controlType: "DROP_DOWN",
|
|
options: [
|
|
{
|
|
label: "Heading",
|
|
value: "HEADING",
|
|
},
|
|
{
|
|
label: "Label",
|
|
value: "LABEL",
|
|
},
|
|
{
|
|
label: "Body",
|
|
value: "BODY",
|
|
},
|
|
],
|
|
isBindProperty: false,
|
|
isTriggerProperty: false,
|
|
},
|
|
{
|
|
propertyName: "shouldScroll",
|
|
label: "Enable Scroll",
|
|
helpText: "Allows scrolling text instead of truncation",
|
|
controlType: "SWITCH",
|
|
isBindProperty: false,
|
|
isTriggerProperty: false,
|
|
},
|
|
{
|
|
propertyName: "isVisible",
|
|
helpText: "Controls the visibility of the widget",
|
|
label: "Visible",
|
|
controlType: "SWITCH",
|
|
isJSConvertible: true,
|
|
isBindProperty: true,
|
|
isTriggerProperty: false,
|
|
},
|
|
],
|
|
},
|
|
];
|
|
}
|
|
static getPropertyValidationMap(): WidgetPropertyValidationType {
|
|
return {
|
|
...BASE_WIDGET_VALIDATION,
|
|
text: VALIDATION_TYPES.TEXT,
|
|
textStyle: VALIDATION_TYPES.TEXT,
|
|
shouldScroll: VALIDATION_TYPES.BOOLEAN,
|
|
};
|
|
}
|
|
|
|
getNumberOfLines() {
|
|
const height = (this.props.bottomRow - this.props.topRow) * 40;
|
|
const lineHeight = LINE_HEIGHTS[this.props.textStyle];
|
|
return Math.floor(height / lineHeight);
|
|
}
|
|
|
|
getPageView() {
|
|
// const lines = this.getNumberOfLines();
|
|
return (
|
|
<TextComponent
|
|
widgetId={this.props.widgetId}
|
|
key={this.props.widgetId}
|
|
textStyle={this.props.textStyle}
|
|
text={this.props.text}
|
|
textAlign={this.props.textAlign ? this.props.textAlign : "LEFT"}
|
|
isLoading={this.props.isLoading}
|
|
shouldScroll={this.props.shouldScroll}
|
|
// lines={lines}
|
|
/>
|
|
);
|
|
}
|
|
|
|
static getDerivedPropertiesMap(): DerivedPropertiesMap {
|
|
return {
|
|
value: `{{ this.text }}`,
|
|
};
|
|
}
|
|
|
|
getWidgetType(): WidgetType {
|
|
return "TEXT_WIDGET";
|
|
}
|
|
}
|
|
|
|
export type TextStyle = "BODY" | "HEADING" | "LABEL" | "SUB_TEXT";
|
|
export type TextAlign = "LEFT" | "CENTER" | "RIGHT" | "JUSTIFY";
|
|
|
|
export interface TextWidgetProps extends WidgetProps {
|
|
text?: string;
|
|
textStyle: TextStyle;
|
|
isLoading: boolean;
|
|
textAlign: TextAlign;
|
|
shouldScroll: boolean;
|
|
}
|
|
|
|
export default TextWidget;
|
|
export const ProfiledTextWidget = Sentry.withProfiler(TextWidget);
|