PromucFlow_constructor/app/client/src/constants/HelpConstants.ts

204 lines
4.4 KiB
TypeScript
Raw Normal View History

export const HelpMap: Record<string, { path: string; searchKey: string }> = {
AUDIO_WIDGET: {
path: "/widget-reference/audio",
searchKey: "Audio",
},
2020-05-28 18:10:26 +00:00
CONTAINER_WIDGET: {
path: "/widget-reference/container",
searchKey: "Container",
},
CHECKBOX_WIDGET: {
path: "/widget-reference/checkbox",
searchKey: "Checkbox",
},
BUTTON_WIDGET: {
path: "/widget-reference/button",
searchKey: "Button",
},
TEXT_WIDGET: {
path: "/widget-reference/text",
searchKey: "Text",
},
IMAGE_WIDGET: {
path: "/widget-reference/image",
searchKey: "Image",
},
INPUT_WIDGET: {
path: "/widget-reference/input",
searchKey: "Input",
},
INPUT_WIDGET_V2: {
path: "/widget-reference/input",
searchKey: "Input",
},
2020-05-28 18:10:26 +00:00
DATE_PICKER_WIDGET: {
path: "/widget-reference/datepicker",
searchKey: "DatePicker",
},
DATE_PICKER_WIDGET2: {
path: "/widget-reference/datepicker",
searchKey: "DatePicker",
},
2020-05-28 18:10:26 +00:00
TABLE_WIDGET: {
path: "/widget-reference/table",
searchKey: "Table",
},
TABLE_WIDGET_V2: {
path: "/widget-reference/table",
searchKey: "Table",
},
VIDEO_WIDGET: {
path: "/widget-reference/video",
searchKey: "Video",
},
2020-05-28 18:10:26 +00:00
DROP_DOWN_WIDGET: {
path: "/widget-reference/dropdown",
2021-05-07 05:26:36 +00:00
searchKey: "Select",
2020-05-28 18:10:26 +00:00
},
SELECT_WIDGET: {
path: "/widget-reference/dropdown",
searchKey: "Select",
},
2020-05-28 18:10:26 +00:00
RADIO_GROUP_WIDGET: {
path: "/widget-reference/radio",
searchKey: "Radio",
},
RICH_TEXT_EDITOR_WIDGET: {
path: "",
searchKey: "Rich Text Editor",
},
CHART_WIDGET: {
path: "/widget-reference/chart",
searchKey: "Chart",
},
FORM_WIDGET: {
path: "/widget-reference/form",
searchKey: "Form",
},
FILE_PICKER_WIDGET: {
path: "/widget-reference/filepicker",
searchKey: "File picker",
},
FILE_PICKER_WIDGET_V2: {
path: "/widget-reference/filepicker",
searchKey: "File picker",
},
2020-05-28 18:10:26 +00:00
FORM_BUTTON_WIDGET: {
path: "",
searchKey: "",
},
CANVAS_WIDGET: {
path: "",
searchKey: "",
},
ICON_WIDGET: {
path: "",
searchKey: "",
},
SKELETON_WIDGET: {
path: "",
searchKey: "",
},
2020-05-28 18:10:26 +00:00
TABS_WIDGET: {
path: "",
searchKey: "Tabs",
},
TABS_MIGRATOR_WIDGET: {
path: "",
searchKey: "",
},
2020-05-28 18:10:26 +00:00
MODAL_WIDGET: {
path: "",
searchKey: "",
},
MAP_WIDGET: {
path: "",
searchKey: "Map",
},
API_MAIN: {
path: "/core-concepts/apis",
searchKey: "Apis",
},
API_BINDING: {
path: "/core-concepts/capturing-data-write",
2020-05-28 18:10:26 +00:00
searchKey: "Taking Inputs from Widgets",
},
DATASOURCE_FORM: {
path: "/core-concepts/connecting-to-data-sources/connecting-to-databases",
searchKey: "Connecting to databases",
},
[Feature] Grid Widget (#2389) * Updated test * updated assertions * Resizing image to take full width of table cell * updated assertion * Stop updating dynamicBindingPathList directly from widget * Fix selectedRow and selectedRows computations * Fix primaryColumns computations * Updated test for derived column * Added tests for computed value * Added check clear data * Reordering of test * updated common method * Made image size as 100% of table cell size * add templating logic * Updated flow and dsl * Clear old primary columns * Updated testname * updated assertion * use evaluated values for children * Fix primary columns update on component mount and component update * add isArray check * remove property pane enhancement reducer * add property pane enhancement reducer * disable items other than template + fix running property enchancment on drop of list widget * disbled drag, resize, settingsControl, drag for items other than template * add grid options * uncomment the widget operation for add child for grid children * handle delete scenario for child widget in list widget * WIP: Use the new delete and update property features * add listdsl.json for testcases * add test cases for correct no. of items being rendered * add test cases currentItem binding in list widget * change dragEnabled to dragDisabled * change resizeEnabled to resizeDisabled * change settingsControlEnabled to settingsControlDisabled * change dropEnabled to dropDisabled * update settingsControlDisabled default value * Use deleteProperties in propertyControls * Fix unsetting of array indices when deleting widget properties * remove old TableWidget.tsx file * Fix derived column property update on primary column property update * Handle undefined primary columns * Fix filepicker immutable prop issue * Fix object.freeze issue when adding ids to the property pane configuration * fix widget issue in grid * Fix column actions dynamicBindingPathList inclusion issue * remove consoles + fix typo around batch update * Remove redundant tests * js binding test for date picker * hydate enhancement map on copy list widget * check for dynamicleaf * fixes * improve check * fix getNextWidgetName * update template in list widget when copying * updating template copy logic when copying widget * update dynamicBindingPathList in copied widget * Add path parameter to hidden functions in property pane configs * fix copy bug when copying list widget * add computed list property control * Remove time column type Fix editor prompt for currentRow Fix undefined derivedColumns scenario Remove validations for primaryColums and derivedColumns Fix section toggle for video, image and button column types * Fix table widget actions and custom column migrations * Add logs for cyclical dependency map :recycle: * Process array differences * add property control for list widget * Fix onClick migrations * Property pane config parity * binding and trigger paths from the property pane config (#2920) * try react virtualized library * Fix unit test * Fix unit test :white_check_mark: * Fix minor issues in table widget * Add default meta props to binding paths to ensure eval and validation * Dummy commit :tada: * Remove unnecessary datepicker test Fix chart data as string issue * Achieve table column sorting and resizing parity with release * handle scenario where last column isn't available to access * Fix for panel config path not existing in the widget * Fix bindings in currentRow (default) Add dummy property pane config for canvas widget * Update canvas widgets with dynamicPathLists on delete of property paths * Add all diffs to change paths and trim later * Add back default properties 🚶🏻‍♂️ * Use object based paths instead of arrays for primaryColumns and derivedColumns * Fix issue in reordered columns * Fix inccorect update order * add virtualized list * Fix failing property pane tests * minor change * minor list widget change * Remove .vscode from git * Rename ads to alloy Fix isVisible in list widget * move grid component to widget folder * fix import in widget registry * add sticky row in virtualized list * add sticky container * Fix Height of grid widget items container * fix dragging of items in children other than template children * update list widget * update list widget * Fix padding in list widget * hide scrollbar in list widget list * fix copy bug in list widget * regenrate enhancement map on undo delete widget * Use enhancementmap for autocomplete in list widget Basic styles for list widget scrollbar * add custom control in widget config * minor commit * update scrollbar styles * remove unused variable * fix typo in custom control * comment out test cases * remove unused imports * remove unused imports * add JSON stringify in interweave * add noPad styling in dragLayer for noPad prop * implement grid gap * add list item background color prop * add white color in color picker control * fix gap in last list item * remove onBeforeParse in textcomponent * remove virtualization in grid widget * allow overflow-y * add onListItemClick action * add beta label * add pagination * fix actions in pagination in list widget * add list widget icon * add list background color default value * remove extra div * fix pagination issue * fix list widget crashing on perpage change * extract child operation function to widgetblueprint saga * refactor enhancements * add enhancement hook * refactor propertyUpdate hook enhancment * remove enhacement map * revert renaming ads to alloy * add autopagination * Cleanup unused vars Re-write loop using map Fix binding with external input widget * update default background color * remove unnessary scrol + fix pagination per page * remove console.log * use grid gap in pixel instead of snap * fix list widget tests for binding * add tests for on click action and pagination * remove unnecessary imports * remove overflow hidden in list component * Add feature to enable template actions * update property pane help text for list widget * disable pagination in editor view * update property pane options * add test case for action * uncomment tests * fix grid gap validation * update test cases * fix property pane opening issue for list tempalte * Disable form widgets in list widget * fix template issue for actions * add validation tests for list data * update starting template * add selectedRow + enable pagination in edit mode * remove extra padding in list widget + popper fix on settingDisabled * add stop propagation for button click * fix click event in edit mode * disallow filepicker widget for list widget * add test for list widget entity definition for selectItem * remove unused imports * fix test * remove evaluated value for list child widgets * add comment * remove log * fix copying bug in list widget * add check for not allowing template to copy * fix test * add test for property pane actions * remove unused import * add draglayercomponent test * add test for draggable component * add test for evaluatedvalue popup * add test for messages.ts * add test for widgeticons * add test for property pane selector * add test for widget config response * start testing widget configresponse * add test for enhancements in widget config * add test for codeeditor * add test for base widget + list widget * add test for executeWidgetBlueprintChildOperations * remove unused import * add test for widget operation utils * remove unused import * add test for handleSpecificCasesWhilePasting * remove unused function * remove unused import * add empty list styling * resolve all review comments * fix message test * add test for widget operation utils * fix merge conflicts * move validations in property config Co-authored-by: Abhinav Jha <abhinav@appsmith.com> Co-authored-by: nandan.anantharamu <nandan.anantharamu@thoughtspot.com> Co-authored-by: vicky-primathon.in <vicky.bansal@primathon.in> Co-authored-by: Pawan Kumar <pawankumar@Pawans-MacBook-Pro.local> Co-authored-by: Piyush <piyush@codeitout.com> Co-authored-by: hetunandu <hetu@appsmith.com> Co-authored-by: Hetu Nandu <hetunandu@gmail.com> Co-authored-by: root <root@DESKTOP-9GENCK0.localdomain>
2021-04-23 05:43:13 +00:00
LIST_WIDGET: {
path: "/widget-reference/list",
searchKey: "List",
},
SWITCH_WIDGET: {
path: "/widget-reference/switch",
searchKey: "Switch",
},
MULTI_SELECT_WIDGET: {
path: "",
searchKey: "",
},
MULTI_SELECT_WIDGET_V2: {
path: "",
searchKey: "",
},
RATE_WIDGET: {
path: "/widget-reference/rate",
searchKey: "Rate",
},
IFRAME_WIDGET: {
path: "/widget-reference/iframe",
searchKey: "Iframe",
},
DIVIDER_WIDGET: {
path: "/widget-reference/divider",
searchKey: "Divider",
},
MENU_BUTTON_WIDGET: {
path: "/widget-reference/menu-button",
searchKey: "Menu Button",
},
TREE_MULTI_SELECT_WIDGET: {
path: "/widget-reference/tree-multi-select",
searchKey: "Tree Multi Select",
},
TREE_SINGLE_SELECT_WIDGET: {
path: "/widget-reference/tree-single-select",
searchKey: "Tree Single Select",
},
ICON_BUTTON_WIDGET: {
path: "/widget-reference/icon-button",
searchKey: "Icon Button",
},
STATBOX_WIDGET: {
path: "/widget-reference/statbox",
searchKey: "Stat Box",
},
CHECKBOX_GROUP_WIDGET: {
path: "/widget-reference/checkbox-group",
searchKey: "Checkbox Group",
},
AUDIO_RECORDER_WIDGET: {
path: "/widget-reference/audio-recorder",
searchKey: "Audio Recorder",
},
2021-12-29 12:01:19 +00:00
PROGRESSBAR_WIDGET: {
path: "/widget-reference/progressbar",
searchKey: "Progress Bar",
},
feat: Switch Group widget (#7590) * Feat: Switch Group Widget -- The first MVP of the widget * feat: Switch Group Widget -- Follow the same config and implementation as the other group widgets * feat: Switch Group Widget -- Elaborate the help text for defaultSelectedValues * feat: Switch Group Widget -- Add a widget icon * feat: Switch Group Widget -- Remove unnecessary property control at ItemsControl.tsx -- Refactor some code snippets for higher code quality -- Add basic cypress test cases * fix: icon for the widget optimised & replaced * feat: Switch Group Widget -- Add a unit test for defaultSelectedValuesValidation * feat: Switch Group Widget -- Make the validation type for defaultSelectedValues property to ValidationTypes.ARRAY -- Remove original validation function and its unit test * feat: Switch Group Widget -- Fix on typo -- Fix on formatting issue -- Change the help text for isRequired property * feat: Switch Group Widget -- Revert help text for isRequired property to the original one * feat: Switch Group Widget -- Set strict property to true on defaultSelectedValues * feat: Switch group widget -- Refactor utility function, getCamelCaseString -- Add the corresponding test case * feat: Switch group widget -- Implement options property as a plain JS field -- Reimplement update logic for selectedValues when options changes -- Add a new utility function for checking equality of object arrays -- Add a unit test for the above function -- Rewrite the corresponding Cypress test cases * feat: Switch Group Widget -- Remove isArrayEqual utility function and directly use functions from lodash * feat: Swtich Group Widget -- Make selectedValues as a derived property * feat: Switch Group Widget -- Replace the widget icon * feat: Switch Group Widget -- Rewrite a test case for onSelectionChange property * feat: Switch Group Widget -- Remove redundant calls for openPropertyPane * feat: Switch Group Widget -- Remove closePropertyPane call from afterEach hook * feat: Switch Group Widget -- Change the selector for every switch element in onSelectionChange test case * feat: Switch Group Widget -- Fix on failed Cypress test case, adding closePropertyPane command to onSelectionChange * feat: Switch Group Widget -- Remove template literal from a selector * feat: Switch Group Widget -- Make click on onSelectionChange test case forced * feat: Switch Group Widget -- Fix on crash issue when editing on Options property * feat: Switch Group Widget -- Add the widget icon to show in entity explorer * feat: Switch Group Widget -- Fix on blue color on mouse down -- Add a new property for alignment Co-authored-by: somangshu <somangshu.goswami1508@gmail.com>
2021-12-09 12:02:47 +00:00
SWITCH_GROUP_WIDGET: {
path: "/widget-reference/switch-group",
searchKey: "Switch Group",
},
feat: Map Chart widget (#6929) * FEATURE-6314 : Map Chart Widget -- Scaffold the widget * FEATURE-6314 : Map Chart Widget -- Add a new widget icon -- Proptotype the property pane for the first time * FEATURE-6314 : Map Chart Widget -- Install fusionmaps -- Draw naive world map for the PoC * FEATURE-6314 : Map Chart Widget -- Integrate the limited number of FusionMaps into the widget -- Bind basic properties and a action into the map * FEATURE-6314 : Map Chart Widget -- Comment out the console statements for linting error * FEATURE-6314 : Map Chart Widget -- Update dependency versioning * feat: Map Chart Widget -- Fix on linting errors, including unused variables, console statement * Feat: Map Chart Widget -- Install dependencies from scratch * fix: increased max chink size allowed in the build config * Feat: Map Chart Widget -- Refactor code base according to the changed widget structure -- Add cleanup for removing event listener -- Eliminate the unnecessary codes, comments * Feat: Map Chart Widget -- Remove unnecessary icon -- Refactor on constants * Feat: Map Chart Widget -- Add a cypress test case for map type changes -- Add a cypress test case for title change -- Add a cypress test case for toggling show labels -- Add a cypress test case for onEntityClick event listener * feat: Map Chart Widget -- Scaffold the setup for custom map config * feat: Map Chart Widget -- Dynamically import map definition files * feat: Map Chart Widget -- Eliminate unnecessary comments * feat: Fusion Maps Widget -- Update base dependencies * partial map chart changes. * feat: Map Chart Widget -- Refactor entire code base, removing custom configs -- Disable prefetching on mapCharts chunk * feat: Map Chart Widget -- Comment onEntityClick test case out * feat: Map Chart Widget -- Fix on onEntityClick test case * feat: Map Chart Widget -- Change the widget icon -- Rename onEnityClick to onDataPointClick -- Expose selectedDataPoint -- Add a new Cypress test case for the toast message on onDataPointClick * feat: Map Chart Widget -- Add a new property colorRange -- Add default values for data and colorRange properties -- Eliminate unnecessary constant colorRange * feat: Map Chart Widget -- update selectedDataPoint meta property unconditionally * feat: Map Chart Widget -- Update initial map type config to be consistent with the corresponding property * feat: Map Chart Widget -- Add widget icon for entity explorer * feat: Map Chart Widget -- Make array elements of data, colorRange properties unique * feat: Map Chart Widget -- Prevent re-render when disabling color codes and double-clicking on entities * feat: Map Chart Widget -- Declare defaultChartConfigs variable inside component class -- Replace deprecated substr method with substring * feat: Map Chart widget -- Complement validation rules for data property * feat: Map Chart widget -- Define rows and cols without using GRID_DENSITY_MIGRATION_V1 -- Change updateDataSet hook by replacing switch statement with object mapping * feat: Map Chart widget -- Pull out dataSetMapping from the updateDataSet hook * feat: Map Chart widget -- Force click events with regard to onDataPointClick test cases * feat: Map Chart widget -- Update fusioncharts and fusionmaps npm packages to the latest version * feat: Map Chart widget -- Make contents responsive using CSS styles instead of directly changing width, height attributes of the chart Co-authored-by: somangshu <somangshu.goswami1508@gmail.com> Co-authored-by: Ashok Kumar M <35134347+marks0351@users.noreply.github.com> Co-authored-by: Arpit Mohan <arpit@appsmith.com>
2022-01-07 09:57:45 +00:00
MAP_CHART_WIDGET: {
path: "/widget-reference/map-chart",
searchKey: "Map Chart",
},
2020-05-28 18:10:26 +00:00
};
export const HelpBaseURL = "https://docs.appsmith.com";
2021-03-08 08:24:12 +00:00
export const HELP_MODAL_WIDTH = 240;
export const HELP_MODAL_HEIGHT = 206;