System generated commit, initial commit
This commit is contained in:
33
pages/foss.raw/foss.raw.json
Normal file
33
pages/foss.raw/foss.raw.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"gitSyncId": "67d625955fe7897636dc61e1_38d74e32-b57e-46c2-b006-219408cd0068",
|
||||
"unpublishedPage": {
|
||||
"isHidden": false,
|
||||
"layouts": [
|
||||
{
|
||||
"dsl": {
|
||||
"backgroundColor": "none",
|
||||
"bottomRow": 860,
|
||||
"canExtend": true,
|
||||
"containerStyle": "none",
|
||||
"detachFromLayout": true,
|
||||
"dynamicBindingPathList": [],
|
||||
"dynamicTriggerPathList": [],
|
||||
"leftColumn": 0,
|
||||
"minHeight": 900,
|
||||
"parentColumnSpace": 1,
|
||||
"parentRowSpace": 1,
|
||||
"rightColumn": 1174,
|
||||
"snapColumns": 64,
|
||||
"snapRows": 125,
|
||||
"topRow": 0,
|
||||
"type": "CANVAS_WIDGET",
|
||||
"version": 92,
|
||||
"widgetId": "0",
|
||||
"widgetName": "MainContainer"
|
||||
}
|
||||
}
|
||||
],
|
||||
"name": "foss.raw",
|
||||
"slug": "foss-raw"
|
||||
}
|
||||
}
|
||||
26
pages/foss.raw/queries/InsertQuery/InsertQuery.txt
Normal file
26
pages/foss.raw/queries/InsertQuery/InsertQuery.txt
Normal file
@@ -0,0 +1,26 @@
|
||||
INSERT INTO public."foss" (
|
||||
"name",
|
||||
"user_created",
|
||||
"date_created",
|
||||
"user_updated",
|
||||
"date_updated",
|
||||
"website",
|
||||
"repository",
|
||||
"documentation",
|
||||
"public_demo",
|
||||
"target_market",
|
||||
"copyright_license"
|
||||
)
|
||||
VALUES (
|
||||
'{{insert_form.formData.name}}',
|
||||
'{{insert_form.formData.user_created}}',
|
||||
'{{insert_form.formData.date_created}}',
|
||||
'{{insert_form.formData.user_updated}}',
|
||||
'{{insert_form.formData.date_updated}}',
|
||||
'{{insert_form.formData.website}}',
|
||||
'{{insert_form.formData.repository}}',
|
||||
'{{insert_form.formData.documentation}}',
|
||||
'{{insert_form.formData.public_demo}}',
|
||||
'{{insert_form.formData.target_market}}',
|
||||
'{{insert_form.formData.copyright_license}}'
|
||||
);
|
||||
30
pages/foss.raw/queries/InsertQuery/metadata.json
Normal file
30
pages/foss.raw/queries/InsertQuery/metadata.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"gitSyncId": "67d625955fe7897636dc61e1_55da60e2-43b1-4f60-a2ab-d6e583e53b73",
|
||||
"id": "foss.raw_InsertQuery",
|
||||
"pluginId": "postgres-plugin",
|
||||
"pluginType": "DB",
|
||||
"unpublishedAction": {
|
||||
"actionConfiguration": {
|
||||
"body": "INSERT INTO public.\"foss\" (\n\t\"name\",\n\t\"user_created\",\n\t\"date_created\",\n\t\"user_updated\",\n\t\"date_updated\",\n\t\"website\",\n\t\"repository\",\n\t\"documentation\",\n\t\"public_demo\",\n\t\"target_market\",\n\t\"copyright_license\"\n)\nVALUES (\n\t'{{insert_form.formData.name}}',\n\t'{{insert_form.formData.user_created}}',\n\t'{{insert_form.formData.date_created}}',\n\t'{{insert_form.formData.user_updated}}',\n\t'{{insert_form.formData.date_updated}}',\n\t'{{insert_form.formData.website}}',\n\t'{{insert_form.formData.repository}}',\n\t'{{insert_form.formData.documentation}}',\n\t'{{insert_form.formData.public_demo}}',\n\t'{{insert_form.formData.target_market}}',\n\t'{{insert_form.formData.copyright_license}}'\n);",
|
||||
"encodeParamsToggle": true,
|
||||
"paginationType": "NONE",
|
||||
"pluginSpecifiedTemplates": [
|
||||
{
|
||||
"value": true
|
||||
}
|
||||
],
|
||||
"timeoutInMillisecond": 10000
|
||||
},
|
||||
"confirmBeforeExecute": false,
|
||||
"datasource": {
|
||||
"id": "Directus Database",
|
||||
"isAutoGenerated": false,
|
||||
"name": "Directus Database",
|
||||
"pluginId": "postgres-plugin"
|
||||
},
|
||||
"executeOnLoad": false,
|
||||
"name": "InsertQuery",
|
||||
"pageId": "foss.raw",
|
||||
"userSetOnLoad": false
|
||||
}
|
||||
}
|
||||
5
pages/foss.raw/queries/SelectQuery/SelectQuery.txt
Normal file
5
pages/foss.raw/queries/SelectQuery/SelectQuery.txt
Normal file
@@ -0,0 +1,5 @@
|
||||
SELECT * FROM public."foss"
|
||||
WHERE "name" ilike '%{{data_table.searchText || ""}}%'
|
||||
ORDER BY "{{data_table.sortOrder.column || 'id'}}" {{data_table.sortOrder.order || 'ASC'}}
|
||||
LIMIT {{data_table.pageSize}}
|
||||
OFFSET {{(data_table.pageNo - 1) * data_table.pageSize}};
|
||||
30
pages/foss.raw/queries/SelectQuery/metadata.json
Normal file
30
pages/foss.raw/queries/SelectQuery/metadata.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"gitSyncId": "67d625955fe7897636dc61e1_9a6e5b5a-57d5-4a40-a651-2371365a217a",
|
||||
"id": "foss.raw_SelectQuery",
|
||||
"pluginId": "postgres-plugin",
|
||||
"pluginType": "DB",
|
||||
"unpublishedAction": {
|
||||
"actionConfiguration": {
|
||||
"body": "SELECT * FROM public.\"foss\"\nWHERE \"name\" ilike '%{{data_table.searchText || \"\"}}%'\nORDER BY \"{{data_table.sortOrder.column || 'id'}}\" {{data_table.sortOrder.order || 'ASC'}}\nLIMIT {{data_table.pageSize}}\nOFFSET {{(data_table.pageNo - 1) * data_table.pageSize}};",
|
||||
"encodeParamsToggle": true,
|
||||
"paginationType": "NONE",
|
||||
"pluginSpecifiedTemplates": [
|
||||
{
|
||||
"value": false
|
||||
}
|
||||
],
|
||||
"timeoutInMillisecond": 10000
|
||||
},
|
||||
"confirmBeforeExecute": false,
|
||||
"datasource": {
|
||||
"id": "Directus Database",
|
||||
"isAutoGenerated": false,
|
||||
"name": "Directus Database",
|
||||
"pluginId": "postgres-plugin"
|
||||
},
|
||||
"executeOnLoad": true,
|
||||
"name": "SelectQuery",
|
||||
"pageId": "foss.raw",
|
||||
"userSetOnLoad": true
|
||||
}
|
||||
}
|
||||
13
pages/foss.raw/queries/UpdateQuery/UpdateQuery.txt
Normal file
13
pages/foss.raw/queries/UpdateQuery/UpdateQuery.txt
Normal file
@@ -0,0 +1,13 @@
|
||||
UPDATE public."foss" SET
|
||||
"name" = '{{update_form.fieldState.name.isVisible ? update_form.formData.name : update_form.sourceData.name}}',
|
||||
"user_created" = '{{update_form.fieldState.user_created.isVisible ? update_form.formData.user_created : update_form.sourceData.user_created}}',
|
||||
"date_created" = '{{update_form.fieldState.date_created.isVisible ? update_form.formData.date_created : update_form.sourceData.date_created}}',
|
||||
"user_updated" = '{{update_form.fieldState.user_updated.isVisible ? update_form.formData.user_updated : update_form.sourceData.user_updated}}',
|
||||
"date_updated" = '{{update_form.fieldState.date_updated.isVisible ? update_form.formData.date_updated : update_form.sourceData.date_updated}}',
|
||||
"website" = '{{update_form.fieldState.website.isVisible ? update_form.formData.website : update_form.sourceData.website}}',
|
||||
"repository" = '{{update_form.fieldState.repository.isVisible ? update_form.formData.repository : update_form.sourceData.repository}}',
|
||||
"documentation" = '{{update_form.fieldState.documentation.isVisible ? update_form.formData.documentation : update_form.sourceData.documentation}}',
|
||||
"public_demo" = '{{update_form.fieldState.public_demo.isVisible ? update_form.formData.public_demo : update_form.sourceData.public_demo}}',
|
||||
"target_market" = '{{update_form.fieldState.target_market.isVisible ? update_form.formData.target_market : update_form.sourceData.target_market}}',
|
||||
"copyright_license" = '{{update_form.fieldState.copyright_license.isVisible ? update_form.formData.copyright_license : update_form.sourceData.copyright_license}}'
|
||||
WHERE "id" = {{data_table.selectedRow.id}};
|
||||
30
pages/foss.raw/queries/UpdateQuery/metadata.json
Normal file
30
pages/foss.raw/queries/UpdateQuery/metadata.json
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"gitSyncId": "67d625955fe7897636dc61e1_3d9c033b-6e81-46f8-9377-3f9db4c9dff3",
|
||||
"id": "foss.raw_UpdateQuery",
|
||||
"pluginId": "postgres-plugin",
|
||||
"pluginType": "DB",
|
||||
"unpublishedAction": {
|
||||
"actionConfiguration": {
|
||||
"body": "UPDATE public.\"foss\" SET\n\t\t\"name\" = '{{update_form.fieldState.name.isVisible ? update_form.formData.name : update_form.sourceData.name}}',\n\t\t\"user_created\" = '{{update_form.fieldState.user_created.isVisible ? update_form.formData.user_created : update_form.sourceData.user_created}}',\n \"date_created\" = '{{update_form.fieldState.date_created.isVisible ? update_form.formData.date_created : update_form.sourceData.date_created}}',\n\t\t\"user_updated\" = '{{update_form.fieldState.user_updated.isVisible ? update_form.formData.user_updated : update_form.sourceData.user_updated}}',\n\t\t\"date_updated\" = '{{update_form.fieldState.date_updated.isVisible ? update_form.formData.date_updated : update_form.sourceData.date_updated}}',\n\t\t\"website\" = '{{update_form.fieldState.website.isVisible ? update_form.formData.website : update_form.sourceData.website}}',\n\t\t\"repository\" = '{{update_form.fieldState.repository.isVisible ? update_form.formData.repository : update_form.sourceData.repository}}',\n\t\t\"documentation\" = '{{update_form.fieldState.documentation.isVisible ? update_form.formData.documentation : update_form.sourceData.documentation}}',\n\t\t\"public_demo\" = '{{update_form.fieldState.public_demo.isVisible ? update_form.formData.public_demo : update_form.sourceData.public_demo}}',\n\t\t\"target_market\" = '{{update_form.fieldState.target_market.isVisible ? update_form.formData.target_market : update_form.sourceData.target_market}}',\n\t\t\"copyright_license\" = '{{update_form.fieldState.copyright_license.isVisible ? update_form.formData.copyright_license : update_form.sourceData.copyright_license}}'\n\tWHERE \"id\" = {{data_table.selectedRow.id}};",
|
||||
"encodeParamsToggle": true,
|
||||
"paginationType": "NONE",
|
||||
"pluginSpecifiedTemplates": [
|
||||
{
|
||||
"value": true
|
||||
}
|
||||
],
|
||||
"timeoutInMillisecond": 10000
|
||||
},
|
||||
"confirmBeforeExecute": false,
|
||||
"datasource": {
|
||||
"id": "Directus Database",
|
||||
"isAutoGenerated": false,
|
||||
"name": "Directus Database",
|
||||
"pluginId": "postgres-plugin"
|
||||
},
|
||||
"executeOnLoad": false,
|
||||
"name": "UpdateQuery",
|
||||
"pageId": "foss.raw",
|
||||
"userSetOnLoad": false
|
||||
}
|
||||
}
|
||||
69
pages/foss.raw/widgets/Container1/Container1.json
Normal file
69
pages/foss.raw/widgets/Container1/Container1.json
Normal file
@@ -0,0 +1,69 @@
|
||||
{
|
||||
"backgroundColor": "#FFFFFF",
|
||||
"borderColor": "#fff",
|
||||
"borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"borderWidth": "0",
|
||||
"bottomRow": 86,
|
||||
"boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}",
|
||||
"children": [
|
||||
{
|
||||
"borderRadius": "0px",
|
||||
"bottomRow": 860,
|
||||
"boxShadow": "none",
|
||||
"canExtend": false,
|
||||
"containerStyle": "none",
|
||||
"detachFromLayout": true,
|
||||
"dynamicBindingPathList": [],
|
||||
"dynamicTriggerPathList": [],
|
||||
"isLoading": false,
|
||||
"isVisible": "true",
|
||||
"labelTextSize": "0.875rem",
|
||||
"leftColumn": 0,
|
||||
"minHeight": 870,
|
||||
"parentColumnSpace": 1,
|
||||
"parentId": "mvubsemxfo",
|
||||
"parentRowSpace": 1,
|
||||
"rightColumn": 632,
|
||||
"topRow": 0,
|
||||
"type": "CANVAS_WIDGET",
|
||||
"version": 1,
|
||||
"widgetId": "59rw5mx0bq",
|
||||
"widgetName": "Canvas1"
|
||||
}
|
||||
],
|
||||
"containerStyle": "card",
|
||||
"dynamicBindingPathList": [
|
||||
{
|
||||
"key": "borderRadius"
|
||||
},
|
||||
{
|
||||
"key": "boxShadow"
|
||||
}
|
||||
],
|
||||
"dynamicHeight": "FIXED",
|
||||
"dynamicPropertyPathList": [
|
||||
{
|
||||
"key": "borderRadius"
|
||||
},
|
||||
{
|
||||
"key": "boxShadow"
|
||||
}
|
||||
],
|
||||
"dynamicTriggerPathList": [],
|
||||
"isLoading": false,
|
||||
"isVisible": "true",
|
||||
"labelTextSize": "0.875rem",
|
||||
"leftColumn": 0,
|
||||
"maxDynamicHeight": 9000,
|
||||
"minDynamicHeight": 4,
|
||||
"parentColumnSpace": 19.75,
|
||||
"parentId": "0",
|
||||
"parentRowSpace": 10,
|
||||
"rightColumn": 64,
|
||||
"shouldScrollContents": true,
|
||||
"topRow": 0,
|
||||
"type": "CONTAINER_WIDGET",
|
||||
"version": 1,
|
||||
"widgetId": "mvubsemxfo",
|
||||
"widgetName": "Container1"
|
||||
}
|
||||
39
pages/foss.raw/widgets/Container1/Text16.json
Normal file
39
pages/foss.raw/widgets/Container1/Text16.json
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"borderRadius": "0px",
|
||||
"bottomRow": 5,
|
||||
"boxShadow": "none",
|
||||
"dynamicBindingPathList": [
|
||||
{
|
||||
"key": "fontFamily"
|
||||
}
|
||||
],
|
||||
"dynamicHeight": "FIXED",
|
||||
"dynamicPropertyPathList": [
|
||||
{
|
||||
"key": "fontSize"
|
||||
}
|
||||
],
|
||||
"dynamicTriggerPathList": [],
|
||||
"fontFamily": "{{appsmith.theme.fontFamily.appFont}}",
|
||||
"fontSize": "1.5rem",
|
||||
"fontStyle": "BOLD",
|
||||
"isLoading": false,
|
||||
"isVisible": "true",
|
||||
"labelTextSize": "0.875rem",
|
||||
"leftColumn": 0,
|
||||
"maxDynamicHeight": 9000,
|
||||
"minDynamicHeight": 4,
|
||||
"overflow": "NONE",
|
||||
"parentColumnSpace": 11.78515625,
|
||||
"parentId": "59rw5mx0bq",
|
||||
"parentRowSpace": 10,
|
||||
"rightColumn": 54,
|
||||
"text": "FOSS Applications",
|
||||
"textAlign": "LEFT",
|
||||
"textColor": "#231F20",
|
||||
"topRow": 1,
|
||||
"type": "TEXT_WIDGET",
|
||||
"version": 1,
|
||||
"widgetId": "urzv99hdc8",
|
||||
"widgetName": "Text16"
|
||||
}
|
||||
816
pages/foss.raw/widgets/Container1/data_table.json
Normal file
816
pages/foss.raw/widgets/Container1/data_table.json
Normal file
@@ -0,0 +1,816 @@
|
||||
{
|
||||
"accentColor": "{{appsmith.theme.colors.primaryColor}}",
|
||||
"animateLoading": true,
|
||||
"borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"bottomRow": 85,
|
||||
"boxShadow": "{{appsmith.theme.boxShadow.appBoxShadow}}",
|
||||
"childStylesheet": {
|
||||
"button": {
|
||||
"borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"boxShadow": "none",
|
||||
"buttonColor": "{{appsmith.theme.colors.primaryColor}}"
|
||||
},
|
||||
"iconButton": {
|
||||
"borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"boxShadow": "none",
|
||||
"menuColor": "{{appsmith.theme.colors.primaryColor}}"
|
||||
},
|
||||
"menuButton": {
|
||||
"borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"boxShadow": "none",
|
||||
"menuColor": "{{appsmith.theme.colors.primaryColor}}"
|
||||
}
|
||||
},
|
||||
"columnOrder": [
|
||||
"name",
|
||||
"id",
|
||||
"user_created",
|
||||
"date_created",
|
||||
"user_updated",
|
||||
"date_updated",
|
||||
"website",
|
||||
"repository",
|
||||
"documentation",
|
||||
"public_demo",
|
||||
"target_market",
|
||||
"copyright_license",
|
||||
"certified",
|
||||
"tested",
|
||||
"category",
|
||||
"p2p",
|
||||
"standalone",
|
||||
"description"
|
||||
],
|
||||
"columnSizeMap": {
|
||||
"status": 75,
|
||||
"step": 62,
|
||||
"task": 245
|
||||
},
|
||||
"columnUpdatedAt": 1743958253495,
|
||||
"defaultPageSize": 0,
|
||||
"defaultSelectedRowIndex": "0",
|
||||
"delimiter": ",",
|
||||
"derivedColumns": {
|
||||
"customColumn1": {
|
||||
"borderRadius": "0px",
|
||||
"boxShadow": "none",
|
||||
"buttonColor": "#DD4B34",
|
||||
"buttonLabel": "{{data_table.processedTableData.map((currentRow, currentIndex) => ( 'Delete'))}}",
|
||||
"buttonLabelColor": "#FFFFFF",
|
||||
"buttonStyle": "rgb(3, 179, 101)",
|
||||
"columnType": "button",
|
||||
"computedValue": "",
|
||||
"enableFilter": true,
|
||||
"enableSort": true,
|
||||
"id": "customColumn1",
|
||||
"index": 5,
|
||||
"isCellVisible": true,
|
||||
"isDerived": true,
|
||||
"isDisabled": false,
|
||||
"isVisible": true,
|
||||
"label": "Delete",
|
||||
"labelColor": "#FFFFFF",
|
||||
"menuColor": "#03B365",
|
||||
"onClick": "{{showModal('Delete_Modal')}}",
|
||||
"width": 150
|
||||
}
|
||||
},
|
||||
"displayName": "Table",
|
||||
"dynamicBindingPathList": [
|
||||
{
|
||||
"key": "tableData"
|
||||
},
|
||||
{
|
||||
"key": "derivedColumns.customColumn1.buttonLabel"
|
||||
},
|
||||
{
|
||||
"key": "accentColor"
|
||||
},
|
||||
{
|
||||
"key": "borderRadius"
|
||||
},
|
||||
{
|
||||
"key": "boxShadow"
|
||||
},
|
||||
{
|
||||
"key": "primaryColumns.id.computedValue"
|
||||
},
|
||||
{
|
||||
"key": "primaryColumns.user_created.computedValue"
|
||||
},
|
||||
{
|
||||
"key": "primaryColumns.date_created.computedValue"
|
||||
},
|
||||
{
|
||||
"key": "primaryColumns.user_updated.computedValue"
|
||||
},
|
||||
{
|
||||
"key": "primaryColumns.date_updated.computedValue"
|
||||
},
|
||||
{
|
||||
"key": "primaryColumns.name.computedValue"
|
||||
},
|
||||
{
|
||||
"key": "primaryColumns.website.computedValue"
|
||||
},
|
||||
{
|
||||
"key": "primaryColumns.repository.computedValue"
|
||||
},
|
||||
{
|
||||
"key": "primaryColumns.documentation.computedValue"
|
||||
},
|
||||
{
|
||||
"key": "primaryColumns.public_demo.computedValue"
|
||||
},
|
||||
{
|
||||
"key": "primaryColumns.target_market.computedValue"
|
||||
},
|
||||
{
|
||||
"key": "primaryColumns.copyright_license.computedValue"
|
||||
},
|
||||
{
|
||||
"key": "primaryColumns.certified.computedValue"
|
||||
},
|
||||
{
|
||||
"key": "primaryColumns.tested.computedValue"
|
||||
},
|
||||
{
|
||||
"key": "primaryColumns.category.computedValue"
|
||||
},
|
||||
{
|
||||
"key": "primaryColumns.p2p.computedValue"
|
||||
},
|
||||
{
|
||||
"key": "primaryColumns.standalone.computedValue"
|
||||
},
|
||||
{
|
||||
"key": "primaryColumns.description.computedValue"
|
||||
}
|
||||
],
|
||||
"dynamicPropertyPathList": [
|
||||
{
|
||||
"key": "tableData"
|
||||
}
|
||||
],
|
||||
"dynamicTriggerPathList": [
|
||||
{
|
||||
"key": "onPageChange"
|
||||
},
|
||||
{
|
||||
"key": "onSearchTextChanged"
|
||||
},
|
||||
{
|
||||
"key": "onSort"
|
||||
}
|
||||
],
|
||||
"enableClientSideSearch": true,
|
||||
"enableServerSideFiltering": false,
|
||||
"hideCard": false,
|
||||
"horizontalAlignment": "LEFT",
|
||||
"iconSVG": "/static/media/icon.db8a9cbd.svg",
|
||||
"isLoading": false,
|
||||
"isSortable": true,
|
||||
"isVisible": "true",
|
||||
"isVisibleDownload": true,
|
||||
"isVisibleFilters": true,
|
||||
"isVisiblePagination": true,
|
||||
"isVisibleSearch": true,
|
||||
"key": "zba5qel0au",
|
||||
"label": "Data",
|
||||
"labelTextSize": "0.875rem",
|
||||
"leftColumn": 0,
|
||||
"onPageChange": "{{SelectQuery.run()}}",
|
||||
"onSearchTextChanged": "{{SelectQuery.run()}}",
|
||||
"onSort": "{{SelectQuery.run()}}",
|
||||
"parentColumnSpace": 16.3125,
|
||||
"parentId": "59rw5mx0bq",
|
||||
"parentRowSpace": 10,
|
||||
"primaryColumnId": "id",
|
||||
"primaryColumns": {
|
||||
"category": {
|
||||
"alias": "category",
|
||||
"allowCellWrapping": false,
|
||||
"allowSameOptionsInNewRow": true,
|
||||
"cellBackground": "",
|
||||
"columnType": "text",
|
||||
"computedValue": "{{data_table.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"category\"]))}}",
|
||||
"currencyCode": "USD",
|
||||
"decimals": 0,
|
||||
"enableFilter": true,
|
||||
"enableSort": true,
|
||||
"fontStyle": "",
|
||||
"horizontalAlignment": "LEFT",
|
||||
"id": "category",
|
||||
"index": 14,
|
||||
"isCellEditable": false,
|
||||
"isCellVisible": true,
|
||||
"isDerived": false,
|
||||
"isDisabled": false,
|
||||
"isDiscardVisible": true,
|
||||
"isEditable": false,
|
||||
"isSaveVisible": true,
|
||||
"isVisible": true,
|
||||
"label": "category",
|
||||
"notation": "standard",
|
||||
"originalId": "category",
|
||||
"sticky": "",
|
||||
"textColor": "",
|
||||
"textSize": "0.875rem",
|
||||
"thousandSeparator": true,
|
||||
"validation": {},
|
||||
"verticalAlignment": "CENTER",
|
||||
"width": 150
|
||||
},
|
||||
"certified": {
|
||||
"alias": "certified",
|
||||
"allowCellWrapping": false,
|
||||
"allowSameOptionsInNewRow": true,
|
||||
"cellBackground": "",
|
||||
"columnType": "checkbox",
|
||||
"computedValue": "{{data_table.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"certified\"]))}}",
|
||||
"currencyCode": "USD",
|
||||
"decimals": 0,
|
||||
"enableFilter": true,
|
||||
"enableSort": true,
|
||||
"fontStyle": "",
|
||||
"horizontalAlignment": "LEFT",
|
||||
"id": "certified",
|
||||
"index": 12,
|
||||
"isCellEditable": false,
|
||||
"isCellVisible": true,
|
||||
"isDerived": false,
|
||||
"isDisabled": false,
|
||||
"isDiscardVisible": true,
|
||||
"isEditable": false,
|
||||
"isSaveVisible": true,
|
||||
"isVisible": true,
|
||||
"label": "certified",
|
||||
"notation": "standard",
|
||||
"originalId": "certified",
|
||||
"sticky": "",
|
||||
"textColor": "",
|
||||
"textSize": "0.875rem",
|
||||
"thousandSeparator": true,
|
||||
"validation": {},
|
||||
"verticalAlignment": "CENTER",
|
||||
"width": 150
|
||||
},
|
||||
"copyright_license": {
|
||||
"alias": "copyright_license",
|
||||
"allowCellWrapping": false,
|
||||
"allowSameOptionsInNewRow": true,
|
||||
"cellBackground": "",
|
||||
"columnType": "text",
|
||||
"computedValue": "{{data_table.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"copyright_license\"]))}}",
|
||||
"currencyCode": "USD",
|
||||
"decimals": 0,
|
||||
"enableFilter": true,
|
||||
"enableSort": true,
|
||||
"fontStyle": "",
|
||||
"horizontalAlignment": "LEFT",
|
||||
"id": "copyright_license",
|
||||
"index": 11,
|
||||
"isCellEditable": false,
|
||||
"isCellVisible": true,
|
||||
"isDerived": false,
|
||||
"isDisabled": false,
|
||||
"isDiscardVisible": true,
|
||||
"isEditable": false,
|
||||
"isSaveVisible": true,
|
||||
"isVisible": true,
|
||||
"label": "copyright_license",
|
||||
"notation": "standard",
|
||||
"originalId": "copyright_license",
|
||||
"sticky": "",
|
||||
"textColor": "",
|
||||
"textSize": "0.875rem",
|
||||
"thousandSeparator": true,
|
||||
"validation": {},
|
||||
"verticalAlignment": "CENTER",
|
||||
"width": 150
|
||||
},
|
||||
"date_created": {
|
||||
"alias": "date_created",
|
||||
"allowCellWrapping": false,
|
||||
"allowSameOptionsInNewRow": true,
|
||||
"cellBackground": "",
|
||||
"columnType": "date",
|
||||
"computedValue": "{{data_table.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"date_created\"]))}}",
|
||||
"currencyCode": "USD",
|
||||
"decimals": 0,
|
||||
"enableFilter": true,
|
||||
"enableSort": true,
|
||||
"fontStyle": "",
|
||||
"horizontalAlignment": "LEFT",
|
||||
"id": "date_created",
|
||||
"index": 2,
|
||||
"isCellEditable": false,
|
||||
"isCellVisible": true,
|
||||
"isDerived": false,
|
||||
"isDisabled": false,
|
||||
"isDiscardVisible": true,
|
||||
"isEditable": false,
|
||||
"isSaveVisible": true,
|
||||
"isVisible": false,
|
||||
"label": "date_created",
|
||||
"notation": "standard",
|
||||
"originalId": "date_created",
|
||||
"sticky": "",
|
||||
"textColor": "",
|
||||
"textSize": "0.875rem",
|
||||
"thousandSeparator": true,
|
||||
"validation": {},
|
||||
"verticalAlignment": "CENTER",
|
||||
"width": 150
|
||||
},
|
||||
"date_updated": {
|
||||
"alias": "date_updated",
|
||||
"allowCellWrapping": false,
|
||||
"allowSameOptionsInNewRow": true,
|
||||
"cellBackground": "",
|
||||
"columnType": "text",
|
||||
"computedValue": "{{data_table.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"date_updated\"]))}}",
|
||||
"currencyCode": "USD",
|
||||
"decimals": 0,
|
||||
"enableFilter": true,
|
||||
"enableSort": true,
|
||||
"fontStyle": "",
|
||||
"horizontalAlignment": "LEFT",
|
||||
"id": "date_updated",
|
||||
"index": 4,
|
||||
"isCellEditable": false,
|
||||
"isCellVisible": true,
|
||||
"isDerived": false,
|
||||
"isDisabled": false,
|
||||
"isDiscardVisible": true,
|
||||
"isEditable": false,
|
||||
"isSaveVisible": true,
|
||||
"isVisible": false,
|
||||
"label": "date_updated",
|
||||
"notation": "standard",
|
||||
"originalId": "date_updated",
|
||||
"sticky": "",
|
||||
"textColor": "",
|
||||
"textSize": "0.875rem",
|
||||
"thousandSeparator": true,
|
||||
"validation": {},
|
||||
"verticalAlignment": "CENTER",
|
||||
"width": 150
|
||||
},
|
||||
"description": {
|
||||
"alias": "description",
|
||||
"allowCellWrapping": false,
|
||||
"allowSameOptionsInNewRow": true,
|
||||
"cellBackground": "",
|
||||
"columnType": "text",
|
||||
"computedValue": "{{data_table.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"description\"]))}}",
|
||||
"currencyCode": "USD",
|
||||
"decimals": 0,
|
||||
"enableFilter": true,
|
||||
"enableSort": true,
|
||||
"fontStyle": "",
|
||||
"horizontalAlignment": "LEFT",
|
||||
"id": "description",
|
||||
"index": 17,
|
||||
"isCellEditable": false,
|
||||
"isCellVisible": true,
|
||||
"isDerived": false,
|
||||
"isDisabled": false,
|
||||
"isDiscardVisible": true,
|
||||
"isEditable": false,
|
||||
"isSaveVisible": true,
|
||||
"isVisible": true,
|
||||
"label": "description",
|
||||
"notation": "standard",
|
||||
"originalId": "description",
|
||||
"sticky": "",
|
||||
"textColor": "",
|
||||
"textSize": "0.875rem",
|
||||
"thousandSeparator": true,
|
||||
"validation": {},
|
||||
"verticalAlignment": "CENTER",
|
||||
"width": 150
|
||||
},
|
||||
"documentation": {
|
||||
"alias": "documentation",
|
||||
"allowCellWrapping": false,
|
||||
"allowSameOptionsInNewRow": true,
|
||||
"cellBackground": "",
|
||||
"columnType": "text",
|
||||
"computedValue": "{{data_table.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"documentation\"]))}}",
|
||||
"currencyCode": "USD",
|
||||
"decimals": 0,
|
||||
"enableFilter": true,
|
||||
"enableSort": true,
|
||||
"fontStyle": "",
|
||||
"horizontalAlignment": "LEFT",
|
||||
"id": "documentation",
|
||||
"index": 8,
|
||||
"isCellEditable": false,
|
||||
"isCellVisible": true,
|
||||
"isDerived": false,
|
||||
"isDisabled": false,
|
||||
"isDiscardVisible": true,
|
||||
"isEditable": false,
|
||||
"isSaveVisible": true,
|
||||
"isVisible": true,
|
||||
"label": "documentation",
|
||||
"notation": "standard",
|
||||
"originalId": "documentation",
|
||||
"sticky": "",
|
||||
"textColor": "",
|
||||
"textSize": "0.875rem",
|
||||
"thousandSeparator": true,
|
||||
"validation": {},
|
||||
"verticalAlignment": "CENTER",
|
||||
"width": 150
|
||||
},
|
||||
"id": {
|
||||
"alias": "id",
|
||||
"allowCellWrapping": false,
|
||||
"allowSameOptionsInNewRow": true,
|
||||
"cellBackground": "",
|
||||
"columnType": "number",
|
||||
"computedValue": "{{data_table.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"id\"]))}}",
|
||||
"currencyCode": "USD",
|
||||
"decimals": 0,
|
||||
"enableFilter": true,
|
||||
"enableSort": true,
|
||||
"fontStyle": "",
|
||||
"horizontalAlignment": "LEFT",
|
||||
"id": "id",
|
||||
"index": 0,
|
||||
"isCellEditable": false,
|
||||
"isCellVisible": true,
|
||||
"isDerived": false,
|
||||
"isDisabled": false,
|
||||
"isDiscardVisible": true,
|
||||
"isEditable": false,
|
||||
"isSaveVisible": true,
|
||||
"isVisible": false,
|
||||
"label": "id",
|
||||
"notation": "standard",
|
||||
"originalId": "id",
|
||||
"sticky": "",
|
||||
"textColor": "",
|
||||
"textSize": "0.875rem",
|
||||
"thousandSeparator": true,
|
||||
"validation": {},
|
||||
"verticalAlignment": "CENTER",
|
||||
"width": 150
|
||||
},
|
||||
"name": {
|
||||
"alias": "name",
|
||||
"allowCellWrapping": false,
|
||||
"allowSameOptionsInNewRow": true,
|
||||
"cellBackground": "",
|
||||
"columnType": "text",
|
||||
"computedValue": "{{data_table.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"name\"]))}}",
|
||||
"currencyCode": "USD",
|
||||
"decimals": 0,
|
||||
"enableFilter": true,
|
||||
"enableSort": true,
|
||||
"fontStyle": "",
|
||||
"horizontalAlignment": "LEFT",
|
||||
"id": "name",
|
||||
"index": 5,
|
||||
"isCellEditable": false,
|
||||
"isCellVisible": true,
|
||||
"isDerived": false,
|
||||
"isDisabled": false,
|
||||
"isDiscardVisible": true,
|
||||
"isEditable": false,
|
||||
"isSaveVisible": true,
|
||||
"isVisible": true,
|
||||
"label": "name",
|
||||
"notation": "standard",
|
||||
"originalId": "name",
|
||||
"sticky": "",
|
||||
"textColor": "",
|
||||
"textSize": "0.875rem",
|
||||
"thousandSeparator": true,
|
||||
"validation": {},
|
||||
"verticalAlignment": "CENTER",
|
||||
"width": 150
|
||||
},
|
||||
"p2p": {
|
||||
"alias": "p2p",
|
||||
"allowCellWrapping": false,
|
||||
"allowSameOptionsInNewRow": true,
|
||||
"cellBackground": "",
|
||||
"columnType": "checkbox",
|
||||
"computedValue": "{{data_table.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"p2p\"]))}}",
|
||||
"currencyCode": "USD",
|
||||
"decimals": 0,
|
||||
"enableFilter": true,
|
||||
"enableSort": true,
|
||||
"fontStyle": "",
|
||||
"horizontalAlignment": "LEFT",
|
||||
"id": "p2p",
|
||||
"index": 15,
|
||||
"isCellEditable": false,
|
||||
"isCellVisible": true,
|
||||
"isDerived": false,
|
||||
"isDisabled": false,
|
||||
"isDiscardVisible": true,
|
||||
"isEditable": false,
|
||||
"isSaveVisible": true,
|
||||
"isVisible": true,
|
||||
"label": "p2p",
|
||||
"notation": "standard",
|
||||
"originalId": "p2p",
|
||||
"sticky": "",
|
||||
"textColor": "",
|
||||
"textSize": "0.875rem",
|
||||
"thousandSeparator": true,
|
||||
"validation": {},
|
||||
"verticalAlignment": "CENTER",
|
||||
"width": 150
|
||||
},
|
||||
"public_demo": {
|
||||
"alias": "public_demo",
|
||||
"allowCellWrapping": false,
|
||||
"allowSameOptionsInNewRow": true,
|
||||
"cellBackground": "",
|
||||
"columnType": "text",
|
||||
"computedValue": "{{data_table.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"public_demo\"]))}}",
|
||||
"currencyCode": "USD",
|
||||
"decimals": 0,
|
||||
"enableFilter": true,
|
||||
"enableSort": true,
|
||||
"fontStyle": "",
|
||||
"horizontalAlignment": "LEFT",
|
||||
"id": "public_demo",
|
||||
"index": 9,
|
||||
"isCellEditable": false,
|
||||
"isCellVisible": true,
|
||||
"isDerived": false,
|
||||
"isDisabled": false,
|
||||
"isDiscardVisible": true,
|
||||
"isEditable": false,
|
||||
"isSaveVisible": true,
|
||||
"isVisible": true,
|
||||
"label": "public_demo",
|
||||
"notation": "standard",
|
||||
"originalId": "public_demo",
|
||||
"sticky": "",
|
||||
"textColor": "",
|
||||
"textSize": "0.875rem",
|
||||
"thousandSeparator": true,
|
||||
"validation": {},
|
||||
"verticalAlignment": "CENTER",
|
||||
"width": 150
|
||||
},
|
||||
"repository": {
|
||||
"alias": "repository",
|
||||
"allowCellWrapping": false,
|
||||
"allowSameOptionsInNewRow": true,
|
||||
"cellBackground": "",
|
||||
"columnType": "text",
|
||||
"computedValue": "{{data_table.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"repository\"]))}}",
|
||||
"currencyCode": "USD",
|
||||
"decimals": 0,
|
||||
"enableFilter": true,
|
||||
"enableSort": true,
|
||||
"fontStyle": "",
|
||||
"horizontalAlignment": "LEFT",
|
||||
"id": "repository",
|
||||
"index": 7,
|
||||
"isCellEditable": false,
|
||||
"isCellVisible": true,
|
||||
"isDerived": false,
|
||||
"isDisabled": false,
|
||||
"isDiscardVisible": true,
|
||||
"isEditable": false,
|
||||
"isSaveVisible": true,
|
||||
"isVisible": true,
|
||||
"label": "repository",
|
||||
"notation": "standard",
|
||||
"originalId": "repository",
|
||||
"sticky": "",
|
||||
"textColor": "",
|
||||
"textSize": "0.875rem",
|
||||
"thousandSeparator": true,
|
||||
"validation": {},
|
||||
"verticalAlignment": "CENTER",
|
||||
"width": 150
|
||||
},
|
||||
"standalone": {
|
||||
"alias": "standalone",
|
||||
"allowCellWrapping": false,
|
||||
"allowSameOptionsInNewRow": true,
|
||||
"cellBackground": "",
|
||||
"columnType": "checkbox",
|
||||
"computedValue": "{{data_table.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"standalone\"]))}}",
|
||||
"currencyCode": "USD",
|
||||
"decimals": 0,
|
||||
"enableFilter": true,
|
||||
"enableSort": true,
|
||||
"fontStyle": "",
|
||||
"horizontalAlignment": "LEFT",
|
||||
"id": "standalone",
|
||||
"index": 16,
|
||||
"isCellEditable": false,
|
||||
"isCellVisible": true,
|
||||
"isDerived": false,
|
||||
"isDisabled": false,
|
||||
"isDiscardVisible": true,
|
||||
"isEditable": false,
|
||||
"isSaveVisible": true,
|
||||
"isVisible": true,
|
||||
"label": "standalone",
|
||||
"notation": "standard",
|
||||
"originalId": "standalone",
|
||||
"sticky": "",
|
||||
"textColor": "",
|
||||
"textSize": "0.875rem",
|
||||
"thousandSeparator": true,
|
||||
"validation": {},
|
||||
"verticalAlignment": "CENTER",
|
||||
"width": 150
|
||||
},
|
||||
"target_market": {
|
||||
"alias": "target_market",
|
||||
"allowCellWrapping": false,
|
||||
"allowSameOptionsInNewRow": true,
|
||||
"cellBackground": "",
|
||||
"columnType": "text",
|
||||
"computedValue": "{{data_table.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"target_market\"]))}}",
|
||||
"currencyCode": "USD",
|
||||
"decimals": 0,
|
||||
"enableFilter": true,
|
||||
"enableSort": true,
|
||||
"fontStyle": "",
|
||||
"horizontalAlignment": "LEFT",
|
||||
"id": "target_market",
|
||||
"index": 10,
|
||||
"isCellEditable": false,
|
||||
"isCellVisible": true,
|
||||
"isDerived": false,
|
||||
"isDisabled": false,
|
||||
"isDiscardVisible": true,
|
||||
"isEditable": false,
|
||||
"isSaveVisible": true,
|
||||
"isVisible": true,
|
||||
"label": "target_market",
|
||||
"notation": "standard",
|
||||
"originalId": "target_market",
|
||||
"sticky": "",
|
||||
"textColor": "",
|
||||
"textSize": "0.875rem",
|
||||
"thousandSeparator": true,
|
||||
"validation": {},
|
||||
"verticalAlignment": "CENTER",
|
||||
"width": 150
|
||||
},
|
||||
"tested": {
|
||||
"alias": "tested",
|
||||
"allowCellWrapping": false,
|
||||
"allowSameOptionsInNewRow": true,
|
||||
"cellBackground": "",
|
||||
"columnType": "checkbox",
|
||||
"computedValue": "{{data_table.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"tested\"]))}}",
|
||||
"currencyCode": "USD",
|
||||
"decimals": 0,
|
||||
"enableFilter": true,
|
||||
"enableSort": true,
|
||||
"fontStyle": "",
|
||||
"horizontalAlignment": "LEFT",
|
||||
"id": "tested",
|
||||
"index": 13,
|
||||
"isCellEditable": false,
|
||||
"isCellVisible": true,
|
||||
"isDerived": false,
|
||||
"isDisabled": false,
|
||||
"isDiscardVisible": true,
|
||||
"isEditable": false,
|
||||
"isSaveVisible": true,
|
||||
"isVisible": true,
|
||||
"label": "tested",
|
||||
"notation": "standard",
|
||||
"originalId": "tested",
|
||||
"sticky": "",
|
||||
"textColor": "",
|
||||
"textSize": "0.875rem",
|
||||
"thousandSeparator": true,
|
||||
"validation": {},
|
||||
"verticalAlignment": "CENTER",
|
||||
"width": 150
|
||||
},
|
||||
"user_created": {
|
||||
"alias": "user_created",
|
||||
"allowCellWrapping": false,
|
||||
"allowSameOptionsInNewRow": true,
|
||||
"cellBackground": "",
|
||||
"columnType": "text",
|
||||
"computedValue": "{{data_table.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"user_created\"]))}}",
|
||||
"currencyCode": "USD",
|
||||
"decimals": 0,
|
||||
"enableFilter": true,
|
||||
"enableSort": true,
|
||||
"fontStyle": "",
|
||||
"horizontalAlignment": "LEFT",
|
||||
"id": "user_created",
|
||||
"index": 1,
|
||||
"isCellEditable": false,
|
||||
"isCellVisible": true,
|
||||
"isDerived": false,
|
||||
"isDisabled": false,
|
||||
"isDiscardVisible": true,
|
||||
"isEditable": false,
|
||||
"isSaveVisible": true,
|
||||
"isVisible": false,
|
||||
"label": "user_created",
|
||||
"notation": "standard",
|
||||
"originalId": "user_created",
|
||||
"sticky": "",
|
||||
"textColor": "",
|
||||
"textSize": "0.875rem",
|
||||
"thousandSeparator": true,
|
||||
"validation": {},
|
||||
"verticalAlignment": "CENTER",
|
||||
"width": 150
|
||||
},
|
||||
"user_updated": {
|
||||
"alias": "user_updated",
|
||||
"allowCellWrapping": false,
|
||||
"allowSameOptionsInNewRow": true,
|
||||
"cellBackground": "",
|
||||
"columnType": "text",
|
||||
"computedValue": "{{data_table.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"user_updated\"]))}}",
|
||||
"currencyCode": "USD",
|
||||
"decimals": 0,
|
||||
"enableFilter": true,
|
||||
"enableSort": true,
|
||||
"fontStyle": "",
|
||||
"horizontalAlignment": "LEFT",
|
||||
"id": "user_updated",
|
||||
"index": 3,
|
||||
"isCellEditable": false,
|
||||
"isCellVisible": true,
|
||||
"isDerived": false,
|
||||
"isDisabled": false,
|
||||
"isDiscardVisible": true,
|
||||
"isEditable": false,
|
||||
"isSaveVisible": true,
|
||||
"isVisible": false,
|
||||
"label": "user_updated",
|
||||
"notation": "standard",
|
||||
"originalId": "user_updated",
|
||||
"sticky": "",
|
||||
"textColor": "",
|
||||
"textSize": "0.875rem",
|
||||
"thousandSeparator": true,
|
||||
"validation": {},
|
||||
"verticalAlignment": "CENTER",
|
||||
"width": 150
|
||||
},
|
||||
"website": {
|
||||
"alias": "website",
|
||||
"allowCellWrapping": false,
|
||||
"allowSameOptionsInNewRow": true,
|
||||
"cellBackground": "",
|
||||
"columnType": "text",
|
||||
"computedValue": "{{data_table.processedTableData.map((currentRow, currentIndex) => ( currentRow[\"website\"]))}}",
|
||||
"currencyCode": "USD",
|
||||
"decimals": 0,
|
||||
"enableFilter": true,
|
||||
"enableSort": true,
|
||||
"fontStyle": "",
|
||||
"horizontalAlignment": "LEFT",
|
||||
"id": "website",
|
||||
"index": 6,
|
||||
"isCellEditable": false,
|
||||
"isCellVisible": true,
|
||||
"isDerived": false,
|
||||
"isDisabled": false,
|
||||
"isDiscardVisible": true,
|
||||
"isEditable": false,
|
||||
"isSaveVisible": true,
|
||||
"isVisible": true,
|
||||
"label": "website",
|
||||
"notation": "standard",
|
||||
"originalId": "website",
|
||||
"sticky": "",
|
||||
"textColor": "",
|
||||
"textSize": "0.875rem",
|
||||
"thousandSeparator": true,
|
||||
"validation": {},
|
||||
"verticalAlignment": "CENTER",
|
||||
"width": 150
|
||||
}
|
||||
},
|
||||
"renderMode": "CANVAS",
|
||||
"rightColumn": 64,
|
||||
"searchKey": "",
|
||||
"serverSidePaginationEnabled": true,
|
||||
"tableData": "{{SelectQuery.data}}",
|
||||
"textSize": "0.875rem",
|
||||
"topRow": 6,
|
||||
"totalRecordsCount": 0,
|
||||
"type": "TABLE_WIDGET_V2",
|
||||
"version": 3,
|
||||
"verticalAlignment": "CENTER",
|
||||
"widgetId": "hpy3pb4xft",
|
||||
"widgetName": "data_table"
|
||||
}
|
||||
36
pages/foss.raw/widgets/Container1/refresh_btn.json
Normal file
36
pages/foss.raw/widgets/Container1/refresh_btn.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"bottomRow": 5,
|
||||
"boxShadow": "none",
|
||||
"buttonColor": "{{appsmith.theme.colors.primaryColor}}",
|
||||
"buttonVariant": "PRIMARY",
|
||||
"dynamicBindingPathList": [
|
||||
{
|
||||
"key": "buttonColor"
|
||||
},
|
||||
{
|
||||
"key": "borderRadius"
|
||||
}
|
||||
],
|
||||
"dynamicTriggerPathList": [
|
||||
{
|
||||
"key": "onClick"
|
||||
}
|
||||
],
|
||||
"iconName": "refresh",
|
||||
"isDisabled": false,
|
||||
"isLoading": false,
|
||||
"isVisible": "true",
|
||||
"labelTextSize": "0.875rem",
|
||||
"leftColumn": 60,
|
||||
"onClick": "{{SelectQuery.run()}}",
|
||||
"parentColumnSpace": 12.0703125,
|
||||
"parentId": "59rw5mx0bq",
|
||||
"parentRowSpace": 10,
|
||||
"rightColumn": 64,
|
||||
"topRow": 1,
|
||||
"type": "ICON_BUTTON_WIDGET",
|
||||
"version": 1,
|
||||
"widgetId": "xp5u9a9nzq",
|
||||
"widgetName": "refresh_btn"
|
||||
}
|
||||
55
pages/foss.raw/widgets/Insert_Modal/Insert_Modal.json
Normal file
55
pages/foss.raw/widgets/Insert_Modal/Insert_Modal.json
Normal file
@@ -0,0 +1,55 @@
|
||||
{
|
||||
"borderRadius": "0px",
|
||||
"bottomRow": 40,
|
||||
"boxShadow": "none",
|
||||
"canEscapeKeyClose": true,
|
||||
"canOutsideClickClose": true,
|
||||
"children": [
|
||||
{
|
||||
"borderRadius": "0px",
|
||||
"bottomRow": 880,
|
||||
"boxShadow": "none",
|
||||
"canExtend": true,
|
||||
"detachFromLayout": true,
|
||||
"dynamicBindingPathList": [],
|
||||
"dynamicTriggerPathList": [],
|
||||
"isDisabled": false,
|
||||
"isLoading": false,
|
||||
"isVisible": "true",
|
||||
"labelTextSize": "0.875rem",
|
||||
"leftColumn": 0,
|
||||
"minHeight": 884,
|
||||
"parentColumnSpace": 1,
|
||||
"parentId": "vmorzie6eq",
|
||||
"parentRowSpace": 1,
|
||||
"rightColumn": 453.1875,
|
||||
"shouldScrollContents": false,
|
||||
"topRow": 0,
|
||||
"type": "CANVAS_WIDGET",
|
||||
"version": 1,
|
||||
"widgetId": "9rhv3ioohq",
|
||||
"widgetName": "Canvas4"
|
||||
}
|
||||
],
|
||||
"detachFromLayout": true,
|
||||
"dynamicBindingPathList": [],
|
||||
"dynamicHeight": "FIXED",
|
||||
"dynamicTriggerPathList": [],
|
||||
"height": 884,
|
||||
"isLoading": false,
|
||||
"labelTextSize": "0.875rem",
|
||||
"leftColumn": 17,
|
||||
"maxDynamicHeight": 9000,
|
||||
"minDynamicHeight": 4,
|
||||
"parentColumnSpace": 18.8828125,
|
||||
"parentId": "0",
|
||||
"parentRowSpace": 10,
|
||||
"rightColumn": 41,
|
||||
"shouldScrollContents": false,
|
||||
"topRow": 16,
|
||||
"type": "MODAL_WIDGET",
|
||||
"version": 2,
|
||||
"widgetId": "vmorzie6eq",
|
||||
"widgetName": "Insert_Modal",
|
||||
"width": 532
|
||||
}
|
||||
766
pages/foss.raw/widgets/Insert_Modal/insert_form.json
Normal file
766
pages/foss.raw/widgets/Insert_Modal/insert_form.json
Normal file
@@ -0,0 +1,766 @@
|
||||
{
|
||||
"animateLoading": true,
|
||||
"autoGenerateForm": true,
|
||||
"backgroundColor": "#fff",
|
||||
"borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"bottomRow": 81,
|
||||
"boxShadow": "none",
|
||||
"childStylesheet": {
|
||||
"ARRAY": {
|
||||
"accentColor": "{{appsmith.theme.colors.primaryColor}}",
|
||||
"borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"boxShadow": "none",
|
||||
"cellBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"cellBoxShadow": "none"
|
||||
},
|
||||
"CHECKBOX": {
|
||||
"accentColor": "{{appsmith.theme.colors.primaryColor}}",
|
||||
"borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}"
|
||||
},
|
||||
"CURRENCY_INPUT": {
|
||||
"accentColor": "{{appsmith.theme.colors.primaryColor}}",
|
||||
"borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"boxShadow": "none"
|
||||
},
|
||||
"DATEPICKER": {
|
||||
"accentColor": "{{appsmith.theme.colors.primaryColor}}",
|
||||
"borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"boxShadow": "none"
|
||||
},
|
||||
"EMAIL_INPUT": {
|
||||
"accentColor": "{{appsmith.theme.colors.primaryColor}}",
|
||||
"borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"boxShadow": "none"
|
||||
},
|
||||
"MULTILINE_TEXT_INPUT": {
|
||||
"accentColor": "{{appsmith.theme.colors.primaryColor}}",
|
||||
"borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"boxShadow": "none"
|
||||
},
|
||||
"MULTISELECT": {
|
||||
"accentColor": "{{appsmith.theme.colors.primaryColor}}",
|
||||
"borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"boxShadow": "none"
|
||||
},
|
||||
"NUMBER_INPUT": {
|
||||
"accentColor": "{{appsmith.theme.colors.primaryColor}}",
|
||||
"borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"boxShadow": "none"
|
||||
},
|
||||
"OBJECT": {
|
||||
"borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"boxShadow": "none",
|
||||
"cellBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"cellBoxShadow": "none"
|
||||
},
|
||||
"PASSWORD_INPUT": {
|
||||
"accentColor": "{{appsmith.theme.colors.primaryColor}}",
|
||||
"borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"boxShadow": "none"
|
||||
},
|
||||
"PHONE_NUMBER_INPUT": {
|
||||
"accentColor": "{{appsmith.theme.colors.primaryColor}}",
|
||||
"borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"boxShadow": "none"
|
||||
},
|
||||
"RADIO_GROUP": {
|
||||
"accentColor": "{{appsmith.theme.colors.primaryColor}}",
|
||||
"boxShadow": "none"
|
||||
},
|
||||
"SELECT": {
|
||||
"accentColor": "{{appsmith.theme.colors.primaryColor}}",
|
||||
"borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"boxShadow": "none"
|
||||
},
|
||||
"SWITCH": {
|
||||
"accentColor": "{{appsmith.theme.colors.primaryColor}}",
|
||||
"boxShadow": "none"
|
||||
},
|
||||
"TEXT_INPUT": {
|
||||
"accentColor": "{{appsmith.theme.colors.primaryColor}}",
|
||||
"borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"boxShadow": "none"
|
||||
}
|
||||
},
|
||||
"disabledWhenInvalid": true,
|
||||
"displayName": "JSON Form",
|
||||
"dynamicBindingPathList": [
|
||||
{
|
||||
"key": "schema.__root_schema__.defaultValue"
|
||||
},
|
||||
{
|
||||
"key": "sourceData"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.borderRadius"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.cellBorderRadius"
|
||||
},
|
||||
{
|
||||
"key": "borderRadius"
|
||||
},
|
||||
{
|
||||
"key": "submitButtonStyles.buttonColor"
|
||||
},
|
||||
{
|
||||
"key": "submitButtonStyles.borderRadius"
|
||||
},
|
||||
{
|
||||
"key": "resetButtonStyles.borderRadius"
|
||||
},
|
||||
{
|
||||
"key": "resetButtonStyles.buttonColor"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.user_created.defaultValue"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.user_created.borderRadius"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.user_created.accentColor"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.date_created.defaultValue"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.date_created.borderRadius"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.date_created.accentColor"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.user_updated.defaultValue"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.user_updated.borderRadius"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.user_updated.accentColor"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.date_updated.defaultValue"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.date_updated.borderRadius"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.date_updated.accentColor"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.name.defaultValue"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.name.borderRadius"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.name.accentColor"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.website.defaultValue"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.website.borderRadius"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.website.accentColor"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.repository.defaultValue"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.repository.borderRadius"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.repository.accentColor"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.documentation.defaultValue"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.documentation.borderRadius"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.documentation.accentColor"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.public_demo.defaultValue"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.public_demo.borderRadius"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.public_demo.accentColor"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.target_market.defaultValue"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.target_market.borderRadius"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.target_market.accentColor"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.copyright_license.defaultValue"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.copyright_license.borderRadius"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.copyright_license.accentColor"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.certified.defaultValue"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.certified.accentColor"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.tested.defaultValue"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.tested.accentColor"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.category.defaultValue"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.category.borderRadius"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.category.accentColor"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.p2p.defaultValue"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.p2p.accentColor"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.standalone.defaultValue"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.standalone.accentColor"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.description.defaultValue"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.description.borderRadius"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.description.accentColor"
|
||||
}
|
||||
],
|
||||
"dynamicHeight": "FIXED",
|
||||
"dynamicPropertyPathList": [
|
||||
{
|
||||
"key": "schema.__root_schema__.children.date_of_birth.defaultValue"
|
||||
},
|
||||
{
|
||||
"key": "onSubmit"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.date_created.defaultValue"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.date_updated.defaultValue"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.certified.defaultValue"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.tested.defaultValue"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.p2p.defaultValue"
|
||||
},
|
||||
{
|
||||
"key": "schema.__root_schema__.children.standalone.defaultValue"
|
||||
}
|
||||
],
|
||||
"dynamicTriggerPathList": [
|
||||
{
|
||||
"key": "onSubmit"
|
||||
}
|
||||
],
|
||||
"fieldLimitExceeded": false,
|
||||
"fixedFooter": true,
|
||||
"hideCard": false,
|
||||
"iconSVG": "/static/media/icon.6bacf7df.svg",
|
||||
"isLoading": false,
|
||||
"isVisible": "true",
|
||||
"key": "h9l9ozr8op",
|
||||
"labelTextSize": "0.875rem",
|
||||
"leftColumn": 0,
|
||||
"maxDynamicHeight": 9000,
|
||||
"minDynamicHeight": 4,
|
||||
"onSubmit": "{{InsertQuery.run(\n\t() => SelectQuery.run()\n\t\t\t\t\t.then(() => closeModal('Insert_Modal')), \n\t(error) => showAlert(`Error while inserting resource!\\n ${error}`,'error'))\n}}",
|
||||
"parentColumnSpace": 8.125,
|
||||
"parentId": "9rhv3ioohq",
|
||||
"parentRowSpace": 10,
|
||||
"renderMode": "CANVAS",
|
||||
"resetButtonLabel": "Reset",
|
||||
"resetButtonStyles": {
|
||||
"borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"boxShadow": "none",
|
||||
"buttonColor": "{{appsmith.theme.colors.primaryColor}}",
|
||||
"buttonVariant": "SECONDARY"
|
||||
},
|
||||
"rightColumn": 64,
|
||||
"schema": {
|
||||
"__root_schema__": {
|
||||
"accessor": "__root_schema__",
|
||||
"borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"boxShadow": "none",
|
||||
"cellBorderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"cellBoxShadow": "none",
|
||||
"children": {
|
||||
"category": {
|
||||
"accentColor": "{{((sourceData, formData, fieldState) => ((appsmith.theme.colors.primaryColor)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"accessor": "category",
|
||||
"borderRadius": "{{((sourceData, formData, fieldState) => ((appsmith.theme.borderRadius.appBorderRadius)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"boxShadow": "none",
|
||||
"children": {},
|
||||
"dataType": "array",
|
||||
"defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.category))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"fieldType": "Multiselect",
|
||||
"identifier": "category",
|
||||
"isCustomField": false,
|
||||
"isDisabled": false,
|
||||
"isFilterable": false,
|
||||
"isRequired": false,
|
||||
"isVisible": true,
|
||||
"label": "Category",
|
||||
"labelTextSize": "0.875rem",
|
||||
"options": [
|
||||
{
|
||||
"label": "Blue",
|
||||
"value": "BLUE"
|
||||
},
|
||||
{
|
||||
"label": "Green",
|
||||
"value": "GREEN"
|
||||
},
|
||||
{
|
||||
"label": "Red",
|
||||
"value": "RED"
|
||||
}
|
||||
],
|
||||
"originalIdentifier": "category",
|
||||
"position": 13,
|
||||
"serverSideFiltering": false,
|
||||
"sourceData": [
|
||||
"Smart Home"
|
||||
]
|
||||
},
|
||||
"certified": {
|
||||
"accentColor": "{{((sourceData, formData, fieldState) => ((appsmith.theme.colors.primaryColor)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"accessor": "certified",
|
||||
"alignWidget": "LEFT",
|
||||
"boxShadow": "none",
|
||||
"children": {},
|
||||
"dataType": "boolean",
|
||||
"defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.certified))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"fieldType": "Switch",
|
||||
"identifier": "certified",
|
||||
"isCustomField": false,
|
||||
"isDisabled": false,
|
||||
"isRequired": false,
|
||||
"isVisible": true,
|
||||
"label": "Certified",
|
||||
"labelTextSize": "0.875rem",
|
||||
"originalIdentifier": "certified",
|
||||
"position": 11,
|
||||
"sourceData": false
|
||||
},
|
||||
"copyright_license": {
|
||||
"accentColor": "{{((sourceData, formData, fieldState) => ((appsmith.theme.colors.primaryColor)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"accessor": "copyright_license",
|
||||
"borderRadius": "{{((sourceData, formData, fieldState) => ((appsmith.theme.borderRadius.appBorderRadius)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"boxShadow": "none",
|
||||
"children": {},
|
||||
"dataType": "string",
|
||||
"defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.copyright_license))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"fieldType": "Text Input",
|
||||
"iconAlign": "left",
|
||||
"identifier": "copyright_license",
|
||||
"isCustomField": false,
|
||||
"isDisabled": false,
|
||||
"isRequired": false,
|
||||
"isSpellCheck": false,
|
||||
"isVisible": true,
|
||||
"label": "Copyright License",
|
||||
"labelTextSize": "0.875rem",
|
||||
"originalIdentifier": "copyright_license",
|
||||
"position": 10,
|
||||
"sourceData": "https://www.apache.org/licenses/LICENSE-2.0"
|
||||
},
|
||||
"date_created": {
|
||||
"accentColor": "{{((sourceData, formData, fieldState) => ((appsmith.theme.colors.primaryColor)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"accessor": "date_created",
|
||||
"borderRadius": "{{((sourceData, formData, fieldState) => ((appsmith.theme.borderRadius.appBorderRadius)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"boxShadow": "none",
|
||||
"children": {},
|
||||
"closeOnSelection": false,
|
||||
"convertToISO": false,
|
||||
"dataType": "string",
|
||||
"dateFormat": "YYYY-MM-DDTHH:mm:ss.sssZ",
|
||||
"defaultValue": "{{((sourceData, formData, fieldState) => (moment(sourceData.date_created, \"YYYY-MM-DDTHH:mm:ss.sssZ\").format(\"YYYY-MM-DDTHH:mm:ss.sssZ\")))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"fieldType": "Datepicker",
|
||||
"identifier": "date_created",
|
||||
"isCustomField": false,
|
||||
"isDisabled": false,
|
||||
"isRequired": false,
|
||||
"isVisible": true,
|
||||
"label": "Date Created",
|
||||
"labelTextSize": "0.875rem",
|
||||
"maxDate": "2121-12-31T18:29:00.000Z",
|
||||
"minDate": "1920-12-31T18:30:00.000Z",
|
||||
"originalIdentifier": "date_created",
|
||||
"position": 1,
|
||||
"shortcuts": false,
|
||||
"sourceData": "2025-04-04T22:06:11.126Z",
|
||||
"timePrecision": "minute"
|
||||
},
|
||||
"date_updated": {
|
||||
"accentColor": "{{((sourceData, formData, fieldState) => ((appsmith.theme.colors.primaryColor)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"accessor": "date_updated",
|
||||
"borderRadius": "{{((sourceData, formData, fieldState) => ((appsmith.theme.borderRadius.appBorderRadius)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"boxShadow": "none",
|
||||
"children": {},
|
||||
"closeOnSelection": false,
|
||||
"convertToISO": false,
|
||||
"dataType": "string",
|
||||
"dateFormat": "YYYY-MM-DDTHH:mm:ss.sssZ",
|
||||
"defaultValue": "{{((sourceData, formData, fieldState) => (moment(sourceData.date_updated, \"YYYY-MM-DDTHH:mm:ss.sssZ\").format(\"YYYY-MM-DDTHH:mm:ss.sssZ\")))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"fieldType": "Datepicker",
|
||||
"identifier": "date_updated",
|
||||
"isCustomField": false,
|
||||
"isDisabled": false,
|
||||
"isRequired": false,
|
||||
"isVisible": true,
|
||||
"label": "Date Updated",
|
||||
"labelTextSize": "0.875rem",
|
||||
"maxDate": "2121-12-31T18:29:00.000Z",
|
||||
"minDate": "1920-12-31T18:30:00.000Z",
|
||||
"originalIdentifier": "date_updated",
|
||||
"position": 3,
|
||||
"shortcuts": false,
|
||||
"sourceData": "2025-04-06T15:27:15.736Z",
|
||||
"timePrecision": "minute"
|
||||
},
|
||||
"description": {
|
||||
"accentColor": "{{((sourceData, formData, fieldState) => ((appsmith.theme.colors.primaryColor)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"accessor": "description",
|
||||
"borderRadius": "{{((sourceData, formData, fieldState) => ((appsmith.theme.borderRadius.appBorderRadius)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"boxShadow": "none",
|
||||
"children": {},
|
||||
"dataType": "string",
|
||||
"defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.description))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"fieldType": "Text Input",
|
||||
"iconAlign": "left",
|
||||
"identifier": "description",
|
||||
"isCustomField": false,
|
||||
"isDisabled": false,
|
||||
"isRequired": false,
|
||||
"isSpellCheck": false,
|
||||
"isVisible": true,
|
||||
"label": "Description",
|
||||
"labelTextSize": "0.875rem",
|
||||
"originalIdentifier": "description",
|
||||
"position": 16,
|
||||
"sourceData": "Open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts."
|
||||
},
|
||||
"documentation": {
|
||||
"accentColor": "{{((sourceData, formData, fieldState) => ((appsmith.theme.colors.primaryColor)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"accessor": "documentation",
|
||||
"borderRadius": "{{((sourceData, formData, fieldState) => ((appsmith.theme.borderRadius.appBorderRadius)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"boxShadow": "none",
|
||||
"children": {},
|
||||
"dataType": "string",
|
||||
"defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.documentation))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"fieldType": "Text Input",
|
||||
"iconAlign": "left",
|
||||
"identifier": "documentation",
|
||||
"isCustomField": false,
|
||||
"isDisabled": false,
|
||||
"isRequired": false,
|
||||
"isSpellCheck": false,
|
||||
"isVisible": true,
|
||||
"label": "Documentation",
|
||||
"labelTextSize": "0.875rem",
|
||||
"originalIdentifier": "documentation",
|
||||
"position": 7,
|
||||
"sourceData": "https://www.home-assistant.io/docs/"
|
||||
},
|
||||
"name": {
|
||||
"accentColor": "{{((sourceData, formData, fieldState) => ((appsmith.theme.colors.primaryColor)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"accessor": "name",
|
||||
"borderRadius": "{{((sourceData, formData, fieldState) => ((appsmith.theme.borderRadius.appBorderRadius)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"boxShadow": "none",
|
||||
"children": {},
|
||||
"dataType": "string",
|
||||
"defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.name))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"fieldType": "Text Input",
|
||||
"iconAlign": "left",
|
||||
"identifier": "name",
|
||||
"isCustomField": false,
|
||||
"isDisabled": false,
|
||||
"isRequired": false,
|
||||
"isSpellCheck": false,
|
||||
"isVisible": true,
|
||||
"label": "Name",
|
||||
"labelTextSize": "0.875rem",
|
||||
"originalIdentifier": "name",
|
||||
"position": 4,
|
||||
"sourceData": "Home Assistant"
|
||||
},
|
||||
"p2p": {
|
||||
"accentColor": "{{((sourceData, formData, fieldState) => ((appsmith.theme.colors.primaryColor)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"accessor": "p2p",
|
||||
"alignWidget": "LEFT",
|
||||
"boxShadow": "none",
|
||||
"children": {},
|
||||
"dataType": "boolean",
|
||||
"defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.p2p))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"fieldType": "Switch",
|
||||
"identifier": "p2p",
|
||||
"isCustomField": false,
|
||||
"isDisabled": false,
|
||||
"isRequired": false,
|
||||
"isVisible": true,
|
||||
"label": "P 2 P",
|
||||
"labelTextSize": "0.875rem",
|
||||
"originalIdentifier": "p2p",
|
||||
"position": 14,
|
||||
"sourceData": false
|
||||
},
|
||||
"public_demo": {
|
||||
"accentColor": "{{((sourceData, formData, fieldState) => ((appsmith.theme.colors.primaryColor)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"accessor": "public_demo",
|
||||
"borderRadius": "{{((sourceData, formData, fieldState) => ((appsmith.theme.borderRadius.appBorderRadius)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"boxShadow": "none",
|
||||
"children": {},
|
||||
"dataType": "string",
|
||||
"defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.public_demo))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"fieldType": "Text Input",
|
||||
"iconAlign": "left",
|
||||
"identifier": "public_demo",
|
||||
"isCustomField": false,
|
||||
"isDisabled": false,
|
||||
"isRequired": false,
|
||||
"isSpellCheck": false,
|
||||
"isVisible": true,
|
||||
"label": "Public Demo",
|
||||
"labelTextSize": "0.875rem",
|
||||
"originalIdentifier": "public_demo",
|
||||
"position": 8,
|
||||
"sourceData": "https://demo.home-assistant.io/#/lovelace/home"
|
||||
},
|
||||
"repository": {
|
||||
"accentColor": "{{((sourceData, formData, fieldState) => ((appsmith.theme.colors.primaryColor)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"accessor": "repository",
|
||||
"borderRadius": "{{((sourceData, formData, fieldState) => ((appsmith.theme.borderRadius.appBorderRadius)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"boxShadow": "none",
|
||||
"children": {},
|
||||
"dataType": "string",
|
||||
"defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.repository))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"fieldType": "Text Input",
|
||||
"iconAlign": "left",
|
||||
"identifier": "repository",
|
||||
"isCustomField": false,
|
||||
"isDisabled": false,
|
||||
"isRequired": false,
|
||||
"isSpellCheck": false,
|
||||
"isVisible": true,
|
||||
"label": "Repository",
|
||||
"labelTextSize": "0.875rem",
|
||||
"originalIdentifier": "repository",
|
||||
"position": 6,
|
||||
"sourceData": "https://github.com/home-assistant"
|
||||
},
|
||||
"standalone": {
|
||||
"accentColor": "{{((sourceData, formData, fieldState) => ((appsmith.theme.colors.primaryColor)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"accessor": "standalone",
|
||||
"alignWidget": "LEFT",
|
||||
"boxShadow": "none",
|
||||
"children": {},
|
||||
"dataType": "boolean",
|
||||
"defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.standalone))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"fieldType": "Switch",
|
||||
"identifier": "standalone",
|
||||
"isCustomField": false,
|
||||
"isDisabled": false,
|
||||
"isRequired": false,
|
||||
"isVisible": true,
|
||||
"label": "Standalone",
|
||||
"labelTextSize": "0.875rem",
|
||||
"originalIdentifier": "standalone",
|
||||
"position": 15,
|
||||
"sourceData": true
|
||||
},
|
||||
"target_market": {
|
||||
"accentColor": "{{((sourceData, formData, fieldState) => ((appsmith.theme.colors.primaryColor)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"accessor": "target_market",
|
||||
"borderRadius": "{{((sourceData, formData, fieldState) => ((appsmith.theme.borderRadius.appBorderRadius)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"boxShadow": "none",
|
||||
"children": {},
|
||||
"dataType": "array",
|
||||
"defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.target_market))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"fieldType": "Multiselect",
|
||||
"identifier": "target_market",
|
||||
"isCustomField": false,
|
||||
"isDisabled": false,
|
||||
"isFilterable": false,
|
||||
"isRequired": false,
|
||||
"isVisible": true,
|
||||
"label": "Target Market",
|
||||
"labelTextSize": "0.875rem",
|
||||
"options": [
|
||||
{
|
||||
"label": "Blue",
|
||||
"value": "BLUE"
|
||||
},
|
||||
{
|
||||
"label": "Green",
|
||||
"value": "GREEN"
|
||||
},
|
||||
{
|
||||
"label": "Red",
|
||||
"value": "RED"
|
||||
}
|
||||
],
|
||||
"originalIdentifier": "target_market",
|
||||
"position": 9,
|
||||
"serverSideFiltering": false,
|
||||
"sourceData": [
|
||||
"consumer"
|
||||
]
|
||||
},
|
||||
"tested": {
|
||||
"accentColor": "{{((sourceData, formData, fieldState) => ((appsmith.theme.colors.primaryColor)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"accessor": "tested",
|
||||
"alignWidget": "LEFT",
|
||||
"boxShadow": "none",
|
||||
"children": {},
|
||||
"dataType": "boolean",
|
||||
"defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.tested))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"fieldType": "Switch",
|
||||
"identifier": "tested",
|
||||
"isCustomField": false,
|
||||
"isDisabled": false,
|
||||
"isRequired": false,
|
||||
"isVisible": true,
|
||||
"label": "Tested",
|
||||
"labelTextSize": "0.875rem",
|
||||
"originalIdentifier": "tested",
|
||||
"position": 12,
|
||||
"sourceData": true
|
||||
},
|
||||
"user_created": {
|
||||
"accentColor": "{{((sourceData, formData, fieldState) => ((appsmith.theme.colors.primaryColor)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"accessor": "user_created",
|
||||
"borderRadius": "{{((sourceData, formData, fieldState) => ((appsmith.theme.borderRadius.appBorderRadius)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"boxShadow": "none",
|
||||
"children": {},
|
||||
"dataType": "string",
|
||||
"defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.user_created))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"fieldType": "Text Input",
|
||||
"iconAlign": "left",
|
||||
"identifier": "user_created",
|
||||
"isCustomField": false,
|
||||
"isDisabled": false,
|
||||
"isRequired": false,
|
||||
"isSpellCheck": false,
|
||||
"isVisible": true,
|
||||
"label": "User Created",
|
||||
"labelTextSize": "0.875rem",
|
||||
"originalIdentifier": "user_created",
|
||||
"position": 0,
|
||||
"sourceData": "2b068ccc-a74f-4422-b5d6-185251510c97"
|
||||
},
|
||||
"user_updated": {
|
||||
"accentColor": "{{((sourceData, formData, fieldState) => ((appsmith.theme.colors.primaryColor)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"accessor": "user_updated",
|
||||
"borderRadius": "{{((sourceData, formData, fieldState) => ((appsmith.theme.borderRadius.appBorderRadius)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"boxShadow": "none",
|
||||
"children": {},
|
||||
"dataType": "string",
|
||||
"defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.user_updated))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"fieldType": "Text Input",
|
||||
"iconAlign": "left",
|
||||
"identifier": "user_updated",
|
||||
"isCustomField": false,
|
||||
"isDisabled": false,
|
||||
"isRequired": false,
|
||||
"isSpellCheck": false,
|
||||
"isVisible": true,
|
||||
"label": "User Updated",
|
||||
"labelTextSize": "0.875rem",
|
||||
"originalIdentifier": "user_updated",
|
||||
"position": 2,
|
||||
"sourceData": "2b068ccc-a74f-4422-b5d6-185251510c97"
|
||||
},
|
||||
"website": {
|
||||
"accentColor": "{{((sourceData, formData, fieldState) => ((appsmith.theme.colors.primaryColor)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"accessor": "website",
|
||||
"borderRadius": "{{((sourceData, formData, fieldState) => ((appsmith.theme.borderRadius.appBorderRadius)))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"boxShadow": "none",
|
||||
"children": {},
|
||||
"dataType": "string",
|
||||
"defaultValue": "{{((sourceData, formData, fieldState) => (sourceData.website))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"fieldType": "Text Input",
|
||||
"iconAlign": "left",
|
||||
"identifier": "website",
|
||||
"isCustomField": false,
|
||||
"isDisabled": false,
|
||||
"isRequired": false,
|
||||
"isSpellCheck": false,
|
||||
"isVisible": true,
|
||||
"label": "Website",
|
||||
"labelTextSize": "0.875rem",
|
||||
"originalIdentifier": "website",
|
||||
"position": 5,
|
||||
"sourceData": "https://www.home-assistant.io/"
|
||||
}
|
||||
},
|
||||
"dataType": "object",
|
||||
"defaultValue": "{{((sourceData, formData, fieldState) => (sourceData))(insert_form.sourceData, insert_form.formData, insert_form.fieldState)}}",
|
||||
"fieldType": "Object",
|
||||
"identifier": "__root_schema__",
|
||||
"isCustomField": false,
|
||||
"isDisabled": false,
|
||||
"isRequired": false,
|
||||
"isVisible": true,
|
||||
"label": "",
|
||||
"labelTextSize": "0.875rem",
|
||||
"originalIdentifier": "__root_schema__",
|
||||
"position": -1,
|
||||
"sourceData": {
|
||||
"col1": 5,
|
||||
"col2": "skill B",
|
||||
"col3": 9,
|
||||
"col4": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"scrollContents": true,
|
||||
"showReset": true,
|
||||
"sourceData": "{{_.omit(data_table.tableData[0], \"customColumn1\", \"id\")}}",
|
||||
"submitButtonLabel": "Submit",
|
||||
"submitButtonStyles": {
|
||||
"borderRadius": "{{appsmith.theme.borderRadius.appBorderRadius}}",
|
||||
"boxShadow": "none",
|
||||
"buttonColor": "{{appsmith.theme.colors.primaryColor}}",
|
||||
"buttonVariant": "PRIMARY"
|
||||
},
|
||||
"title": "Insert Row",
|
||||
"topRow": 0,
|
||||
"type": "JSON_FORM_WIDGET",
|
||||
"version": 1,
|
||||
"widgetId": "o8oiq6vwkk",
|
||||
"widgetName": "insert_form"
|
||||
}
|
||||
Reference in New Issue
Block a user