ToolJet/server/templates/job-application-tracker/definition.json

11724 lines
765 KiB
JSON
Raw Normal View History

{
"tooljet_database": [],
"app": [
{
"definition": {
"appV2": {
"id": "f1315ce0-80d8-41ce-a134-ecd7e7515cc6",
"type": "front-end",
"name": "Job Application Tracker",
"slug": "track-job-applications",
"isPublic": false,
"isMaintenanceOn": false,
"icon": "apps",
"organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84",
"currentVersionId": null,
"userId": "ccf51822-9d82-4d82-81dd-22df9f3cfcfc",
"workflowApiToken": null,
"workflowEnabled": false,
"createdAt": "2023-10-30T13:27:32.539Z",
"creationMode": "DEFAULT",
"updatedAt": "2024-01-04T23:27:53.909Z",
"editingVersion": {
"id": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"name": "v1",
"definition": {
"showViewerNavigation": false,
"homePageId": "ba407046-8b65-4aa5-b5f7-5e1a56882a83",
"pages": {
"ba407046-8b65-4aa5-b5f7-5e1a56882a83": {
"components": {
"61d34e16-bb4c-44af-b40b-f7d56314fa9f": {
"id": "61d34e16-bb4c-44af-b40b-f7d56314fa9f",
"component": {
"name": "container1",
"displayName": "Container",
"description": "Wrapper for multiple components",
"defaultSize": {
"width": 5,
"height": 200
},
"component": "Container",
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"properties": {},
"events": {},
"styles": {
"backgroundColor": {
"type": "color"
},
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
}
},
"exposedVariables": {},
"definition": {
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"properties": {
"visible": {
"value": true
}
},
"events": [],
"styles": {
"backgroundColor": {
"value": "#fff"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"borderRadius": {
"value": "10"
}
}
}
},
"layouts": {
"desktop": {
"top": 110,
"left": 2.3255776029993487,
"width": 32,
"height": 710
}
}
},
"e4053fab-b43d-4ba2-9e55-812023189d92": {
"id": "e4053fab-b43d-4ba2-9e55-812023189d92",
"component": {
"name": "jobApplicationsTable",
"displayName": "Table",
"description": "Display paginated tabular data",
"component": "Table",
"properties": {
"title": {
"type": "string",
"displayName": "Title"
},
"data": {
"type": "code",
"displayName": "Table data"
},
"loadingState": {
"type": "code",
"displayName": "Loading state"
},
"columns": {
"type": "array",
"displayName": "Table Columns"
},
"serverSidePagination": {
"type": "toggle",
"displayName": "Server-side pagination"
},
"clientSidePagination": {
"type": "toggle",
"displayName": "Client-side pagination"
},
"serverSideSearch": {
"type": "toggle",
"displayName": "Server-side search"
},
"actionButtonBackgroundColor": {
"type": "color",
"displayName": "Background color"
},
"actionButtonTextColor": {
"type": "color",
"displayName": "Text color"
},
"displaySearchBox": {
"type": "toggle",
"displayName": "Show search box"
},
"showDownloadButton": {
"type": "toggle",
"displayName": "Show download button"
},
"showFilterButton": {
"type": "toggle",
"displayName": "Show filter button"
},
"showBulkUpdateActions": {
"type": "toggle",
"displayName": "Show bulk update actions"
},
"showBulkSelector": {
"type": "toggle",
"displayName": "Bulk selection"
},
"highlightSelectedRow": {
"type": "toggle",
"displayName": "Highlight selected row"
}
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop "
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"defaultSize": {
"width": 20,
"height": 300
},
"events": {
"onRowClicked": {
"displayName": "Row clicked"
},
"onBulkUpdate": {
"displayName": "Bulk update"
},
"onPageChanged": {
"displayName": "Page changed"
},
"onSearch": {
"displayName": "Search"
}
},
"styles": {
"textColor": {
"type": "color",
"displayName": "Text Color"
},
"tableType": {
"type": "select",
"displayName": "Table type",
"options": [
{
"name": "Bordered",
"value": ""
},
{
"name": "Borderless",
"value": "table-borderless"
},
{
"name": "Classic",
"value": "table-classic"
},
{
"name": "Striped",
"value": "table-striped"
},
{
"name": "Striped & bordered",
"value": "table-striped table-bordered"
}
]
},
"cellSize": {
"type": "select",
"displayName": "Cell size",
"options": [
{
"name": "Compact",
"value": "compact"
},
{
"name": "Spacious",
"value": "spacious"
}
]
},
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
}
},
"exposedVariables": {
"selectedRow": {},
"changeSet": {},
"dataUpdates": [],
"pageIndex": 0,
"searchText": "",
"selectedRows": []
},
"definition": {
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"properties": {
"title": {
"value": "Table"
},
"visible": {
"value": true
},
"loadingState": {
"value": "{{queries.getJobApplications.isLoading}}",
"fxActive": true
},
"data": {
"value": "{{queries.getJobApplications.data}}"
},
"serverSidePagination": {
"value": false
},
"clientSidePagination": {
"value": false
},
"displaySearchBox": {
"value": true
},
"showDownloadButton": {
"value": true
},
"showFilterButton": {
"value": true
},
"columns": {
"value": [
{
"name": "id",
"id": "35f092ef-2eba-4504-ba01-72546b5b9f1d",
"columnType": "string"
},
{
"name": "Company",
"id": "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737",
"key": "company",
"columnType": "string"
},
{
"name": "Position",
"id": "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a",
"key": "position",
"columnType": "string"
},
{
"name": "Date Applied",
"id": "1f7e4a2a-8763-4cf0-bf40-f2a704d0e327",
"key": "date_applied",
"columnType": "string"
},
{
"name": "Status",
"id": "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f",
"key": "status",
"columnType": "string"
}
]
},
"showBulkUpdateActions": {
"value": "{{false}}"
},
"showBulkSelector": {
"value": false
},
"highlightSelectedRow": {
"value": false
},
"columnSizes": {
"value": {
"35f092ef-2eba-4504-ba01-72546b5b9f1d": 92,
"e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 264,
"5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a": 242,
"1f7e4a2a-8763-4cf0-bf40-f2a704d0e327": 174,
"afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f": 64
}
},
"actions": {
"value": [
{
"name": "Action0",
"buttonText": "Open Application",
"events": [
{
"eventId": "onClick",
"actionId": "open-webpage",
"message": "Hello world!",
"url": "{{components.jobApplicationsTable.selectedRow.application_url}}"
}
],
"position": "right",
"backgroundColor": "#375fcfff",
"textColor": "#ffffffff"
}
]
},
"showAddNewRowButton": {
"value": "{{false}}"
},
"hideColumnSelectorButton": {
"fxActive": false,
"value": "{{false}}"
}
},
"events": [],
"styles": {
"textColor": {},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"cellSize": {
"value": "regular"
},
"borderRadius": {
"value": "10"
},
"tableType": {
"value": "table-bordered"
},
"actionButtonRadius": {
"value": "5"
}
}
}
},
"layouts": {
"desktop": {
"top": 60,
"left": 2.32558300567024,
"width": 41.00000000000001,
"height": 620
}
},
"parent": "61d34e16-bb4c-44af-b40b-f7d56314fa9f"
},
"8fe0d926-6072-4eec-8258-98922f75b3dc": {
"id": "8fe0d926-6072-4eec-8258-98922f75b3dc",
"component": {
"name": "jobApplicationsLabel",
"displayName": "Text",
"description": "Display markdown or HTML",
"component": "Text",
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"properties": {
"text": {
"type": "code",
"displayName": "Text"
},
"loadingState": {
"type": "code",
"displayName": "Show loading state"
}
},
"defaultSize": {
"width": 3,
"height": 30
},
"events": [],
"styles": {
"textColor": {
"type": "color",
"displayName": "Text Color"
},
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
}
},
"exposedVariables": {},
"definition": {
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"properties": {
"text": {
"value": "Job Applications"
},
"visible": {
"value": true
},
"loadingState": {
"value": "{{false}}"
}
},
"events": [],
"styles": {
"textColor": {
"value": "#000"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"textAlign": {
"value": "left"
},
"fontVariant": {
"value": "normal"
},
"fontWeight": {
"value": "bold"
},
"textSize": {
"value": "{{16}}"
}
}
}
},
"layouts": {
"desktop": {
"top": 20,
"left": 2.325581063448678,
"width": 10,
"height": 30
}
},
"parent": "61d34e16-bb4c-44af-b40b-f7d56314fa9f"
},
"5e347f5b-8e2b-45f0-8291-80bccd68184d": {
"id": "5e347f5b-8e2b-45f0-8291-80bccd68184d",
"component": {
"name": "container2",
"displayName": "Container",
"description": "Wrapper for multiple components",
"defaultSize": {
"width": 5,
"height": 200
},
"component": "Container",
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"properties": {},
"events": {},
"styles": {
"backgroundColor": {
"type": "color"
},
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
}
},
"exposedVariables": {},
"definition": {
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"properties": {
"visible": {
"value": true
}
},
"events": [],
"styles": {
"backgroundColor": {
"value": "#fff"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{queries.findNewRowId.isLoading || queries.createJobApplication.isLoading || queries.resetForm.isLoading || queries.findRowNumber.isLoading || queries.updateJobApplication.isLoading || queries.deleteJobApplication.isLoading || queries.getJobApplications.isLoading}}",
"fxActive": true
},
"borderRadius": {
"value": "10"
}
}
}
},
"layouts": {
"desktop": {
"top": 110,
"left": 79.06979007344586,
"width": 8,
"height": 710
}
}
},
"78c21fc0-c787-4be2-9371-05296fa710c7": {
"id": "78c21fc0-c787-4be2-9371-05296fa710c7",
"component": {
"name": "companyName",
"displayName": "Text Input",
"description": "Text field for forms",
"component": "TextInput",
"defaultSize": {
"width": 4,
"height": 30
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"properties": {
"value": {
"type": "code",
"displayName": "Default value"
},
"placeholder": {
"type": "code",
"displayName": "Placeholder"
}
},
"validation": {
"regex": {
"type": "code",
"displayName": "Regex"
},
"minLength": {
"type": "code",
"displayName": "Min length"
},
"maxLength": {
"type": "code",
"displayName": "Max length"
},
"customRule": {
"type": "code",
"displayName": "Custom validation"
}
},
"events": {},
"styles": {
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
}
},
"exposedVariables": {
"value": ""
},
"definition": {
"validation": {
"regex": {
"value": ""
},
"minLength": {
"value": null
},
"maxLength": {
"value": null
},
"customRule": {
"value": null
}
},
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"properties": {
"value": {
"value": "{{components.jobApplicationsTable.selectedRow.company ?? \"\"}}"
},
"placeholder": {
"value": "Company Name"
}
},
"events": [],
"styles": {
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"borderRadius": {
"value": "5"
}
}
}
},
"layouts": {
"desktop": {
"top": 100,
"left": 6.976836364904775,
"width": 37,
"height": 40
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"d0e320b2-d94c-4515-86db-d234d336c0e6": {
"id": "d0e320b2-d94c-4515-86db-d234d336c0e6",
"component": {
"name": "position",
"displayName": "Text Input",
"description": "Text field for forms",
"component": "TextInput",
"defaultSize": {
"width": 4,
"height": 30
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"properties": {
"value": {
"type": "code",
"displayName": "Default value"
},
"placeholder": {
"type": "code",
"displayName": "Placeholder"
}
},
"validation": {
"regex": {
"type": "code",
"displayName": "Regex"
},
"minLength": {
"type": "code",
"displayName": "Min length"
},
"maxLength": {
"type": "code",
"displayName": "Max length"
},
"customRule": {
"type": "code",
"displayName": "Custom validation"
}
},
"events": {},
"styles": {
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
}
},
"exposedVariables": {
"value": ""
},
"definition": {
"validation": {
"regex": {
"value": ""
},
"minLength": {
"value": null
},
"maxLength": {
"value": null
},
"customRule": {
"value": null
}
},
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"properties": {
"value": {
"value": "{{components.jobApplicationsTable.selectedRow.position ?? \"\"}}"
},
"placeholder": {
"value": "Position"
}
},
"events": [],
"styles": {
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
}
}
},
"layouts": {
"desktop": {
"top": 180,
"left": 6.976740345106116,
"width": 37,
"height": 40
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"bf63db8a-9a3f-40c1-af7f-28ca4430567a": {
"id": "bf63db8a-9a3f-40c1-af7f-28ca4430567a",
"component": {
"name": "status",
"displayName": "Dropdown",
"description": "Select one value from options",
"defaultSize": {
"width": 8,
"height": 30
},
"component": "DropDown",
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"validation": {
"customRule": {
"type": "code",
"displayName": "Custom validation"
}
},
"properties": {
"label": {
"type": "code",
"displayName": "Label"
},
"value": {
"type": "code",
"displayName": "Default value"
},
"values": {
"type": "code",
"displayName": "Option values"
},
"display_values": {
"type": "code",
"displayName": "Option labels"
}
},
"events": {
"onSelect": {
"displayName": "On select"
}
},
"styles": {
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
}
},
"exposedVariables": {
"value": null
},
"definition": {
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"validation": {
"customRule": {
"value": null
}
},
"properties": {
"label": {
"value": ""
},
"value": {
"value": "{{components.jobApplicationsTable.selectedRow.status ?? undefined}}"
},
"values": {
"value": "{{[\n \"Wishlisted\",\n \"Applied\",\n \"Interview Scheduled\",\n \"Interviewed\",\n \"Shortlisted\",\n \"Offered\",\n \"Rejected\",\n]}}"
},
"display_values": {
"value": "{{[\n \"Wishlisted\",\n \"Applied\",\n \"Interview Scheduled\",\n \"Interviewed\",\n \"Shortlisted\",\n \"Offered\",\n \"Rejected\",\n]}}"
},
"visible": {
"value": true
},
"advanced": {
"value": "{{false}}"
},
"placeholder": {
"value": "Select Status..."
}
},
"events": [],
"styles": {
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"borderRadius": {
"value": "5"
}
}
}
},
"layouts": {
"desktop": {
"top": 420,
"left": 6.976685249214419,
"width": 37,
"height": 40
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"02e4acec-eb7e-4dbe-ad52-f5ed14555021": {
"id": "02e4acec-eb7e-4dbe-ad52-f5ed14555021",
"component": {
"name": "text4",
"displayName": "Text",
"description": "Display markdown or HTML",
"component": "Text",
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"properties": {
"text": {
"type": "code",
"displayName": "Text"
},
"loadingState": {
"type": "code",
"displayName": "Show loading state"
}
},
"defaultSize": {
"width": 3,
"height": 30
},
"events": [],
"styles": {
"textColor": {
"type": "color",
"displayName": "Text Color"
},
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
}
},
"exposedVariables": {},
"definition": {
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"properties": {
"text": {
"value": "Create/Modify Applications"
},
"visible": {
"value": true
},
"loadingState": {
"value": "{{false}}"
}
},
"events": [],
"styles": {
"textColor": {
"value": "#000"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"fontWeight": {
"value": "bold"
},
"fontVariant": {
"value": "normal"
},
"textSize": {
"value": "{{16}}"
}
}
}
},
"layouts": {
"desktop": {
"top": 20,
"left": 6.976746436211469,
"width": 36.99999999999999,
"height": 30
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"e89102ff-d368-465a-8818-6f0c33c448bc": {
"id": "e89102ff-d368-465a-8818-6f0c33c448bc",
"component": {
"name": "createButton",
"displayName": "Button",
"description": "Trigger actions: queries, alerts etc",
"component": "Button",
"defaultSize": {
"width": 3,
"height": 30
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"properties": {
"text": {
"type": "code",
"displayName": "Button Text"
},
"loadingState": {
"type": "code",
"displayName": "Loading State"
}
},
"events": {
"onClick": {
"displayName": "On click"
}
},
"styles": {
"backgroundColor": {
"type": "color",
"displayName": "Background color"
},
"textColor": {
"type": "color",
"displayName": "Text color"
},
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
},
"borderRadius": {
"type": "code",
"displayName": "Border radius"
}
},
"exposedVariables": {},
"definition": {
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"properties": {
"text": {
"value": "Create"
},
"visible": {
"value": true
},
"loadingState": {
"value": "{{queries.findNewRowId.isLoading || queries.createJobApplication.isLoading}}",
"fxActive": true
}
},
"events": [
{
"eventId": "onClick",
"actionId": "run-query",
"message": "Hello world!",
"queryName": "findNewRowId",
"queryId": "b480d882-f3f6-48d4-8ee9-b01332e1d9ef",
"parameters": {}
}
],
"styles": {
"backgroundColor": {
"value": "#2b8a69"
},
"textColor": {
"value": "#fff"
},
"visibility": {
"value": "{{true}}"
},
"borderRadius": {
"value": "{{5}}"
},
"disabledState": {
"value": "{{components.companyName.value == \"\" || components.position.value == \"\" || !components.applicationUrl.isValid || components.applicationUrl.value == \"\" || components.dateApplied.value == undefined || components.status.value == undefined}}",
"fxActive": true
}
}
}
},
"layouts": {
"desktop": {
"top": 480,
"left": 6.9768320425397405,
"width": 37,
"height": 40
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"e289bb27-08e1-4da1-9107-0c9864480dc6": {
"id": "e289bb27-08e1-4da1-9107-0c9864480dc6",
"component": {
"name": "dateApplied",
"displayName": "Date Picker",
"description": "Select a date and time",
"component": "Datepicker",
"defaultSize": {
"width": 4,
"height": 30
},
"validation": {
"customRule": {
"type": "code",
"displayName": "Custom validation"
}
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"properties": {
"defaultValue": {
"type": "code",
"displayName": "Default value"
},
"format": {
"type": "code",
"displayName": "Format"
},
"enableTime": {
"type": "code",
"displayName": "Enable time selection?"
},
"enableDate": {
"type": "code",
"displayName": "Enable date selection?"
}
},
"events": {},
"styles": {
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
}
},
"exposedVariables": {
"value": ""
},
"definition": {
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"validation": {
"customRule": {
"value": null
}
},
"properties": {
"defaultValue": {
"value": "{{components.jobApplicationsTable.selectedRow.date_applied ?? variables.dateAppliedDefaultValue}}"
},
"format": {
"value": "Do MMM YYYY"
},
"enableTime": {
"value": "{{false}}"
},
"enableDate": {
"value": "{{true}}"
}
},
"events": [],
"styles": {
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"borderRadius": {
"value": "5"
}
}
}
},
"layouts": {
"desktop": {
"top": 340,
"left": 6.976953397294909,
"width": 37,
"height": 40
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"b56919d0-f507-4224-9649-d71115bcdd93": {
"id": "b56919d0-f507-4224-9649-d71115bcdd93",
"component": {
"name": "applicationUrl",
"displayName": "Text Input",
"description": "Text field for forms",
"component": "TextInput",
"defaultSize": {
"width": 4,
"height": 30
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"properties": {
"value": {
"type": "code",
"displayName": "Default value"
},
"placeholder": {
"type": "code",
"displayName": "Placeholder"
}
},
"validation": {
"regex": {
"type": "code",
"displayName": "Regex"
},
"minLength": {
"type": "code",
"displayName": "Min length"
},
"maxLength": {
"type": "code",
"displayName": "Max length"
},
"customRule": {
"type": "code",
"displayName": "Custom validation"
}
},
"events": {},
"styles": {
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
}
},
"exposedVariables": {
"value": ""
},
"definition": {
"validation": {
"regex": {
"value": ""
},
"minLength": {
"value": null
},
"maxLength": {
"value": null
},
"customRule": {
"value": "{{/^(https?:\\/\\/)?((([a-z\\d]([a-z\\d-]*[a-z\\d])*)\\.)+[a-z]{2,}|((\\d{1,3}\\.){3}\\d{1,3}))(\\:\\d+)?(\\/[-a-z\\d%_.~+]*)*(\\?[;&a-z\\d%_.~+=-]*)?(\\#[-a-z\\d_]*)?$/i.test(components.applicationUrl.value) || components.applicationUrl.value == \"\" ? true : \" \"}}"
}
},
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"properties": {
"value": {
"value": "{{components.jobApplicationsTable.selectedRow.application_url ?? \"\"}}"
},
"placeholder": {
"value": "https://docs.google.com/..."
}
},
"events": [],
"styles": {
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "{{components.applicationUrl.isValid ? \"0px 0px 0px 0px #00000040\" : \"0px 0px 0px 0px #ff000040\"}}",
"fxActive": true
}
}
}
},
"layouts": {
"desktop": {
"top": 260,
"left": 6.976711307464127,
"width": 37,
"height": 40
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"ba206b54-deea-46c1-950b-b334464c1c71": {
"id": "ba206b54-deea-46c1-950b-b334464c1c71",
"component": {
"name": "updateButton",
"displayName": "Button",
"description": "Trigger actions: queries, alerts etc",
"component": "Button",
"defaultSize": {
"width": 3,
"height": 30
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"properties": {
"text": {
"type": "code",
"displayName": "Button Text"
},
"loadingState": {
"type": "code",
"displayName": "Loading State"
}
},
"events": {
"onClick": {
"displayName": "On click"
}
},
"styles": {
"backgroundColor": {
"type": "color",
"displayName": "Background color"
},
"textColor": {
"type": "color",
"displayName": "Text color"
},
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
},
"borderRadius": {
"type": "code",
"displayName": "Border radius"
}
},
"exposedVariables": {},
"definition": {
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"properties": {
"text": {
"value": "Update"
},
"visible": {
"value": true
},
"loadingState": {
"value": "{{queries.updateJobApplication.isLoading}}",
"fxActive": true
}
},
"events": [
{
"eventId": "onClick",
"actionId": "run-query",
"message": "Hello world!",
"alertType": "info",
"queryName": "updateJobApplication",
"queryId": "dced4670-881c-475b-856c-5a854f56f158",
"parameters": {}
}
],
"styles": {
"backgroundColor": {
"value": "#0e3e77"
},
"textColor": {
"value": "#fff"
},
"visibility": {
"value": "{{true}}"
},
"borderRadius": {
"value": "{{5}}"
},
"disabledState": {
"value": "{{components.applicationId.value == undefined || components.companyName.value == \"\" || components.position.value == \"\" || components.applicationUrl.value == \"\" || components.dateApplied.value == undefined || components.status.value == undefined}}",
"fxActive": true
}
}
}
},
"layouts": {
"desktop": {
"top": 640,
"left": 6.976680336660044,
"width": 17,
"height": 40
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"ba610224-4e14-4cfa-bfe9-6f4d84d44887": {
"id": "ba610224-4e14-4cfa-bfe9-6f4d84d44887",
"component": {
"name": "applicationId",
"displayName": "Dropdown",
"description": "Select one value from options",
"defaultSize": {
"width": 8,
"height": 30
},
"component": "DropDown",
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"validation": {
"customRule": {
"type": "code",
"displayName": "Custom validation"
}
},
"properties": {
"label": {
"type": "code",
"displayName": "Label"
},
"value": {
"type": "code",
"displayName": "Default value"
},
"values": {
"type": "code",
"displayName": "Option values"
},
"display_values": {
"type": "code",
"displayName": "Option labels"
},
"loadingState": {
"type": "code",
"displayName": "Options loading state"
}
},
"events": {
"onSelect": {
"displayName": "On select"
},
"onSearchTextChanged": {
"displayName": "On search text changed"
}
},
"styles": {
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
}
},
"exposedVariables": {
"value": null,
"searchText": ""
},
"definition": {
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"validation": {
"customRule": {
"value": null
}
},
"properties": {
"label": {
"value": ""
},
"value": {
"value": "{{components.jobApplicationsTable.selectedRow.id ?? undefined}}"
},
"values": {
"value": "{{queries.getJobApplications.data.map((row) => row.id)}}"
},
"display_values": {
"value": "{{queries.getJobApplications.data.map((row) => row.id)}}"
},
"visible": {
"value": true
},
"loadingState": {
"value": "{{queries.getJobApplications.isLoading}}",
"fxActive": true
},
"placeholder": {
"value": "Select Application ID..."
}
},
"events": [],
"styles": {
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"borderRadius": {
"value": "5"
}
}
}
},
"layouts": {
"desktop": {
"top": 580,
"left": 6.976863964638667,
"width": 37,
"height": 40
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"f6640190-9cd3-49f3-af89-942e5beea606": {
"id": "f6640190-9cd3-49f3-af89-942e5beea606",
"component": {
"name": "deleteButton",
"displayName": "Button",
"description": "Trigger actions: queries, alerts etc",
"component": "Button",
"defaultSize": {
"width": 3,
"height": 30
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"properties": {
"text": {
"type": "code",
"displayName": "Button Text"
},
"loadingState": {
"type": "code",
"displayName": "Loading State"
}
},
"events": {
"onClick": {
"displayName": "On click"
}
},
"styles": {
"backgroundColor": {
"type": "color",
"displayName": "Background color"
},
"textColor": {
"type": "color",
"displayName": "Text color"
},
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
},
"borderRadius": {
"type": "code",
"displayName": "Border radius"
}
},
"exposedVariables": {},
"definition": {
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"properties": {
"text": {
"value": "Delete"
},
"visible": {
"value": true
},
"loadingState": {
"value": "{{queries.findRowNumber.isLoading || queries.deleteJobApplication.isLoading}}",
"fxActive": true
}
},
"events": [
{
"eventId": "onClick",
"actionId": "run-query",
"message": "Hello world!",
"alertType": "info",
"queryName": "findRowNumber",
"queryId": "ac05658a-749b-4563-8aec-939dd3a5d2de",
"parameters": {}
}
],
"styles": {
"backgroundColor": {
"value": "#d0021b"
},
"textColor": {
"value": "#fff"
},
"visibility": {
"value": "{{true}}"
},
"borderRadius": {
"value": "{{5}}"
},
"disabledState": {
"value": "{{components.applicationId.value == undefined}}",
"fxActive": true
}
}
}
},
"layouts": {
"desktop": {
"top": 640,
"left": 52.88775649425791,
"width": 17,
"height": 40
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"3e682521-458a-41f5-bab3-aa369ce1b692": {
"id": "3e682521-458a-41f5-bab3-aa369ce1b692",
"component": {
"properties": {
"text": {
"type": "code",
"displayName": "Text",
"validation": {
"schema": {
"type": "union",
"schemas": [
{
"type": "string"
},
{
"type": "number"
}
]
}
}
},
"loadingState": {
"type": "toggle",
"displayName": "Show loading state",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"general": {
"tooltip": {
"type": "code",
"displayName": "Tooltip",
"validation": {
"schema": {
"type": "string"
}
}
}
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"events": {},
"styles": {
"fontWeight": {
"type": "select",
"displayName": "Font Weight",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "bold",
"value": "bold"
},
{
"name": "lighter",
"value": "lighter"
},
{
"name": "bolder",
"value": "bolder"
}
]
},
"decoration": {
"type": "select",
"displayName": "Text Decoration",
"options": [
{
"name": "none",
"value": "none"
},
{
"name": "overline",
"value": "overline"
},
{
"name": "line-through",
"value": "line-through"
},
{
"name": "underline",
"value": "underline"
},
{
"name": "overline underline",
"value": "overline underline"
}
]
},
"transformation": {
"type": "select",
"displayName": "Text Transformation",
"options": [
{
"name": "none",
"value": "none"
},
{
"name": "uppercase",
"value": "uppercase"
},
{
"name": "lowercase",
"value": "lowercase"
},
{
"name": "capitalize",
"value": "capitalize"
}
]
},
"fontStyle": {
"type": "select",
"displayName": "Font Style",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "italic",
"value": "italic"
},
{
"name": "oblique",
"value": "oblique"
}
]
},
"lineHeight": {
"type": "number",
"displayName": "Line Height"
},
"textIndent": {
"type": "number",
"displayName": "Text Indent"
},
"letterSpacing": {
"type": "number",
"displayName": "Letter Spacing"
},
"wordSpacing": {
"type": "number",
"displayName": "Word Spacing"
},
"fontVariant": {
"type": "select",
"displayName": "Font Variant",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "small-caps",
"value": "small-caps"
},
{
"name": "initial",
"value": "initial"
},
{
"name": "inherit",
"value": "inherit"
}
]
},
"textSize": {
"type": "number",
"displayName": "Text Size",
"validation": {
"schema": {
"type": "number"
}
}
},
"backgroundColor": {
"type": "color",
"displayName": "Background Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"textColor": {
"type": "color",
"displayName": "Text Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"textAlign": {
"type": "alignButtons",
"displayName": "Align Text",
"validation": {
"schema": {
"type": "string"
}
}
},
"visibility": {
"type": "toggle",
"displayName": "Visibility",
"validation": {
"schema": {
"type": "boolean"
}
}
},
"disabledState": {
"type": "toggle",
"displayName": "Disable",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"validate": true,
"generalStyles": {
"boxShadow": {
"type": "boxShadow",
"displayName": "Box Shadow"
}
},
"definition": {
"others": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"events": [],
"styles": {
"backgroundColor": {
"value": "#fff00000"
},
"textColor": {
"value": "#000000"
},
"textSize": {
"value": "{{14}}"
},
"textAlign": {
"value": "left"
},
"fontWeight": {
"value": "bold"
},
"decoration": {
"value": "none"
},
"transformation": {
"value": "none"
},
"fontStyle": {
"value": "normal"
},
"lineHeight": {
"value": 1.5
},
"textIndent": {
"value": 0
},
"letterSpacing": {
"value": 0
},
"wordSpacing": {
"value": 0
},
"fontVariant": {
"value": "normal"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "0px 0px 0px 0px #00000040"
}
},
"properties": {
"text": {
"value": "Application ID"
},
"loadingState": {
"value": "{{false}}"
}
},
"general": {},
"exposedVariables": {}
},
"name": "rowIdLabel",
"displayName": "Text",
"description": "Display text or HTML",
"component": "Text",
"defaultSize": {
"width": 6,
"height": 30
},
"exposedVariables": {
"text": "Hello, there!"
},
"actions": [
{
"handle": "setText",
"displayName": "Set Text",
"params": [
{
"handle": "text",
"displayName": "Text",
"defaultValue": "New text"
}
]
},
{
"handle": "visibility",
"displayName": "Set Visibility",
"params": [
{
"handle": "visibility",
"displayName": "Value",
"defaultValue": "{{false}}",
"type": "toggle"
}
]
}
]
},
"layouts": {
"desktop": {
"top": 550,
"left": 6.976743507308886,
"width": 19,
"height": 30
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"39aa08da-3714-4c6e-b890-1691edec4004": {
"component": {
"properties": {
"text": {
"type": "code",
"displayName": "Text",
"validation": {
"schema": {
"type": "union",
"schemas": [
{
"type": "string"
},
{
"type": "number"
}
]
}
}
},
"loadingState": {
"type": "toggle",
"displayName": "Show loading state",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"general": {
"tooltip": {
"type": "code",
"displayName": "Tooltip",
"validation": {
"schema": {
"type": "string"
}
}
}
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"events": {},
"styles": {
"fontWeight": {
"type": "select",
"displayName": "Font Weight",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "bold",
"value": "bold"
},
{
"name": "lighter",
"value": "lighter"
},
{
"name": "bolder",
"value": "bolder"
}
]
},
"decoration": {
"type": "select",
"displayName": "Text Decoration",
"options": [
{
"name": "none",
"value": "none"
},
{
"name": "overline",
"value": "overline"
},
{
"name": "line-through",
"value": "line-through"
},
{
"name": "underline",
"value": "underline"
},
{
"name": "overline underline",
"value": "overline underline"
}
]
},
"transformation": {
"type": "select",
"displayName": "Text Transformation",
"options": [
{
"name": "none",
"value": "none"
},
{
"name": "uppercase",
"value": "uppercase"
},
{
"name": "lowercase",
"value": "lowercase"
},
{
"name": "capitalize",
"value": "capitalize"
}
]
},
"fontStyle": {
"type": "select",
"displayName": "Font Style",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "italic",
"value": "italic"
},
{
"name": "oblique",
"value": "oblique"
}
]
},
"lineHeight": {
"type": "number",
"displayName": "Line Height"
},
"textIndent": {
"type": "number",
"displayName": "Text Indent"
},
"letterSpacing": {
"type": "number",
"displayName": "Letter Spacing"
},
"wordSpacing": {
"type": "number",
"displayName": "Word Spacing"
},
"fontVariant": {
"type": "select",
"displayName": "Font Variant",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "small-caps",
"value": "small-caps"
},
{
"name": "initial",
"value": "initial"
},
{
"name": "inherit",
"value": "inherit"
}
]
},
"textSize": {
"type": "number",
"displayName": "Text Size",
"validation": {
"schema": {
"type": "number"
}
}
},
"backgroundColor": {
"type": "color",
"displayName": "Background Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"textColor": {
"type": "color",
"displayName": "Text Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"textAlign": {
"type": "alignButtons",
"displayName": "Align Text",
"validation": {
"schema": {
"type": "string"
}
}
},
"visibility": {
"type": "toggle",
"displayName": "Visibility",
"validation": {
"schema": {
"type": "boolean"
}
}
},
"disabledState": {
"type": "toggle",
"displayName": "Disable",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"validate": true,
"generalStyles": {
"boxShadow": {
"type": "boxShadow",
"displayName": "Box Shadow"
}
},
"definition": {
"others": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"events": [],
"styles": {
"backgroundColor": {
"value": "#fff00000"
},
"textColor": {
"value": "#000000"
},
"textSize": {
"value": 14
},
"textAlign": {
"value": "left"
},
"fontWeight": {
"value": "bold"
},
"decoration": {
"value": "none"
},
"transformation": {
"value": "none"
},
"fontStyle": {
"value": "normal"
},
"lineHeight": {
"value": 1.5
},
"textIndent": {
"value": 0
},
"letterSpacing": {
"value": 0
},
"wordSpacing": {
"value": 0
},
"fontVariant": {
"value": "normal"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "0px 0px 0px 0px #00000040"
}
},
"properties": {
"text": {
"value": "Company Name"
},
"loadingState": {
"value": "{{false}}"
}
},
"general": {},
"exposedVariables": {}
},
"name": "companyNameLabel",
"displayName": "Text",
"description": "Display text or HTML",
"component": "Text",
"defaultSize": {
"width": 6,
"height": 30
},
"exposedVariables": {
"text": "Hello, there!"
},
"actions": [
{
"handle": "setText",
"displayName": "Set Text",
"params": [
{
"handle": "text",
"displayName": "Text",
"defaultValue": "New text"
}
]
},
{
"handle": "visibility",
"displayName": "Set Visibility",
"params": [
{
"handle": "visibility",
"displayName": "Value",
"defaultValue": "{{false}}",
"type": "toggle"
}
]
}
]
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d",
"layouts": {
"desktop": {
"top": 70,
"left": 6.976761465794188,
"width": 20.999999999999996,
"height": 30
}
},
"withDefaultChildren": false
},
"07b23415-8c75-4e3e-b396-57dd6f037c78": {
"id": "07b23415-8c75-4e3e-b396-57dd6f037c78",
"component": {
"properties": {
"text": {
"type": "code",
"displayName": "Text",
"validation": {
"schema": {
"type": "union",
"schemas": [
{
"type": "string"
},
{
"type": "number"
}
]
}
}
},
"loadingState": {
"type": "toggle",
"displayName": "Show loading state",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"general": {
"tooltip": {
"type": "code",
"displayName": "Tooltip",
"validation": {
"schema": {
"type": "string"
}
}
}
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"events": {},
"styles": {
"fontWeight": {
"type": "select",
"displayName": "Font Weight",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "bold",
"value": "bold"
},
{
"name": "lighter",
"value": "lighter"
},
{
"name": "bolder",
"value": "bolder"
}
]
},
"decoration": {
"type": "select",
"displayName": "Text Decoration",
"options": [
{
"name": "none",
"value": "none"
},
{
"name": "overline",
"value": "overline"
},
{
"name": "line-through",
"value": "line-through"
},
{
"name": "underline",
"value": "underline"
},
{
"name": "overline underline",
"value": "overline underline"
}
]
},
"transformation": {
"type": "select",
"displayName": "Text Transformation",
"options": [
{
"name": "none",
"value": "none"
},
{
"name": "uppercase",
"value": "uppercase"
},
{
"name": "lowercase",
"value": "lowercase"
},
{
"name": "capitalize",
"value": "capitalize"
}
]
},
"fontStyle": {
"type": "select",
"displayName": "Font Style",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "italic",
"value": "italic"
},
{
"name": "oblique",
"value": "oblique"
}
]
},
"lineHeight": {
"type": "number",
"displayName": "Line Height"
},
"textIndent": {
"type": "number",
"displayName": "Text Indent"
},
"letterSpacing": {
"type": "number",
"displayName": "Letter Spacing"
},
"wordSpacing": {
"type": "number",
"displayName": "Word Spacing"
},
"fontVariant": {
"type": "select",
"displayName": "Font Variant",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "small-caps",
"value": "small-caps"
},
{
"name": "initial",
"value": "initial"
},
{
"name": "inherit",
"value": "inherit"
}
]
},
"textSize": {
"type": "number",
"displayName": "Text Size",
"validation": {
"schema": {
"type": "number"
}
}
},
"backgroundColor": {
"type": "color",
"displayName": "Background Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"textColor": {
"type": "color",
"displayName": "Text Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"textAlign": {
"type": "alignButtons",
"displayName": "Align Text",
"validation": {
"schema": {
"type": "string"
}
}
},
"visibility": {
"type": "toggle",
"displayName": "Visibility",
"validation": {
"schema": {
"type": "boolean"
}
}
},
"disabledState": {
"type": "toggle",
"displayName": "Disable",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"validate": true,
"generalStyles": {
"boxShadow": {
"type": "boxShadow",
"displayName": "Box Shadow"
}
},
"definition": {
"others": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"events": [],
"styles": {
"backgroundColor": {
"value": "#fff00000"
},
"textColor": {
"value": "#000000"
},
"textSize": {
"value": 14
},
"textAlign": {
"value": "left"
},
"fontWeight": {
"value": "bold"
},
"decoration": {
"value": "none"
},
"transformation": {
"value": "none"
},
"fontStyle": {
"value": "normal"
},
"lineHeight": {
"value": 1.5
},
"textIndent": {
"value": 0
},
"letterSpacing": {
"value": 0
},
"wordSpacing": {
"value": 0
},
"fontVariant": {
"value": "normal"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "0px 0px 0px 0px #00000040"
}
},
"properties": {
"text": {
"value": "Position"
},
"loadingState": {
"value": "{{false}}"
}
},
"general": {},
"exposedVariables": {}
},
"name": "positionLabel",
"displayName": "Text",
"description": "Display text or HTML",
"component": "Text",
"defaultSize": {
"width": 6,
"height": 30
},
"exposedVariables": {
"text": "Hello, there!"
},
"actions": [
{
"handle": "setText",
"displayName": "Set Text",
"params": [
{
"handle": "text",
"displayName": "Text",
"defaultValue": "New text"
}
]
},
{
"handle": "visibility",
"displayName": "Set Visibility",
"params": [
{
"handle": "visibility",
"displayName": "Value",
"defaultValue": "{{false}}",
"type": "toggle"
}
]
}
]
},
"layouts": {
"desktop": {
"top": 150,
"left": 6.976735592225935,
"width": 20.999999999999996,
"height": 30
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"eec907bf-84a0-4710-8837-e7012ed55493": {
"id": "eec907bf-84a0-4710-8837-e7012ed55493",
"component": {
"properties": {
"text": {
"type": "code",
"displayName": "Text",
"validation": {
"schema": {
"type": "union",
"schemas": [
{
"type": "string"
},
{
"type": "number"
}
]
}
}
},
"loadingState": {
"type": "toggle",
"displayName": "Show loading state",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"general": {
"tooltip": {
"type": "code",
"displayName": "Tooltip",
"validation": {
"schema": {
"type": "string"
}
}
}
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"events": {},
"styles": {
"fontWeight": {
"type": "select",
"displayName": "Font Weight",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "bold",
"value": "bold"
},
{
"name": "lighter",
"value": "lighter"
},
{
"name": "bolder",
"value": "bolder"
}
]
},
"decoration": {
"type": "select",
"displayName": "Text Decoration",
"options": [
{
"name": "none",
"value": "none"
},
{
"name": "overline",
"value": "overline"
},
{
"name": "line-through",
"value": "line-through"
},
{
"name": "underline",
"value": "underline"
},
{
"name": "overline underline",
"value": "overline underline"
}
]
},
"transformation": {
"type": "select",
"displayName": "Text Transformation",
"options": [
{
"name": "none",
"value": "none"
},
{
"name": "uppercase",
"value": "uppercase"
},
{
"name": "lowercase",
"value": "lowercase"
},
{
"name": "capitalize",
"value": "capitalize"
}
]
},
"fontStyle": {
"type": "select",
"displayName": "Font Style",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "italic",
"value": "italic"
},
{
"name": "oblique",
"value": "oblique"
}
]
},
"lineHeight": {
"type": "number",
"displayName": "Line Height"
},
"textIndent": {
"type": "number",
"displayName": "Text Indent"
},
"letterSpacing": {
"type": "number",
"displayName": "Letter Spacing"
},
"wordSpacing": {
"type": "number",
"displayName": "Word Spacing"
},
"fontVariant": {
"type": "select",
"displayName": "Font Variant",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "small-caps",
"value": "small-caps"
},
{
"name": "initial",
"value": "initial"
},
{
"name": "inherit",
"value": "inherit"
}
]
},
"textSize": {
"type": "number",
"displayName": "Text Size",
"validation": {
"schema": {
"type": "number"
}
}
},
"backgroundColor": {
"type": "color",
"displayName": "Background Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"textColor": {
"type": "color",
"displayName": "Text Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"textAlign": {
"type": "alignButtons",
"displayName": "Align Text",
"validation": {
"schema": {
"type": "string"
}
}
},
"visibility": {
"type": "toggle",
"displayName": "Visibility",
"validation": {
"schema": {
"type": "boolean"
}
}
},
"disabledState": {
"type": "toggle",
"displayName": "Disable",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"validate": true,
"generalStyles": {
"boxShadow": {
"type": "boxShadow",
"displayName": "Box Shadow"
}
},
"definition": {
"others": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"events": [],
"styles": {
"backgroundColor": {
"value": "#fff00000"
},
"textColor": {
"value": "#000000"
},
"textSize": {
"value": 14
},
"textAlign": {
"value": "left"
},
"fontWeight": {
"value": "bold"
},
"decoration": {
"value": "none"
},
"transformation": {
"value": "none"
},
"fontStyle": {
"value": "normal"
},
"lineHeight": {
"value": 1.5
},
"textIndent": {
"value": 0
},
"letterSpacing": {
"value": 0
},
"wordSpacing": {
"value": 0
},
"fontVariant": {
"value": "normal"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "0px 0px 0px 0px #00000040"
}
},
"properties": {
"text": {
"value": "Application URL"
},
"loadingState": {
"value": "{{false}}"
}
},
"general": {},
"exposedVariables": {}
},
"name": "applicationUrlLabel",
"displayName": "Text",
"description": "Display text or HTML",
"component": "Text",
"defaultSize": {
"width": 6,
"height": 30
},
"exposedVariables": {
"text": "Hello, there!"
},
"actions": [
{
"handle": "setText",
"displayName": "Set Text",
"params": [
{
"handle": "text",
"displayName": "Text",
"defaultValue": "New text"
}
]
},
{
"handle": "visibility",
"displayName": "Set Visibility",
"params": [
{
"handle": "visibility",
"displayName": "Value",
"defaultValue": "{{false}}",
"type": "toggle"
}
]
}
]
},
"layouts": {
"desktop": {
"top": 230,
"left": 6.976750733121757,
"width": 20.999999999999996,
"height": 30
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"ce53a8e3-0dda-4a51-8694-23359833fb48": {
"id": "ce53a8e3-0dda-4a51-8694-23359833fb48",
"component": {
"properties": {
"text": {
"type": "code",
"displayName": "Text",
"validation": {
"schema": {
"type": "union",
"schemas": [
{
"type": "string"
},
{
"type": "number"
}
]
}
}
},
"loadingState": {
"type": "toggle",
"displayName": "Show loading state",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"general": {
"tooltip": {
"type": "code",
"displayName": "Tooltip",
"validation": {
"schema": {
"type": "string"
}
}
}
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"events": {},
"styles": {
"fontWeight": {
"type": "select",
"displayName": "Font Weight",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "bold",
"value": "bold"
},
{
"name": "lighter",
"value": "lighter"
},
{
"name": "bolder",
"value": "bolder"
}
]
},
"decoration": {
"type": "select",
"displayName": "Text Decoration",
"options": [
{
"name": "none",
"value": "none"
},
{
"name": "overline",
"value": "overline"
},
{
"name": "line-through",
"value": "line-through"
},
{
"name": "underline",
"value": "underline"
},
{
"name": "overline underline",
"value": "overline underline"
}
]
},
"transformation": {
"type": "select",
"displayName": "Text Transformation",
"options": [
{
"name": "none",
"value": "none"
},
{
"name": "uppercase",
"value": "uppercase"
},
{
"name": "lowercase",
"value": "lowercase"
},
{
"name": "capitalize",
"value": "capitalize"
}
]
},
"fontStyle": {
"type": "select",
"displayName": "Font Style",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "italic",
"value": "italic"
},
{
"name": "oblique",
"value": "oblique"
}
]
},
"lineHeight": {
"type": "number",
"displayName": "Line Height"
},
"textIndent": {
"type": "number",
"displayName": "Text Indent"
},
"letterSpacing": {
"type": "number",
"displayName": "Letter Spacing"
},
"wordSpacing": {
"type": "number",
"displayName": "Word Spacing"
},
"fontVariant": {
"type": "select",
"displayName": "Font Variant",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "small-caps",
"value": "small-caps"
},
{
"name": "initial",
"value": "initial"
},
{
"name": "inherit",
"value": "inherit"
}
]
},
"textSize": {
"type": "number",
"displayName": "Text Size",
"validation": {
"schema": {
"type": "number"
}
}
},
"backgroundColor": {
"type": "color",
"displayName": "Background Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"textColor": {
"type": "color",
"displayName": "Text Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"textAlign": {
"type": "alignButtons",
"displayName": "Align Text",
"validation": {
"schema": {
"type": "string"
}
}
},
"visibility": {
"type": "toggle",
"displayName": "Visibility",
"validation": {
"schema": {
"type": "boolean"
}
}
},
"disabledState": {
"type": "toggle",
"displayName": "Disable",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"validate": true,
"generalStyles": {
"boxShadow": {
"type": "boxShadow",
"displayName": "Box Shadow"
}
},
"definition": {
"others": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"events": [],
"styles": {
"backgroundColor": {
"value": "#fff00000"
},
"textColor": {
"value": "#000000"
},
"textSize": {
"value": 14
},
"textAlign": {
"value": "left"
},
"fontWeight": {
"value": "bold"
},
"decoration": {
"value": "none"
},
"transformation": {
"value": "none"
},
"fontStyle": {
"value": "normal"
},
"lineHeight": {
"value": 1.5
},
"textIndent": {
"value": 0
},
"letterSpacing": {
"value": 0
},
"wordSpacing": {
"value": 0
},
"fontVariant": {
"value": "normal"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "0px 0px 0px 0px #00000040"
}
},
"properties": {
"text": {
"value": "Date Applied"
},
"loadingState": {
"value": "{{false}}"
}
},
"general": {},
"exposedVariables": {}
},
"name": "dateAppliedLabel",
"displayName": "Text",
"description": "Display text or HTML",
"component": "Text",
"defaultSize": {
"width": 6,
"height": 30
},
"exposedVariables": {
"text": "Hello, there!"
},
"actions": [
{
"handle": "setText",
"displayName": "Set Text",
"params": [
{
"handle": "text",
"displayName": "Text",
"defaultValue": "New text"
}
]
},
{
"handle": "visibility",
"displayName": "Set Visibility",
"params": [
{
"handle": "visibility",
"displayName": "Value",
"defaultValue": "{{false}}",
"type": "toggle"
}
]
}
]
},
"layouts": {
"desktop": {
"top": 310,
"left": 6.976728440645868,
"width": 20.999999999999996,
"height": 30
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"231f447f-c47f-456c-9205-221c2309b282": {
"id": "231f447f-c47f-456c-9205-221c2309b282",
"component": {
"properties": {
"text": {
"type": "code",
"displayName": "Text",
"validation": {
"schema": {
"type": "union",
"schemas": [
{
"type": "string"
},
{
"type": "number"
}
]
}
}
},
"loadingState": {
"type": "toggle",
"displayName": "Show loading state",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"general": {
"tooltip": {
"type": "code",
"displayName": "Tooltip",
"validation": {
"schema": {
"type": "string"
}
}
}
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"events": {},
"styles": {
"fontWeight": {
"type": "select",
"displayName": "Font Weight",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "bold",
"value": "bold"
},
{
"name": "lighter",
"value": "lighter"
},
{
"name": "bolder",
"value": "bolder"
}
]
},
"decoration": {
"type": "select",
"displayName": "Text Decoration",
"options": [
{
"name": "none",
"value": "none"
},
{
"name": "overline",
"value": "overline"
},
{
"name": "line-through",
"value": "line-through"
},
{
"name": "underline",
"value": "underline"
},
{
"name": "overline underline",
"value": "overline underline"
}
]
},
"transformation": {
"type": "select",
"displayName": "Text Transformation",
"options": [
{
"name": "none",
"value": "none"
},
{
"name": "uppercase",
"value": "uppercase"
},
{
"name": "lowercase",
"value": "lowercase"
},
{
"name": "capitalize",
"value": "capitalize"
}
]
},
"fontStyle": {
"type": "select",
"displayName": "Font Style",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "italic",
"value": "italic"
},
{
"name": "oblique",
"value": "oblique"
}
]
},
"lineHeight": {
"type": "number",
"displayName": "Line Height"
},
"textIndent": {
"type": "number",
"displayName": "Text Indent"
},
"letterSpacing": {
"type": "number",
"displayName": "Letter Spacing"
},
"wordSpacing": {
"type": "number",
"displayName": "Word Spacing"
},
"fontVariant": {
"type": "select",
"displayName": "Font Variant",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "small-caps",
"value": "small-caps"
},
{
"name": "initial",
"value": "initial"
},
{
"name": "inherit",
"value": "inherit"
}
]
},
"textSize": {
"type": "number",
"displayName": "Text Size",
"validation": {
"schema": {
"type": "number"
}
}
},
"backgroundColor": {
"type": "color",
"displayName": "Background Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"textColor": {
"type": "color",
"displayName": "Text Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"textAlign": {
"type": "alignButtons",
"displayName": "Align Text",
"validation": {
"schema": {
"type": "string"
}
}
},
"visibility": {
"type": "toggle",
"displayName": "Visibility",
"validation": {
"schema": {
"type": "boolean"
}
}
},
"disabledState": {
"type": "toggle",
"displayName": "Disable",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"validate": true,
"generalStyles": {
"boxShadow": {
"type": "boxShadow",
"displayName": "Box Shadow"
}
},
"definition": {
"others": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"events": [],
"styles": {
"backgroundColor": {
"value": "#fff00000"
},
"textColor": {
"value": "#000000"
},
"textSize": {
"value": 14
},
"textAlign": {
"value": "left"
},
"fontWeight": {
"value": "bold"
},
"decoration": {
"value": "none"
},
"transformation": {
"value": "none"
},
"fontStyle": {
"value": "normal"
},
"lineHeight": {
"value": 1.5
},
"textIndent": {
"value": 0
},
"letterSpacing": {
"value": 0
},
"wordSpacing": {
"value": 0
},
"fontVariant": {
"value": "normal"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "0px 0px 0px 0px #00000040"
}
},
"properties": {
"text": {
"value": "Status"
},
"loadingState": {
"value": "{{false}}"
}
},
"general": {},
"exposedVariables": {}
},
"name": "statusLabel",
"displayName": "Text",
"description": "Display text or HTML",
"component": "Text",
"defaultSize": {
"width": 6,
"height": 30
},
"exposedVariables": {
"text": "Hello, there!"
},
"actions": [
{
"handle": "setText",
"displayName": "Set Text",
"params": [
{
"handle": "text",
"displayName": "Text",
"defaultValue": "New text"
}
]
},
{
"handle": "visibility",
"displayName": "Set Visibility",
"params": [
{
"handle": "visibility",
"displayName": "Value",
"defaultValue": "{{false}}",
"type": "toggle"
}
]
}
]
},
"layouts": {
"desktop": {
"top": 390,
"left": 6.976738292435557,
"width": 20.999999999999996,
"height": 30
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"3f3a0093-91c6-4ffe-ba28-d71dd53c6c06": {
"component": {
"properties": {
"loadingState": {
"type": "toggle",
"displayName": "loading state",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"general": {
"tooltip": {
"type": "code",
"displayName": "Tooltip",
"validation": {
"schema": {
"type": "string"
}
}
}
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"events": {},
"styles": {
"backgroundColor": {
"type": "color",
"displayName": "Background color",
"validation": {
"schema": {
"type": "string"
}
}
},
"borderRadius": {
"type": "code",
"displayName": "Border Radius",
"validation": {
"schema": {
"type": "union",
"schemas": [
{
"type": "string"
},
{
"type": "number"
}
]
}
}
},
"borderColor": {
"type": "color",
"displayName": "Border color",
"validation": {
"schema": {
"type": "string"
}
}
},
"visibility": {
"type": "toggle",
"displayName": "Visibility",
"validation": {
"schema": {
"type": "boolean"
}
}
},
"disabledState": {
"type": "toggle",
"displayName": "Disable",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"validate": true,
"generalStyles": {
"boxShadow": {
"type": "boxShadow",
"displayName": "Box Shadow"
}
},
"definition": {
"others": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"events": [],
"styles": {
"backgroundColor": {
"value": "#fff"
},
"borderRadius": {
"value": "10"
},
"borderColor": {
"value": "#ffffff00"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "0px 0px 0px 0px #00000040"
}
},
"properties": {
"visible": {
"value": "{{true}}"
},
"loadingState": {
"value": "{{false}}"
}
},
"general": {},
"exposedVariables": {}
},
"name": "container3",
"displayName": "Container",
"description": "Group components",
"defaultSize": {
"width": 5,
"height": 200
},
"component": "Container",
"exposedVariables": {}
},
"layouts": {
"desktop": {
"top": 20,
"left": 2.3255813953488373,
"width": 41,
"height": 70
}
},
"withDefaultChildren": false
},
"e18ce834-d141-4078-ac43-1450d7f7c9bc": {
"id": "e18ce834-d141-4078-ac43-1450d7f7c9bc",
"component": {
"name": "text10",
"displayName": "Text",
"description": "Display markdown or HTML",
"component": "Text",
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"properties": {
"text": {
"type": "code",
"displayName": "Text"
},
"loadingState": {
"type": "code",
"displayName": "Show loading state"
}
},
"defaultSize": {
"width": 3,
"height": 30
},
"events": [],
"styles": {
"textColor": {
"type": "color",
"displayName": "Text Color"
},
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
}
},
"exposedVariables": {},
"definition": {
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"properties": {
"text": {
"value": "Job Application Tracker"
},
"visible": {
"value": true
},
"loadingState": {
"value": "{{false}}"
}
},
"events": [],
"styles": {
"textColor": {
"value": "#000"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"fontWeight": {
"value": "bold"
},
"textSize": {
"value": "{{24}}"
},
"fontVariant": {
"value": "normal"
},
"textAlign": {
"value": "left"
}
}
}
},
"layouts": {
"desktop": {
"top": 10,
"left": 2.325581358962442,
"width": 13,
"height": 40
}
},
"parent": "3f3a0093-91c6-4ffe-ba28-d71dd53c6c06"
},
"a8bc48dd-488c-4d50-93f3-f009453dd047": {
"id": "a8bc48dd-488c-4d50-93f3-f009453dd047",
"component": {
"properties": {
"icon": {
"type": "iconPicker",
"displayName": "Icon",
"validation": {
"schema": {
"type": "string"
}
}
}
},
"general": {
"tooltip": {
"type": "code",
"displayName": "Tooltip",
"validation": {
"schema": {
"type": "string"
}
}
}
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"events": {
"onClick": {
"displayName": "On click"
},
"onHover": {
"displayName": "On hover"
}
},
"styles": {
"iconColor": {
"type": "color",
"displayName": "Icon Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"visibility": {
"type": "toggle",
"displayName": "Visibility",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"validate": true,
"generalStyles": {
"boxShadow": {
"type": "boxShadow",
"displayName": "Box Shadow"
}
},
"definition": {
"others": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"events": [
{
"eventId": "onClick",
"actionId": "open-webpage",
"message": "Hello world!",
"alertType": "info",
"url": "{{`https://docs.google.com/spreadsheets/d/${queries.Readme.data.spreadsheetId}`}}"
}
],
"styles": {
"iconColor": {
"value": "#009410ff"
},
"visibility": {
"value": "{{true}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "0px 0px 0px 0px #00000040"
}
},
"properties": {
"icon": {
"value": "IconFileSpreadsheet"
}
},
"general": {
"tooltip": {
"value": "View Sheet"
}
},
"exposedVariables": {}
},
"name": "viewSheet",
"displayName": "Icon",
"description": "Icon",
"defaultSize": {
"width": 5,
"height": 48
},
"component": "Icon",
"exposedVariables": {},
"actions": [
{
"handle": "click",
"displayName": "Click"
},
{
"displayName": "Set Visibility",
"handle": "setVisibility",
"params": [
{
"handle": "value",
"displayName": "Value",
"defaultValue": "{{true}}",
"type": "toggle"
}
]
}
]
},
"layouts": {
"desktop": {
"top": 10,
"left": 95.34882705281203,
"width": 1,
"height": 40
}
},
"parent": "3f3a0093-91c6-4ffe-ba28-d71dd53c6c06"
}
},
"handle": "home",
"name": "Home"
}
},
"globalSettings": {
"hideHeader": false,
"appInMaintenance": false,
"canvasMaxWidth": 100,
"canvasMaxWidthType": "%",
"canvasMaxHeight": 2400,
"canvasBackgroundColor": "#F2F2F5",
"backgroundFxQuery": ""
}
},
"globalSettings": {
"hideHeader": true,
"appInMaintenance": false,
"canvasMaxWidth": 100,
"canvasMaxWidthType": "%",
"canvasMaxHeight": 2400,
"canvasBackgroundColor": "",
"backgroundFxQuery": ""
},
"showViewerNavigation": false,
"homePageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"appId": "f1315ce0-80d8-41ce-a134-ecd7e7515cc6",
"currentEnvironmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4",
"promotedFrom": null,
"createdAt": "2023-11-01T02:09:26.459Z",
"updatedAt": "2024-01-04T23:31:11.416Z"
},
"components": [
{
"id": "5b27eb43-51a6-4d20-8b00-a9ed7f697170",
"name": "jobApplicationsLabel",
"type": "Text",
"pageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"parent": "47c047c4-c752-417b-b1b3-c3236011abf1",
"properties": {
"text": {
"value": "Job Applications"
},
"visible": {
"value": true
},
"loadingState": {
"value": "{{false}}"
}
},
"general": {},
"styles": {
"textColor": {
"value": "#000"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"textAlign": {
"value": "left"
},
"fontVariant": {
"value": "normal"
},
"fontWeight": {
"value": "bold"
},
"textSize": {
"value": "{{16}}"
}
},
"generalStyles": {},
"displayPreferences": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"validation": {},
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z",
"layouts": [
{
"id": "0ab809ab-cf06-4148-b605-1802ffdb2c26",
"type": "desktop",
"top": 20,
"left": 2.325581063448678,
"width": 10,
"height": 30,
"componentId": "5b27eb43-51a6-4d20-8b00-a9ed7f697170"
}
]
},
{
"id": "e869e61b-b598-493e-801a-50dd0dc82824",
"name": "container2",
"type": "Container",
"pageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"parent": null,
"properties": {
"visible": {
"value": true
}
},
"general": {},
"styles": {
"backgroundColor": {
"value": "#fff"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{queries.findNewRowId.isLoading || queries.createJobApplication.isLoading || queries.resetForm.isLoading || queries.findRowNumber.isLoading || queries.updateJobApplication.isLoading || queries.deleteJobApplication.isLoading || queries.getJobApplications.isLoading}}",
"fxActive": true
},
"borderRadius": {
"value": "10"
},
"borderColor": {
"value": "#8888884d"
}
},
"generalStyles": {},
"displayPreferences": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"validation": {},
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2024-01-02T13:00:20.693Z",
"layouts": [
{
"id": "a8136b64-218e-4c14-a067-5b4f0f6a4522",
"type": "desktop",
"top": 110,
"left": 79.06979007344586,
"width": 8,
"height": 710,
"componentId": "e869e61b-b598-493e-801a-50dd0dc82824"
}
]
},
{
"id": "5a796439-f4e5-47d2-a568-48025814f72f",
"name": "text4",
"type": "Text",
"pageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"parent": "e869e61b-b598-493e-801a-50dd0dc82824",
"properties": {
"text": {
"value": "Create/Modify Applications"
},
"visible": {
"value": true
},
"loadingState": {
"value": "{{false}}"
}
},
"general": {},
"styles": {
"textColor": {
"value": "#000"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"fontWeight": {
"value": "bold"
},
"fontVariant": {
"value": "normal"
},
"textSize": {
"value": "{{16}}"
}
},
"generalStyles": {},
"displayPreferences": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"validation": {},
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z",
"layouts": [
{
"id": "90cca86e-bafd-4082-b260-2ad3316e3ab7",
"type": "desktop",
"top": 20,
"left": 6.976746436211469,
"width": 36.99999999999999,
"height": 30,
"componentId": "5a796439-f4e5-47d2-a568-48025814f72f"
}
]
},
{
"id": "1bd5e75c-609e-4e47-a1e9-f2085c54e116",
"name": "createButton",
"type": "Button",
"pageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"parent": "e869e61b-b598-493e-801a-50dd0dc82824",
"properties": {
"text": {
"value": "Create"
},
"visible": {
"value": true
},
"loadingState": {
"value": "{{queries.findNewRowId.isLoading || queries.createJobApplication.isLoading}}",
"fxActive": true
}
},
"general": {},
"styles": {
"backgroundColor": {
"value": "#2b8a69"
},
"textColor": {
"value": "#fff"
},
"visibility": {
"value": "{{true}}"
},
"borderRadius": {
"value": "{{5}}"
},
"disabledState": {
"value": "{{components.companyName.value == \"\" || components.position.value == \"\" || !components.applicationUrl.isValid || components.applicationUrl.value == \"\" || components.dateApplied.value == undefined || components.status.value == undefined}}",
"fxActive": true
},
"borderColor": {
"value": "#ffffff00"
}
},
"generalStyles": {},
"displayPreferences": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"validation": {},
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2024-01-02T12:52:19.688Z",
"layouts": [
{
"id": "08ef04a2-ceaf-4224-8006-7a4a1046aee3",
"type": "desktop",
"top": 480,
"left": 6.9768320425397405,
"width": 37,
"height": 40,
"componentId": "1bd5e75c-609e-4e47-a1e9-f2085c54e116"
}
]
},
{
"id": "d7f0aee2-d6b2-45f6-9dd9-f9ec28f6a74c",
"name": "updateButton",
"type": "Button",
"pageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"parent": "e869e61b-b598-493e-801a-50dd0dc82824",
"properties": {
"text": {
"value": "Update"
},
"visible": {
"value": true
},
"loadingState": {
"value": "{{queries.updateJobApplication.isLoading}}",
"fxActive": true
}
},
"general": {},
"styles": {
"backgroundColor": {
"value": "#0e3e77"
},
"textColor": {
"value": "#fff"
},
"visibility": {
"value": "{{true}}"
},
"borderRadius": {
"value": "{{5}}"
},
"disabledState": {
"value": "{{components.applicationId.value == undefined || components.companyName.value == \"\" || components.position.value == \"\" || components.applicationUrl.value == \"\" || components.dateApplied.value == undefined || components.status.value == undefined}}",
"fxActive": true
},
"borderColor": {
"value": "#ffffff00"
}
},
"generalStyles": {},
"displayPreferences": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"validation": {},
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2024-01-02T12:52:32.724Z",
"layouts": [
{
"id": "8593ca02-0a28-4667-8a4c-4b95fb9b9513",
"type": "desktop",
"top": 640,
"left": 6.976680336660044,
"width": 17,
"height": 40,
"componentId": "d7f0aee2-d6b2-45f6-9dd9-f9ec28f6a74c"
}
]
},
{
"id": "5c90f41e-f1cd-4725-bc6c-8f8a32b2cdfd",
"name": "applicationId",
"type": "DropDown",
"pageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"parent": "e869e61b-b598-493e-801a-50dd0dc82824",
"properties": {
"label": {
"value": ""
},
"value": {
"value": "{{components.jobApplicationsTable.selectedRow.id ?? undefined}}"
},
"values": {
"value": "{{queries.getJobApplications.data.map((row) => row.id)}}"
},
"display_values": {
"value": "{{queries.getJobApplications.data.map((row) => row.id)}}"
},
"visible": {
"value": true
},
"loadingState": {
"value": "{{queries.getJobApplications.isLoading}}",
"fxActive": true
},
"placeholder": {
"value": "Select Application ID..."
}
},
"general": {},
"styles": {
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"borderRadius": {
"value": "5"
}
},
"generalStyles": {},
"displayPreferences": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"validation": {
"customRule": {
"value": null
}
},
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z",
"layouts": [
{
"id": "37b775a2-3e15-40df-a5c7-a9593ad5ff29",
"type": "desktop",
"top": 580,
"left": 6.976863964638667,
"width": 37,
"height": 40,
"componentId": "5c90f41e-f1cd-4725-bc6c-8f8a32b2cdfd"
}
]
},
{
"id": "f84bcdf3-9c88-4aa9-8746-831c838154c4",
"name": "deleteButton",
"type": "Button",
"pageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"parent": "e869e61b-b598-493e-801a-50dd0dc82824",
"properties": {
"text": {
"value": "Delete"
},
"visible": {
"value": true
},
"loadingState": {
"value": "{{queries.findRowNumber.isLoading || queries.deleteJobApplication.isLoading}}",
"fxActive": true
}
},
"general": {},
"styles": {
"backgroundColor": {
"value": "#d0021b"
},
"textColor": {
"value": "#fff"
},
"visibility": {
"value": "{{true}}"
},
"borderRadius": {
"value": "{{5}}"
},
"disabledState": {
"value": "{{components.applicationId.value == undefined}}",
"fxActive": true
},
"borderColor": {
"value": "#ffffff00"
}
},
"generalStyles": {},
"displayPreferences": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"validation": {},
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2024-01-02T12:52:42.368Z",
"layouts": [
{
"id": "a3853fd9-cb17-4105-89a3-f50a1321ac15",
"type": "desktop",
"top": 640,
"left": 52.88775649425791,
"width": 17,
"height": 40,
"componentId": "f84bcdf3-9c88-4aa9-8746-831c838154c4"
}
]
},
{
"id": "21d80da4-c189-4fff-bc4b-71bff17c29a9",
"name": "rowIdLabel",
"type": "Text",
"pageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"parent": "e869e61b-b598-493e-801a-50dd0dc82824",
"properties": {
"text": {
"value": "Application ID"
},
"loadingState": {
"value": "{{false}}"
}
},
"general": {},
"styles": {
"backgroundColor": {
"value": "#fff00000"
},
"textColor": {
"value": "#000000"
},
"textSize": {
"value": "{{14}}"
},
"textAlign": {
"value": "left"
},
"fontWeight": {
"value": "bold"
},
"decoration": {
"value": "none"
},
"transformation": {
"value": "none"
},
"fontStyle": {
"value": "normal"
},
"lineHeight": {
"value": 1.5
},
"textIndent": {
"value": 0
},
"letterSpacing": {
"value": 0
},
"wordSpacing": {
"value": 0
},
"fontVariant": {
"value": "normal"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "0px 0px 0px 0px #00000040"
}
},
"displayPreferences": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"validation": {},
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z",
"layouts": [
{
"id": "ec14efc8-635d-4a54-81b8-9c370a7706f8",
"type": "desktop",
"top": 550,
"left": 6.976743507308886,
"width": 19,
"height": 30,
"componentId": "21d80da4-c189-4fff-bc4b-71bff17c29a9"
}
]
},
{
"id": "96f05d4c-1678-447f-8377-fcc807d0f988",
"name": "companyNameLabel",
"type": "Text",
"pageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"parent": "e869e61b-b598-493e-801a-50dd0dc82824",
"properties": {
"text": {
"value": "Company Name"
},
"loadingState": {
"value": "{{false}}"
}
},
"general": {},
"styles": {
"backgroundColor": {
"value": "#fff00000"
},
"textColor": {
"value": "#000000"
},
"textSize": {
"value": 14
},
"textAlign": {
"value": "left"
},
"fontWeight": {
"value": "bold"
},
"decoration": {
"value": "none"
},
"transformation": {
"value": "none"
},
"fontStyle": {
"value": "normal"
},
"lineHeight": {
"value": 1.5
},
"textIndent": {
"value": 0
},
"letterSpacing": {
"value": 0
},
"wordSpacing": {
"value": 0
},
"fontVariant": {
"value": "normal"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "0px 0px 0px 0px #00000040"
}
},
"displayPreferences": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"validation": {},
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z",
"layouts": [
{
"id": "1fa555c1-735f-45e4-90e1-40a8f14c0231",
"type": "desktop",
"top": 70,
"left": 6.976761465794188,
"width": 20.999999999999996,
"height": 30,
"componentId": "96f05d4c-1678-447f-8377-fcc807d0f988"
}
]
},
{
"id": "ff4c36ce-fffc-4efd-81ec-f1ab87d7a791",
"name": "positionLabel",
"type": "Text",
"pageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"parent": "e869e61b-b598-493e-801a-50dd0dc82824",
"properties": {
"text": {
"value": "Position"
},
"loadingState": {
"value": "{{false}}"
}
},
"general": {},
"styles": {
"backgroundColor": {
"value": "#fff00000"
},
"textColor": {
"value": "#000000"
},
"textSize": {
"value": 14
},
"textAlign": {
"value": "left"
},
"fontWeight": {
"value": "bold"
},
"decoration": {
"value": "none"
},
"transformation": {
"value": "none"
},
"fontStyle": {
"value": "normal"
},
"lineHeight": {
"value": 1.5
},
"textIndent": {
"value": 0
},
"letterSpacing": {
"value": 0
},
"wordSpacing": {
"value": 0
},
"fontVariant": {
"value": "normal"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "0px 0px 0px 0px #00000040"
}
},
"displayPreferences": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"validation": {},
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z",
"layouts": [
{
"id": "5152c1c5-feb6-4d1e-a9a1-888674770571",
"type": "desktop",
"top": 150,
"left": 6.976735592225935,
"width": 20.999999999999996,
"height": 30,
"componentId": "ff4c36ce-fffc-4efd-81ec-f1ab87d7a791"
}
]
},
{
"id": "29732e74-5c64-46a7-ac9e-c9e6b48e7391",
"name": "applicationUrlLabel",
"type": "Text",
"pageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"parent": "e869e61b-b598-493e-801a-50dd0dc82824",
"properties": {
"text": {
"value": "Application URL"
},
"loadingState": {
"value": "{{false}}"
}
},
"general": {},
"styles": {
"backgroundColor": {
"value": "#fff00000"
},
"textColor": {
"value": "#000000"
},
"textSize": {
"value": 14
},
"textAlign": {
"value": "left"
},
"fontWeight": {
"value": "bold"
},
"decoration": {
"value": "none"
},
"transformation": {
"value": "none"
},
"fontStyle": {
"value": "normal"
},
"lineHeight": {
"value": 1.5
},
"textIndent": {
"value": 0
},
"letterSpacing": {
"value": 0
},
"wordSpacing": {
"value": 0
},
"fontVariant": {
"value": "normal"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "0px 0px 0px 0px #00000040"
}
},
"displayPreferences": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"validation": {},
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z",
"layouts": [
{
"id": "e3fdaadd-5885-4613-8545-0d45eb93ec39",
"type": "desktop",
"top": 230,
"left": 6.976750733121757,
"width": 20.999999999999996,
"height": 30,
"componentId": "29732e74-5c64-46a7-ac9e-c9e6b48e7391"
}
]
},
{
"id": "8938e16b-13c0-4715-9e7f-f0db3003e23c",
"name": "dateAppliedLabel",
"type": "Text",
"pageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"parent": "e869e61b-b598-493e-801a-50dd0dc82824",
"properties": {
"text": {
"value": "Date Applied"
},
"loadingState": {
"value": "{{false}}"
}
},
"general": {},
"styles": {
"backgroundColor": {
"value": "#fff00000"
},
"textColor": {
"value": "#000000"
},
"textSize": {
"value": 14
},
"textAlign": {
"value": "left"
},
"fontWeight": {
"value": "bold"
},
"decoration": {
"value": "none"
},
"transformation": {
"value": "none"
},
"fontStyle": {
"value": "normal"
},
"lineHeight": {
"value": 1.5
},
"textIndent": {
"value": 0
},
"letterSpacing": {
"value": 0
},
"wordSpacing": {
"value": 0
},
"fontVariant": {
"value": "normal"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "0px 0px 0px 0px #00000040"
}
},
"displayPreferences": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"validation": {},
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z",
"layouts": [
{
"id": "9a09d04c-a102-4859-a4fc-c572c5ab5264",
"type": "desktop",
"top": 310,
"left": 6.976728440645868,
"width": 20.999999999999996,
"height": 30,
"componentId": "8938e16b-13c0-4715-9e7f-f0db3003e23c"
}
]
},
{
"id": "ba4c34e1-e166-4017-8e29-906fca0989b0",
"name": "statusLabel",
"type": "Text",
"pageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"parent": "e869e61b-b598-493e-801a-50dd0dc82824",
"properties": {
"text": {
"value": "Status"
},
"loadingState": {
"value": "{{false}}"
}
},
"general": {},
"styles": {
"backgroundColor": {
"value": "#fff00000"
},
"textColor": {
"value": "#000000"
},
"textSize": {
"value": 14
},
"textAlign": {
"value": "left"
},
"fontWeight": {
"value": "bold"
},
"decoration": {
"value": "none"
},
"transformation": {
"value": "none"
},
"fontStyle": {
"value": "normal"
},
"lineHeight": {
"value": 1.5
},
"textIndent": {
"value": 0
},
"letterSpacing": {
"value": 0
},
"wordSpacing": {
"value": 0
},
"fontVariant": {
"value": "normal"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "0px 0px 0px 0px #00000040"
}
},
"displayPreferences": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"validation": {},
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z",
"layouts": [
{
"id": "8d31a4d8-afac-4255-a732-b7fbf8baa1df",
"type": "desktop",
"top": 390,
"left": 6.976738292435557,
"width": 20.999999999999996,
"height": 30,
"componentId": "ba4c34e1-e166-4017-8e29-906fca0989b0"
}
]
},
{
"id": "83218a2e-2ec0-416b-8eca-9a5e912e1f9e",
"name": "container3",
"type": "Container",
"pageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"parent": null,
"properties": {
"visible": {
"value": "{{true}}"
},
"loadingState": {
"value": "{{false}}"
}
},
"general": {},
"styles": {
"backgroundColor": {
"value": "#fff"
},
"borderRadius": {
"value": "10"
},
"borderColor": {
"value": "#8888884d",
"fxActive": false
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "0px 0px 0px 0px #00000040"
}
},
"displayPreferences": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"validation": {},
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2024-01-02T12:59:54.056Z",
"layouts": [
{
"id": "8c41ceee-20ed-4532-a3d7-aa3be44f525a",
"type": "desktop",
"top": 20,
"left": 2.3255813953488373,
"width": 41,
"height": 70,
"componentId": "83218a2e-2ec0-416b-8eca-9a5e912e1f9e"
}
]
},
{
"id": "31906344-20ce-42a0-ba20-ef31af3d6991",
"name": "text10",
"type": "Text",
"pageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"parent": "83218a2e-2ec0-416b-8eca-9a5e912e1f9e",
"properties": {
"text": {
"value": "Job Application Tracker"
},
"visible": {
"value": true
},
"loadingState": {
"value": "{{false}}"
}
},
"general": {},
"styles": {
"textColor": {
"value": "#000"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"fontWeight": {
"value": "bold"
},
"textSize": {
"value": "{{24}}"
},
"fontVariant": {
"value": "normal"
},
"textAlign": {
"value": "left"
}
},
"generalStyles": {},
"displayPreferences": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"validation": {},
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z",
"layouts": [
{
"id": "eb1e2e43-1a68-4da0-9acf-46c831b1bd25",
"type": "desktop",
"top": 10,
"left": 2.325581358962442,
"width": 13,
"height": 40,
"componentId": "31906344-20ce-42a0-ba20-ef31af3d6991"
}
]
},
{
"id": "47c047c4-c752-417b-b1b3-c3236011abf1",
"name": "container1",
"type": "Container",
"pageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"parent": null,
"properties": {
"visible": {
"value": true
}
},
"general": {},
"styles": {
"backgroundColor": {
"value": "#fff"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"borderRadius": {
"value": "10"
},
"borderColor": {
"value": "#8888884d"
}
},
"generalStyles": {},
"displayPreferences": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"validation": {},
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2024-01-02T13:00:09.759Z",
"layouts": [
{
"id": "70770cf8-722c-44f9-bcf5-77c95bb848bc",
"type": "desktop",
"top": 110,
"left": 2.325571246913861,
"width": 32,
"height": 710,
"componentId": "47c047c4-c752-417b-b1b3-c3236011abf1"
}
]
},
{
"id": "36c3a7f0-c95e-4de1-9f9a-4ea2e09d9f42",
"name": "applicationUrl",
"type": "TextInput",
"pageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"parent": "e869e61b-b598-493e-801a-50dd0dc82824",
"properties": {
"value": {
"value": "{{components.jobApplicationsTable.selectedRow.application_url ?? \"\"}}"
},
"placeholder": {
"value": "https://docs.google.com/..."
}
},
"general": {},
"styles": {
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"borderRadius": {
"value": "5"
}
},
"generalStyles": {
"boxShadow": {
"value": "{{components.applicationUrl.isValid ? \"0px 0px 0px 0px #00000040\" : \"0px 0px 0px 0px #ff000040\"}}",
"fxActive": true
}
},
"displayPreferences": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"validation": {
"regex": {
"value": ""
},
"minLength": {
"value": null
},
"maxLength": {
"value": null
},
"customRule": {
"value": "{{/^(https?:\\/\\/)?((([a-z\\d]([a-z\\d-]*[a-z\\d])*)\\.)+[a-z]{2,}|((\\d{1,3}\\.){3}\\d{1,3}))(\\:\\d+)?(\\/[-a-z\\d%_.~+]*)*(\\?[;&a-z\\d%_.~+=-]*)?(\\#[-a-z\\d_]*)?$/i.test(components.applicationUrl.value) || components.applicationUrl.value == \"\" ? true : \" \"}}"
}
},
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2024-01-02T12:51:55.576Z",
"layouts": [
{
"id": "f2c991de-16cf-44b5-bcc2-2dfe42c77c81",
"type": "desktop",
"top": 260,
"left": 6.97671447542142,
"width": 37,
"height": 40,
"componentId": "36c3a7f0-c95e-4de1-9f9a-4ea2e09d9f42"
}
]
},
{
"id": "5a35c1e4-4078-48c1-bb14-9ab90c6ff673",
"name": "companyName",
"type": "TextInput",
"pageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"parent": "e869e61b-b598-493e-801a-50dd0dc82824",
"properties": {
"value": {
"value": "{{components.jobApplicationsTable.selectedRow.company ?? \"\"}}"
},
"placeholder": {
"value": "Company Name"
}
},
"general": {},
"styles": {
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"borderRadius": {
"value": "5"
}
},
"generalStyles": {},
"displayPreferences": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"validation": {
"regex": {
"value": ""
},
"minLength": {
"value": null
},
"maxLength": {
"value": null
},
"customRule": {
"value": null
}
},
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z",
"layouts": [
{
"id": "de217adc-ca33-41a5-bb59-5765ee8a2da9",
"type": "desktop",
"top": 100,
"left": 6.976848333087142,
"width": 37,
"height": 40,
"componentId": "5a35c1e4-4078-48c1-bb14-9ab90c6ff673"
}
]
},
{
"id": "daaeddb8-d67d-4ef6-82ec-c6ead686b432",
"name": "position",
"type": "TextInput",
"pageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"parent": "e869e61b-b598-493e-801a-50dd0dc82824",
"properties": {
"value": {
"value": "{{components.jobApplicationsTable.selectedRow.position ?? \"\"}}"
},
"placeholder": {
"value": "Position"
}
},
"general": {},
"styles": {
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"borderRadius": {
"value": "5"
}
},
"generalStyles": {},
"displayPreferences": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"validation": {
"regex": {
"value": ""
},
"minLength": {
"value": null
},
"maxLength": {
"value": null
},
"customRule": {
"value": null
}
},
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2024-01-02T12:51:51.813Z",
"layouts": [
{
"id": "88b8fd52-40cf-468f-b6bc-919f2474ba39",
"type": "desktop",
"top": 180,
"left": 6.976727570968298,
"width": 37,
"height": 40,
"componentId": "daaeddb8-d67d-4ef6-82ec-c6ead686b432"
}
]
},
{
"id": "a7ad870d-af23-48ca-8af7-ad60a1381a3d",
"name": "dateApplied",
"type": "Datepicker",
"pageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"parent": "e869e61b-b598-493e-801a-50dd0dc82824",
"properties": {
"defaultValue": {
"value": "{{components.jobApplicationsTable.selectedRow.date_applied ?? variables.dateAppliedDefaultValue}}"
},
"format": {
"value": "Do MMM YYYY"
},
"enableTime": {
"value": "{{false}}"
},
"enableDate": {
"value": "{{true}}"
}
},
"general": {},
"styles": {
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"borderRadius": {
"value": "5"
}
},
"generalStyles": {},
"displayPreferences": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"validation": {
"customRule": {
"value": null
}
},
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z",
"layouts": [
{
"id": "13c2de75-067a-480e-b916-ac1bfe2488c3",
"type": "desktop",
"top": 340,
"left": 6.976972558483813,
"width": 37,
"height": 40,
"componentId": "a7ad870d-af23-48ca-8af7-ad60a1381a3d"
}
]
},
{
"id": "68defd15-61c6-401e-8d39-d75410c851d9",
"name": "status",
"type": "DropDown",
"pageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"parent": "e869e61b-b598-493e-801a-50dd0dc82824",
"properties": {
"label": {
"value": ""
},
"value": {
"value": "{{components.jobApplicationsTable.selectedRow.status ?? undefined}}"
},
"values": {
"value": "{{[\n \"Wishlisted\",\n \"Applied\",\n \"Interview Scheduled\",\n \"Interviewed\",\n \"Shortlisted\",\n \"Offered\",\n \"Rejected\",\n]}}"
},
"display_values": {
"value": "{{[\n \"Wishlisted\",\n \"Applied\",\n \"Interview Scheduled\",\n \"Interviewed\",\n \"Shortlisted\",\n \"Offered\",\n \"Rejected\",\n]}}"
},
"visible": {
"value": true
},
"advanced": {
"value": "{{false}}"
},
"placeholder": {
"value": "Select Status..."
}
},
"general": {},
"styles": {
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"borderRadius": {
"value": "5"
}
},
"generalStyles": {},
"displayPreferences": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"validation": {
"customRule": {
"value": null
}
},
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z",
"layouts": [
{
"id": "49a5fbc6-240d-453b-8d3e-d50c87f6b6a3",
"type": "desktop",
"top": 420,
"left": 6.97668369450244,
"width": 37,
"height": 40,
"componentId": "68defd15-61c6-401e-8d39-d75410c851d9"
}
]
},
{
"id": "5c9365d6-3cab-4579-9116-70d48ac128e0",
"name": "viewSheet",
"type": "Icon",
"pageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"parent": "83218a2e-2ec0-416b-8eca-9a5e912e1f9e",
"properties": {
"icon": {
"value": "IconFileSpreadsheet"
}
},
"general": {
"tooltip": {
"value": "View Sheet"
}
},
"styles": {
"iconColor": {
"value": "#009410ff"
},
"visibility": {
"value": "{{true}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "0px 0px 0px 0px #00000040"
}
},
"displayPreferences": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"validation": {},
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z",
"layouts": [
{
"id": "4d6ab94f-b508-472f-bbc5-368e36c801dc",
"type": "desktop",
"top": 10,
"left": 95.34884776871291,
"width": 1,
"height": 40,
"componentId": "5c9365d6-3cab-4579-9116-70d48ac128e0"
}
]
},
{
"id": "ff2c79aa-99a7-499d-897c-c7259d2b964a",
"name": "jobApplicationsTable",
"type": "Table",
"pageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"parent": "47c047c4-c752-417b-b1b3-c3236011abf1",
"properties": {
"title": {
"value": "Table"
},
"visible": {
"value": true
},
"loadingState": {
"value": "{{queries.getJobApplications.isLoading}}",
"fxActive": true
},
"data": {
"value": "{{queries.getJobApplications.data}}"
},
"serverSidePagination": {
"value": false
},
"clientSidePagination": {
"value": false
},
"displaySearchBox": {
"value": true
},
"showDownloadButton": {
"value": true
},
"showFilterButton": {
"value": true
},
"columns": {
"value": [
{
"name": "id",
"id": "35f092ef-2eba-4504-ba01-72546b5b9f1d",
"columnType": "string"
},
{
"name": "Company",
"id": "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737",
"key": "company",
"columnType": "string"
},
{
"name": "Position",
"id": "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a",
"key": "position",
"columnType": "string"
},
{
"name": "Date Applied",
"id": "1f7e4a2a-8763-4cf0-bf40-f2a704d0e327",
"key": "date_applied",
"columnType": "string"
},
{
"name": "Status",
"id": "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f",
"key": "status",
"columnType": "string"
}
]
},
"showBulkUpdateActions": {
"value": "{{false}}"
},
"showBulkSelector": {
"value": false
},
"highlightSelectedRow": {
"value": false
},
"columnSizes": {
"value": {
"35f092ef-2eba-4504-ba01-72546b5b9f1d": 92,
"e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 264,
"5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a": 242,
"1f7e4a2a-8763-4cf0-bf40-f2a704d0e327": 174,
"afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f": 64
}
},
"actions": {
"value": [
{
"name": "Action0",
"buttonText": "Open Application",
"events": [
{
"eventId": "onClick",
"actionId": "open-webpage",
"message": "Hello world!",
"url": "{{components.jobApplicationsTable.selectedRow.application_url}}"
}
],
"position": "right",
"backgroundColor": "#375fcfff",
"textColor": "#ffffffff"
}
]
},
"showAddNewRowButton": {
"value": "{{false}}"
},
"hideColumnSelectorButton": {
"fxActive": false,
"value": "{{false}}"
},
"columnDeletionHistory": {
"value": [
"application_url"
]
},
"allowSelection": {
"value": "{{false}}"
}
},
"general": {},
"styles": {
"textColor": {},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"cellSize": {
"value": "regular"
},
"borderRadius": {
"value": "10"
},
"tableType": {
"value": "table-bordered"
},
"actionButtonRadius": {
"value": "5"
}
},
"generalStyles": {},
"displayPreferences": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"validation": {},
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2024-01-02T12:55:52.870Z",
"layouts": [
{
"id": "99c3ced9-e498-4609-905e-b8e21e36a877",
"type": "desktop",
"top": 60,
"left": 2.3255827188672233,
"width": 41.00000000000001,
"height": 620,
"componentId": "ff2c79aa-99a7-499d-897c-c7259d2b964a"
}
]
},
{
"id": "87d81db7-f22a-45e8-890b-68e54e53e335",
"name": "divider1",
"type": "Divider",
"pageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"parent": null,
"properties": {},
"general": null,
"styles": {},
"generalStyles": null,
"displayPreferences": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"validation": {},
"createdAt": "2024-01-04T10:14:19.979Z",
"updatedAt": "2024-01-04T10:14:19.979Z",
"layouts": [
{
"id": "7e6c1d08-22b6-47a9-b23b-2bd5bb46e718",
"type": "desktop",
"top": 1090,
"left": 74.4186046511628,
"width": 10,
"height": 10,
"componentId": "87d81db7-f22a-45e8-890b-68e54e53e335"
},
{
"id": "c32277b9-809a-4d38-9cdb-d1c0f80c85a0",
"type": "mobile",
"top": 1090,
"left": 74.4186046511628,
"width": 10,
"height": 10,
"componentId": "87d81db7-f22a-45e8-890b-68e54e53e335"
}
]
}
],
"pages": [
{
"id": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"name": "Home",
"handle": "home",
"index": 0,
"disabled": false,
"hidden": false,
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0"
}
],
"events": [
{
"id": "6c1bf48f-261c-4684-bd4c-74656048aaa4",
"name": "onClick",
"index": 0,
"event": {
"eventId": "onClick",
"message": "Hello world!",
"queryId": "b480d882-f3f6-48d4-8ee9-b01332e1d9ef",
"actionId": "run-query",
"queryName": "findNewRowId",
"parameters": {}
},
"sourceId": "1bd5e75c-609e-4e47-a1e9-f2085c54e116",
"target": "component",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "9ecc2475-d19e-4398-8ad6-5aa237a141c8",
"name": "onClick",
"index": 0,
"event": {
"eventId": "onClick",
"message": "Hello world!",
"queryId": "dced4670-881c-475b-856c-5a854f56f158",
"actionId": "run-query",
"alertType": "info",
"queryName": "updateJobApplication",
"parameters": {}
},
"sourceId": "d7f0aee2-d6b2-45f6-9dd9-f9ec28f6a74c",
"target": "component",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "258cd8ef-f494-47ab-94a4-9f492f5688da",
"name": "onClick",
"index": 0,
"event": {
"eventId": "onClick",
"message": "Hello world!",
"queryId": "ac05658a-749b-4563-8aec-939dd3a5d2de",
"actionId": "run-query",
"alertType": "info",
"queryName": "findRowNumber",
"parameters": {}
},
"sourceId": "f84bcdf3-9c88-4aa9-8746-831c838154c4",
"target": "component",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "6165e3f8-4424-42ab-bd4e-b1761c93bfec",
"name": "onClick",
"index": 0,
"event": {
"ref": "Action0",
"url": "{{components.jobApplicationsTable.selectedRow.application_url}}",
"eventId": "onClick",
"message": "Hello world!",
"actionId": "open-webpage"
},
"sourceId": "ff2c79aa-99a7-499d-897c-c7259d2b964a",
"target": "table_action",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "a3f29301-1b6a-4e1c-ab87-785562a2300a",
"name": "onDataQuerySuccess",
"index": 3,
"event": {
"key": "dateAppliedDefaultValue",
"value": "{{\"\"}}",
"eventId": "onDataQuerySuccess",
"message": "Hello world!",
"actionId": "set-custom-variable",
"alertType": "info"
},
"sourceId": "220f6d92-98ec-4dca-a2e3-78fbe50f0df5",
"target": "data_query",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "dc746003-fe20-4bec-b5b0-c059345a1c9c",
"name": "onDataQuerySuccess",
"index": 4,
"event": {
"key": "dateAppliedDefaultValue",
"eventId": "onDataQuerySuccess",
"message": "Hello world!",
"actionId": "unset-custom-variable",
"alertType": "info",
"componentId": "78c21fc0-c787-4be2-9371-05296fa710c7",
"componentSpecificActionHandle": "clear",
"componentSpecificActionParams": []
},
"sourceId": "220f6d92-98ec-4dca-a2e3-78fbe50f0df5",
"target": "data_query",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "beba50e5-70c9-4a29-8a2c-b8dd3f01dffb",
"name": "onDataQuerySuccess",
"index": 0,
"event": {
"eventId": "onDataQuerySuccess",
"message": "Job Application deleted successfully.",
"actionId": "show-alert",
"alertType": "success"
},
"sourceId": "281453d7-4dd6-44fa-9579-0d16dec63bd5",
"target": "data_query",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "3a5008eb-5aec-41d1-a6eb-81e978c4049e",
"name": "onDataQuerySuccess",
"index": 2,
"event": {
"eventId": "onDataQuerySuccess",
"message": "Hello world!",
"queryId": "bcf106d1-18b8-468c-bbdb-9ffa2c897c9d",
"actionId": "run-query",
"alertType": "info",
"queryName": "getJobApplications",
"parameters": {}
},
"sourceId": "281453d7-4dd6-44fa-9579-0d16dec63bd5",
"target": "data_query",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "b74a25d3-18aa-49d0-a056-d32023d37d52",
"name": "onDataQueryFailure",
"index": 3,
"event": {
"eventId": "onDataQueryFailure",
"message": "Failed to delete Job Application! Please check and try again.",
"actionId": "show-alert",
"alertType": "warning"
},
"sourceId": "281453d7-4dd6-44fa-9579-0d16dec63bd5",
"target": "data_query",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "8051a065-b27f-492b-b547-2915eae5f505",
"name": "onDataQueryFailure",
"index": 4,
"event": {
"eventId": "onDataQueryFailure",
"message": "Hello world!",
"queryId": "bcf106d1-18b8-468c-bbdb-9ffa2c897c9d",
"actionId": "run-query",
"alertType": "info",
"queryName": "getJobApplications",
"parameters": {}
},
"sourceId": "281453d7-4dd6-44fa-9579-0d16dec63bd5",
"target": "data_query",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "44f7eedf-7473-4ac1-8ff4-e71def01fb24",
"name": "onDataQuerySuccess",
"index": 0,
"event": {
"eventId": "onDataQuerySuccess",
"message": "Hello world!",
"queryId": "e74bb964-4f78-422b-a0ae-faeb9755b964",
"actionId": "run-query",
"alertType": "info",
"queryName": "createJobApplication",
"parameters": {}
},
"sourceId": "b480d882-f3f6-48d4-8ee9-b01332e1d9ef",
"target": "data_query",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "98e5b08d-7c03-4424-98ba-baf05f7ceaa0",
"name": "onDataQuerySuccess",
"index": 0,
"event": {
"eventId": "onDataQuerySuccess",
"message": "Job Application created successfully.",
"actionId": "show-alert",
"alertType": "success"
},
"sourceId": "e74bb964-4f78-422b-a0ae-faeb9755b964",
"target": "data_query",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "855ca6c3-ce89-418e-9aef-5486b4973865",
"name": "onDataQuerySuccess",
"index": 1,
"event": {
"eventId": "onDataQuerySuccess",
"message": "Hello world!",
"queryId": "220f6d92-98ec-4dca-a2e3-78fbe50f0df5",
"actionId": "run-query",
"alertType": "info",
"queryName": "resetForm",
"parameters": {}
},
"sourceId": "e74bb964-4f78-422b-a0ae-faeb9755b964",
"target": "data_query",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "888360f5-67b8-4110-aa11-ce30e58f2b90",
"name": "onDataQuerySuccess",
"index": 2,
"event": {
"eventId": "onDataQuerySuccess",
"message": "Hello world!",
"queryId": "bcf106d1-18b8-468c-bbdb-9ffa2c897c9d",
"actionId": "run-query",
"alertType": "info",
"queryName": "getJobApplications",
"parameters": {}
},
"sourceId": "e74bb964-4f78-422b-a0ae-faeb9755b964",
"target": "data_query",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "d4f34a2f-6d7e-4197-a41f-2ab0615eee67",
"name": "onDataQueryFailure",
"index": 3,
"event": {
"eventId": "onDataQueryFailure",
"message": "Failed to create Job Application! Please check and try again.",
"actionId": "show-alert",
"alertType": "warning"
},
"sourceId": "e74bb964-4f78-422b-a0ae-faeb9755b964",
"target": "data_query",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "50371cd2-bad3-467a-955c-9b3fc3763691",
"name": "onDataQueryFailure",
"index": 4,
"event": {
"eventId": "onDataQueryFailure",
"message": "Hello world!",
"queryId": "bcf106d1-18b8-468c-bbdb-9ffa2c897c9d",
"actionId": "run-query",
"alertType": "info",
"queryName": "getJobApplications",
"parameters": {}
},
"sourceId": "e74bb964-4f78-422b-a0ae-faeb9755b964",
"target": "data_query",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "8e1b4e39-9e4e-4c31-826f-dce790f86cda",
"name": "onDataQuerySuccess",
"index": 0,
"event": {
"eventId": "onDataQuerySuccess",
"message": "Job Application updated successfully.",
"actionId": "show-alert",
"alertType": "success"
},
"sourceId": "dced4670-881c-475b-856c-5a854f56f158",
"target": "data_query",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "9a1209aa-5a6a-4b2c-ae3c-0645f9b98ba3",
"name": "onDataQuerySuccess",
"index": 2,
"event": {
"eventId": "onDataQuerySuccess",
"message": "Hello world!",
"queryId": "bcf106d1-18b8-468c-bbdb-9ffa2c897c9d",
"actionId": "run-query",
"alertType": "info",
"queryName": "getJobApplications",
"parameters": {}
},
"sourceId": "dced4670-881c-475b-856c-5a854f56f158",
"target": "data_query",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "d3850cd0-01aa-49c3-bbb8-ffadf0d4d35a",
"name": "onDataQueryFailure",
"index": 3,
"event": {
"eventId": "onDataQueryFailure",
"message": "Failed to update Job Application! Please check and try again.",
"actionId": "show-alert",
"alertType": "warning"
},
"sourceId": "dced4670-881c-475b-856c-5a854f56f158",
"target": "data_query",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "934d5d34-ce4b-4016-a9e3-971b02650909",
"name": "onDataQuerySuccess",
"index": 0,
"event": {
"eventId": "onDataQuerySuccess",
"message": "Hello world!",
"queryId": "281453d7-4dd6-44fa-9579-0d16dec63bd5",
"actionId": "run-query",
"alertType": "info",
"queryName": "deleteJobApplication",
"runOnlyIf": "",
"parameters": {}
},
"sourceId": "ac05658a-749b-4563-8aec-939dd3a5d2de",
"target": "data_query",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "89b9bc21-3c9e-422d-9870-8b7d2cd36694",
"name": "onDataQuerySuccess",
"index": 0,
"event": {
"eventId": "onDataQuerySuccess",
"message": "Hello world!",
"actionId": "control-component",
"alertType": "info",
"componentId": "5a35c1e4-4078-48c1-bb14-9ab90c6ff673",
"componentSpecificActionHandle": "clear",
"componentSpecificActionParams": []
},
"sourceId": "220f6d92-98ec-4dca-a2e3-78fbe50f0df5",
"target": "data_query",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "371032c9-076d-4144-bd06-dc4dd9e86110",
"name": "onDataQuerySuccess",
"index": 1,
"event": {
"eventId": "onDataQuerySuccess",
"message": "Hello world!",
"actionId": "control-component",
"alertType": "info",
"componentId": "daaeddb8-d67d-4ef6-82ec-c6ead686b432",
"componentSpecificActionHandle": "clear",
"componentSpecificActionParams": []
},
"sourceId": "220f6d92-98ec-4dca-a2e3-78fbe50f0df5",
"target": "data_query",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "637055c1-892d-49b6-a61b-c9a0c394227d",
"name": "onDataQuerySuccess",
"index": 2,
"event": {
"eventId": "onDataQuerySuccess",
"message": "Hello world!",
"actionId": "control-component",
"alertType": "info",
"componentId": "36c3a7f0-c95e-4de1-9f9a-4ea2e09d9f42",
"componentSpecificActionHandle": "clear",
"componentSpecificActionParams": []
},
"sourceId": "220f6d92-98ec-4dca-a2e3-78fbe50f0df5",
"target": "data_query",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "89f64ac3-1206-43df-ae26-a0d2e63730fa",
"name": "onDataQuerySuccess",
"index": 5,
"event": {
"eventId": "onDataQuerySuccess",
"message": "Hello world!",
"actionId": "control-component",
"alertType": "info",
"componentId": "68defd15-61c6-401e-8d39-d75410c851d9",
"componentSpecificActionHandle": "selectOption",
"componentSpecificActionParams": [
{
"value": "{{}}",
"handle": "select",
"displayName": "Select"
}
]
},
"sourceId": "220f6d92-98ec-4dca-a2e3-78fbe50f0df5",
"target": "data_query",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "7c259577-4762-40cd-9b78-3d70d4defb35",
"name": "onDataQuerySuccess",
"index": 1,
"event": {
"eventId": "onDataQuerySuccess",
"message": "Hello world!",
"actionId": "control-component",
"alertType": "info",
"componentId": "5c90f41e-f1cd-4725-bc6c-8f8a32b2cdfd",
"componentSpecificActionHandle": "selectOption",
"componentSpecificActionParams": [
{
"value": "{{}}",
"handle": "select",
"displayName": "Select"
}
]
},
"sourceId": "281453d7-4dd6-44fa-9579-0d16dec63bd5",
"target": "data_query",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "62950897-5378-44d6-8595-f69e9b01601b",
"name": "onDataQuerySuccess",
"index": 1,
"event": {
"eventId": "onDataQuerySuccess",
"message": "Hello world!",
"actionId": "control-component",
"alertType": "info",
"componentId": "5c90f41e-f1cd-4725-bc6c-8f8a32b2cdfd",
"componentSpecificActionHandle": "selectOption",
"componentSpecificActionParams": [
{
"value": "{{}}",
"handle": "select",
"displayName": "Select"
}
]
},
"sourceId": "dced4670-881c-475b-856c-5a854f56f158",
"target": "data_query",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2023-12-24T03:36:08.870Z"
},
{
"id": "bb6f81ac-2344-4189-b21c-5eb0b2f59133",
"name": "onDataQuerySuccess",
"index": 0,
"event": {
"eventId": "onDataQuerySuccess",
"message": "Hello world!",
"queryId": "bcf106d1-18b8-468c-bbdb-9ffa2c897c9d",
"actionId": "run-query",
"alertType": "info",
"queryName": "getJobApplications",
"runOnlyIf": "{{(queries?.Readme?.data?.spreadsheetId ?? \"<spreadsheet_id>\") != \"<spreadsheet_id>\"}}",
"parameters": {}
},
"sourceId": "cf263820-fd35-4236-9e19-dad862f83a35",
"target": "data_query",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2024-01-04T23:30:32.512Z"
},
{
"id": "7f4994fe-9283-4df1-9461-8d2931c0a05f",
"name": "onClick",
"index": 0,
"event": {
"url": "{{`https://docs.google.com/spreadsheets/d/${queries.Readme.data.spreadsheetId}`}}",
"eventId": "onClick",
"message": "Hello world!",
"actionId": "open-webpage",
"alertType": "info",
"runOnlyIf": "{{(queries?.Readme?.data?.spreadsheetId ?? \"<spreadsheet_id>\") != \"<spreadsheet_id>\"}}"
},
"sourceId": "5c9365d6-3cab-4579-9116-70d48ac128e0",
"target": "component",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-12-24T03:36:08.870Z",
"updatedAt": "2024-01-04T23:31:11.404Z"
},
{
"id": "c4d9cbb2-a261-4fbf-ba12-4104badf6341",
"name": "onDataQuerySuccess",
"index": 1,
"event": {
"eventId": "onDataQuerySuccess",
"message": "Please enter your Spreadsheet ID in the specified field in the Readme query.",
"actionId": "show-alert",
"alertType": "warning",
"runOnlyIf": "{{(queries?.Readme?.data?.spreadsheetId ?? \"<spreadsheet_id>\") == \"<spreadsheet_id>\"}}"
},
"sourceId": "cf263820-fd35-4236-9e19-dad862f83a35",
"target": "data_query",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2024-01-02T19:07:21.085Z",
"updatedAt": "2024-01-04T23:31:00.826Z"
}
],
"dataQueries": [
{
"id": "220f6d92-98ec-4dca-a2e3-78fbe50f0df5",
"name": "resetForm",
"options": {
"code": "message = \"Run this query to reset the Application Creation form\";\nreturn { message };",
"hasParamSupport": true,
"parameters": [],
"events": [
{
"eventId": "onDataQuerySuccess",
"actionId": "control-component",
"message": "Hello world!",
"alertType": "info",
"componentSpecificActionHandle": "clear",
"componentId": "78c21fc0-c787-4be2-9371-05296fa710c7",
"componentSpecificActionParams": []
},
{
"eventId": "onDataQuerySuccess",
"actionId": "control-component",
"message": "Hello world!",
"alertType": "info",
"componentSpecificActionHandle": "clear",
"componentId": "d0e320b2-d94c-4515-86db-d234d336c0e6",
"componentSpecificActionParams": []
},
{
"eventId": "onDataQuerySuccess",
"actionId": "control-component",
"message": "Hello world!",
"alertType": "info",
"componentSpecificActionHandle": "clear",
"componentId": "b56919d0-f507-4224-9649-d71115bcdd93",
"componentSpecificActionParams": []
},
{
"eventId": "onDataQuerySuccess",
"actionId": "set-custom-variable",
"message": "Hello world!",
"alertType": "info",
"key": "dateAppliedDefaultValue",
"value": "{{\"\"}}"
},
{
"eventId": "onDataQuerySuccess",
"actionId": "unset-custom-variable",
"message": "Hello world!",
"alertType": "info",
"key": "dateAppliedDefaultValue",
"componentSpecificActionHandle": "clear",
"componentId": "78c21fc0-c787-4be2-9371-05296fa710c7",
"componentSpecificActionParams": []
},
{
"eventId": "onDataQuerySuccess",
"actionId": "control-component",
"message": "Hello world!",
"alertType": "info",
"componentSpecificActionHandle": "selectOption",
"componentId": "bf63db8a-9a3f-40c1-af7f-28ca4430567a",
"componentSpecificActionParams": [
{
"handle": "select",
"displayName": "Select",
"value": "{{}}"
}
]
}
]
},
"dataSourceId": "a5ebca44-f652-4c1d-a2ce-873f9ac9ab1f",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-12-16T21:09:06.831Z"
},
{
"id": "281453d7-4dd6-44fa-9579-0d16dec63bd5",
"name": "deleteJobApplication",
"options": {
"operation": "delete_row",
"transformationLanguage": "javascript",
"enableTransformation": false,
"spreadsheet_id": "{{queries.Readme.data.spreadsheetId}}",
"where_field": "id",
"where_operation": "===",
"where_value": "{{components.rowId.value}}",
"body": "{{[{id: \"\", company: \"\", position: \"\", application_url: \"\", date_applied: \"\", status: \"\"}]}}",
"events": [
{
"eventId": "onDataQuerySuccess",
"actionId": "show-alert",
"message": "Job Application deleted successfully.",
"alertType": "success"
},
{
"eventId": "onDataQuerySuccess",
"actionId": "control-component",
"message": "Hello world!",
"alertType": "info",
"componentSpecificActionHandle": "selectOption",
"componentId": "ba610224-4e14-4cfa-bfe9-6f4d84d44887",
"componentSpecificActionParams": [
{
"handle": "select",
"displayName": "Select",
"value": "{{}}"
}
]
},
{
"eventId": "onDataQuerySuccess",
"actionId": "run-query",
"message": "Hello world!",
"alertType": "info",
"queryId": "bcf106d1-18b8-468c-bbdb-9ffa2c897c9d",
"queryName": "getJobApplications",
"parameters": {}
},
{
"eventId": "onDataQueryFailure",
"actionId": "show-alert",
"message": "Failed to delete Job Application! Please check and try again.",
"alertType": "warning"
},
{
"eventId": "onDataQueryFailure",
"actionId": "run-query",
"message": "Hello world!",
"alertType": "info",
"queryId": "bcf106d1-18b8-468c-bbdb-9ffa2c897c9d",
"queryName": "getJobApplications",
"parameters": {}
}
],
"row_index": "{{queries.findRowNumber.data.rowNumber}}"
},
"dataSourceId": "0755313f-500d-4cec-82b6-9447991646be",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-12-16T21:08:23.534Z"
},
{
"id": "bcf106d1-18b8-468c-bbdb-9ffa2c897c9d",
"name": "getJobApplications",
"options": {
"operation": "read",
"transformationLanguage": "javascript",
"enableTransformation": false,
"spreadsheet_id": "{{queries.Readme.data.spreadsheetId}}",
"runOnPageLoad": false
},
"dataSourceId": "0755313f-500d-4cec-82b6-9447991646be",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2024-01-04T23:27:37.217Z"
},
{
"id": "b480d882-f3f6-48d4-8ee9-b01332e1d9ef",
"name": "findNewRowId",
"options": {
"operation": "read",
"transformationLanguage": "javascript",
"enableTransformation": true,
"spreadsheet_id": "{{queries.Readme.data.spreadsheetId}}",
"transformation": "var maxRowId = 0;\n\ndata.forEach((row) => {\n if (parseInt(row.id) > maxRowId) {\n maxRowId = parseInt(row.id);\n }\n});\n\nnewRowId = maxRowId + 1;\n\nreturn { newRowId };",
"events": [
{
"eventId": "onDataQuerySuccess",
"actionId": "run-query",
"message": "Hello world!",
"alertType": "info",
"queryId": "e74bb964-4f78-422b-a0ae-faeb9755b964",
"queryName": "createJobApplication",
"parameters": {}
}
]
},
"dataSourceId": "0755313f-500d-4cec-82b6-9447991646be",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-12-26T14:40:49.079Z"
},
{
"id": "dced4670-881c-475b-856c-5a854f56f158",
"name": "updateJobApplication",
"options": {
"operation": "update",
"transformationLanguage": "javascript",
"enableTransformation": false,
"spreadsheet_id": "{{queries.Readme.data.spreadsheetId}}",
"where_field": "id",
"where_operation": "===",
"where_value": "{{components.applicationId.value}}",
"body": "{{({company: components.companyName.value, position: components.position.value, application_url: components.applicationUrl.value, date_applied: components.dateApplied.value, status: components.status.value})}}",
"events": [
{
"eventId": "onDataQuerySuccess",
"actionId": "show-alert",
"message": "Job Application updated successfully.",
"alertType": "success"
},
{
"eventId": "onDataQuerySuccess",
"actionId": "control-component",
"message": "Hello world!",
"alertType": "info",
"componentSpecificActionHandle": "selectOption",
"componentId": "ba610224-4e14-4cfa-bfe9-6f4d84d44887",
"componentSpecificActionParams": [
{
"handle": "select",
"displayName": "Select",
"value": "{{}}"
}
]
},
{
"eventId": "onDataQuerySuccess",
"actionId": "run-query",
"message": "Hello world!",
"alertType": "info",
"queryId": "bcf106d1-18b8-468c-bbdb-9ffa2c897c9d",
"queryName": "getJobApplications",
"parameters": {}
},
{
"eventId": "onDataQueryFailure",
"actionId": "show-alert",
"message": "Failed to update Job Application! Please check and try again.",
"alertType": "warning"
}
],
"spreadsheet_range": ""
},
"dataSourceId": "0755313f-500d-4cec-82b6-9447991646be",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-12-26T14:41:13.506Z"
},
{
"id": "e74bb964-4f78-422b-a0ae-faeb9755b964",
"name": "createJobApplication",
"options": {
"operation": "append",
"transformationLanguage": "javascript",
"enableTransformation": false,
"spreadsheet_id": "{{queries.Readme.data.spreadsheetId}}",
"rows": "{{[{id: queries.findNewRowId.data.newRowId, company: components.companyName.value, position: components.position.value, application_url: components.applicationUrl.value, date_applied: components.dateApplied.value, status: components.status.value}]}}",
"events": [
{
"eventId": "onDataQuerySuccess",
"actionId": "show-alert",
"message": "Job Application created successfully.",
"alertType": "success"
},
{
"eventId": "onDataQuerySuccess",
"actionId": "run-query",
"message": "Hello world!",
"alertType": "info",
"queryId": "220f6d92-98ec-4dca-a2e3-78fbe50f0df5",
"queryName": "resetForm",
"parameters": {}
},
{
"eventId": "onDataQuerySuccess",
"actionId": "run-query",
"message": "Hello world!",
"alertType": "info",
"queryId": "bcf106d1-18b8-468c-bbdb-9ffa2c897c9d",
"queryName": "getJobApplications",
"parameters": {}
},
{
"eventId": "onDataQueryFailure",
"actionId": "show-alert",
"message": "Failed to create Job Application! Please check and try again.",
"alertType": "warning"
},
{
"eventId": "onDataQueryFailure",
"actionId": "run-query",
"message": "Hello world!",
"alertType": "info",
"queryId": "bcf106d1-18b8-468c-bbdb-9ffa2c897c9d",
"queryName": "getJobApplications",
"parameters": {}
}
]
},
"dataSourceId": "0755313f-500d-4cec-82b6-9447991646be",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-12-26T14:40:50.303Z"
},
{
"id": "ac05658a-749b-4563-8aec-939dd3a5d2de",
"name": "findRowNumber",
"options": {
"operation": "read",
"transformationLanguage": "javascript",
"enableTransformation": true,
"spreadsheet_id": "{{queries.Readme.data.spreadsheetId}}",
"transformation": "var rowNumber = -1;\n\nfor (var i = 0; i < data.length; i += 1) {\n if(data[i].id == components.applicationId.value) {\n rowNumber = i + 2;\n break;\n }\n}\n\nreturn {rowNumber};",
"events": [
{
"eventId": "onDataQuerySuccess",
"actionId": "run-query",
"message": "Hello world!",
"alertType": "info",
"runOnlyIf": "",
"queryId": "281453d7-4dd6-44fa-9579-0d16dec63bd5",
"queryName": "deleteJobApplication",
"parameters": {}
}
]
},
"dataSourceId": "0755313f-500d-4cec-82b6-9447991646be",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-12-16T21:05:36.725Z"
},
{
"id": "cf263820-fd35-4236-9e19-dad862f83a35",
"name": "Readme",
"options": {
"code": "// Welcome!\n// Organize all your job applications in one place.\n// Add, update or delete applications from the Modify Application section.\n\n// Before using this application, please create a Google Sheet with the following columns (case-sensitive):\n// 1. id\n// 2. company\n// 3. position\n// 4. date_applied\n// 5. status\n// 6. application_url\n\n// Once youve created the sheet, paste the Spreadsheet ID in place of the placeholder below.\n// If the URL looks similar to this: \"https://docs.google.com/spreadsheets/d/XxXxXxXxXxXxXxXxXxXxXxXxXxXxXxXxXxXxXxXxXxXx/...\".\n// Then the Spreadsheet ID is \"XxXxXxXxXxXxXxXxXxXxXxXxXxXxXxXxXxXxXxXxXxXx\".\n// Paste the Spreadsheet ID in place of <spreadsheet_id> placeholder.\nconst spreadsheetId = \"<spreadsheet_id>\";\n\nreturn {spreadsheetId}",
"hasParamSupport": true,
"parameters": [],
"runOnPageLoad": true,
"events": [
{
"eventId": "onDataQuerySuccess",
"actionId": "run-query",
"message": "Hello world!",
"alertType": "info",
"queryId": "bcf106d1-18b8-468c-bbdb-9ffa2c897c9d",
"queryName": "getJobApplications",
"parameters": {}
}
]
},
"dataSourceId": "a5ebca44-f652-4c1d-a2ce-873f9ac9ab1f",
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2024-01-04T23:28:47.347Z"
}
],
"dataSources": [
{
"id": "9cc9611b-9358-4c3c-8b5a-db88fb6b602a",
"name": "restapidefault",
"kind": "restapi",
"type": "static",
"pluginId": null,
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"organizationId": null,
"scope": "local",
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-11-01T02:09:26.360Z"
},
{
"id": "a5ebca44-f652-4c1d-a2ce-873f9ac9ab1f",
"name": "runjsdefault",
"kind": "runjs",
"type": "static",
"pluginId": null,
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"organizationId": null,
"scope": "local",
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-11-01T02:09:26.360Z"
},
{
"id": "e581d326-956b-47e5-9924-c1da36693455",
"name": "runpydefault",
"kind": "runpy",
"type": "static",
"pluginId": null,
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"organizationId": null,
"scope": "local",
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-11-01T02:09:26.360Z"
},
{
"id": "194891f1-624b-408d-918e-a29a2ea3fb4e",
"name": "tooljetdbdefault",
"kind": "tooljetdb",
"type": "static",
"pluginId": null,
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"organizationId": null,
"scope": "local",
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-11-01T02:09:26.360Z"
},
{
"id": "c48887ff-7174-478e-88db-414d93614553",
"name": "workflowsdefault",
"kind": "workflows",
"type": "static",
"pluginId": null,
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"organizationId": null,
"scope": "local",
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-11-01T02:09:26.360Z"
},
{
"id": "0755313f-500d-4cec-82b6-9447991646be",
"name": "Job application tracker",
"kind": "googlesheets",
"type": "default",
"pluginId": null,
"appVersionId": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"organizationId": null,
"scope": "local",
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-11-01T02:09:26.360Z"
}
],
"appVersions": [
{
"id": "a56899d0-25d6-4f60-862d-cf613ee7fcb0",
"name": "v1",
"definition": {
"showViewerNavigation": false,
"homePageId": "ba407046-8b65-4aa5-b5f7-5e1a56882a83",
"pages": {
"ba407046-8b65-4aa5-b5f7-5e1a56882a83": {
"components": {
"61d34e16-bb4c-44af-b40b-f7d56314fa9f": {
"id": "61d34e16-bb4c-44af-b40b-f7d56314fa9f",
"component": {
"name": "container1",
"displayName": "Container",
"description": "Wrapper for multiple components",
"defaultSize": {
"width": 5,
"height": 200
},
"component": "Container",
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"properties": {},
"events": {},
"styles": {
"backgroundColor": {
"type": "color"
},
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
}
},
"exposedVariables": {},
"definition": {
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"properties": {
"visible": {
"value": true
}
},
"events": [],
"styles": {
"backgroundColor": {
"value": "#fff"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"borderRadius": {
"value": "10"
}
}
}
},
"layouts": {
"desktop": {
"top": 110,
"left": 2.3255776029993487,
"width": 32,
"height": 710
}
}
},
"e4053fab-b43d-4ba2-9e55-812023189d92": {
"id": "e4053fab-b43d-4ba2-9e55-812023189d92",
"component": {
"name": "jobApplicationsTable",
"displayName": "Table",
"description": "Display paginated tabular data",
"component": "Table",
"properties": {
"title": {
"type": "string",
"displayName": "Title"
},
"data": {
"type": "code",
"displayName": "Table data"
},
"loadingState": {
"type": "code",
"displayName": "Loading state"
},
"columns": {
"type": "array",
"displayName": "Table Columns"
},
"serverSidePagination": {
"type": "toggle",
"displayName": "Server-side pagination"
},
"clientSidePagination": {
"type": "toggle",
"displayName": "Client-side pagination"
},
"serverSideSearch": {
"type": "toggle",
"displayName": "Server-side search"
},
"actionButtonBackgroundColor": {
"type": "color",
"displayName": "Background color"
},
"actionButtonTextColor": {
"type": "color",
"displayName": "Text color"
},
"displaySearchBox": {
"type": "toggle",
"displayName": "Show search box"
},
"showDownloadButton": {
"type": "toggle",
"displayName": "Show download button"
},
"showFilterButton": {
"type": "toggle",
"displayName": "Show filter button"
},
"showBulkUpdateActions": {
"type": "toggle",
"displayName": "Show bulk update actions"
},
"showBulkSelector": {
"type": "toggle",
"displayName": "Bulk selection"
},
"highlightSelectedRow": {
"type": "toggle",
"displayName": "Highlight selected row"
}
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop "
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"defaultSize": {
"width": 20,
"height": 300
},
"events": {
"onRowClicked": {
"displayName": "Row clicked"
},
"onBulkUpdate": {
"displayName": "Bulk update"
},
"onPageChanged": {
"displayName": "Page changed"
},
"onSearch": {
"displayName": "Search"
}
},
"styles": {
"textColor": {
"type": "color",
"displayName": "Text Color"
},
"tableType": {
"type": "select",
"displayName": "Table type",
"options": [
{
"name": "Bordered",
"value": ""
},
{
"name": "Borderless",
"value": "table-borderless"
},
{
"name": "Classic",
"value": "table-classic"
},
{
"name": "Striped",
"value": "table-striped"
},
{
"name": "Striped & bordered",
"value": "table-striped table-bordered"
}
]
},
"cellSize": {
"type": "select",
"displayName": "Cell size",
"options": [
{
"name": "Compact",
"value": "compact"
},
{
"name": "Spacious",
"value": "spacious"
}
]
},
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
}
},
"exposedVariables": {
"selectedRow": {},
"changeSet": {},
"dataUpdates": [],
"pageIndex": 0,
"searchText": "",
"selectedRows": []
},
"definition": {
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"properties": {
"title": {
"value": "Table"
},
"visible": {
"value": true
},
"loadingState": {
"value": "{{queries.getJobApplications.isLoading}}",
"fxActive": true
},
"data": {
"value": "{{queries.getJobApplications.data}}"
},
"serverSidePagination": {
"value": false
},
"clientSidePagination": {
"value": false
},
"displaySearchBox": {
"value": true
},
"showDownloadButton": {
"value": true
},
"showFilterButton": {
"value": true
},
"columns": {
"value": [
{
"name": "id",
"id": "35f092ef-2eba-4504-ba01-72546b5b9f1d",
"columnType": "string"
},
{
"name": "Company",
"id": "e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737",
"key": "company",
"columnType": "string"
},
{
"name": "Position",
"id": "5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a",
"key": "position",
"columnType": "string"
},
{
"name": "Date Applied",
"id": "1f7e4a2a-8763-4cf0-bf40-f2a704d0e327",
"key": "date_applied",
"columnType": "string"
},
{
"name": "Status",
"id": "afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f",
"key": "status",
"columnType": "string"
}
]
},
"showBulkUpdateActions": {
"value": "{{false}}"
},
"showBulkSelector": {
"value": false
},
"highlightSelectedRow": {
"value": false
},
"columnSizes": {
"value": {
"35f092ef-2eba-4504-ba01-72546b5b9f1d": 92,
"e3ecbf7fa52c4d7210a93edb8f43776267a489bad52bd108be9588f790126737": 264,
"5d2a3744a006388aadd012fcc15cc0dbcb5f9130e0fbb64c558561c97118754a": 242,
"1f7e4a2a-8763-4cf0-bf40-f2a704d0e327": 174,
"afc9a5091750a1bd4760e38760de3b4be11a43452ae8ae07ce2eebc569fe9a7f": 64
}
},
"actions": {
"value": [
{
"name": "Action0",
"buttonText": "Open Application",
"events": [
{
"eventId": "onClick",
"actionId": "open-webpage",
"message": "Hello world!",
"url": "{{components.jobApplicationsTable.selectedRow.application_url}}"
}
],
"position": "right",
"backgroundColor": "#375fcfff",
"textColor": "#ffffffff"
}
]
},
"showAddNewRowButton": {
"value": "{{false}}"
},
"hideColumnSelectorButton": {
"fxActive": false,
"value": "{{false}}"
}
},
"events": [],
"styles": {
"textColor": {},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"cellSize": {
"value": "regular"
},
"borderRadius": {
"value": "10"
},
"tableType": {
"value": "table-bordered"
},
"actionButtonRadius": {
"value": "5"
}
}
}
},
"layouts": {
"desktop": {
"top": 60,
"left": 2.32558300567024,
"width": 41.00000000000001,
"height": 620
}
},
"parent": "61d34e16-bb4c-44af-b40b-f7d56314fa9f"
},
"8fe0d926-6072-4eec-8258-98922f75b3dc": {
"id": "8fe0d926-6072-4eec-8258-98922f75b3dc",
"component": {
"name": "jobApplicationsLabel",
"displayName": "Text",
"description": "Display markdown or HTML",
"component": "Text",
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"properties": {
"text": {
"type": "code",
"displayName": "Text"
},
"loadingState": {
"type": "code",
"displayName": "Show loading state"
}
},
"defaultSize": {
"width": 3,
"height": 30
},
"events": [],
"styles": {
"textColor": {
"type": "color",
"displayName": "Text Color"
},
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
}
},
"exposedVariables": {},
"definition": {
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"properties": {
"text": {
"value": "Job Applications"
},
"visible": {
"value": true
},
"loadingState": {
"value": "{{false}}"
}
},
"events": [],
"styles": {
"textColor": {
"value": "#000"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"textAlign": {
"value": "left"
},
"fontVariant": {
"value": "normal"
},
"fontWeight": {
"value": "bold"
},
"textSize": {
"value": "{{16}}"
}
}
}
},
"layouts": {
"desktop": {
"top": 20,
"left": 2.325581063448678,
"width": 10,
"height": 30
}
},
"parent": "61d34e16-bb4c-44af-b40b-f7d56314fa9f"
},
"5e347f5b-8e2b-45f0-8291-80bccd68184d": {
"id": "5e347f5b-8e2b-45f0-8291-80bccd68184d",
"component": {
"name": "container2",
"displayName": "Container",
"description": "Wrapper for multiple components",
"defaultSize": {
"width": 5,
"height": 200
},
"component": "Container",
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"properties": {},
"events": {},
"styles": {
"backgroundColor": {
"type": "color"
},
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
}
},
"exposedVariables": {},
"definition": {
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"properties": {
"visible": {
"value": true
}
},
"events": [],
"styles": {
"backgroundColor": {
"value": "#fff"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{queries.findNewRowId.isLoading || queries.createJobApplication.isLoading || queries.resetForm.isLoading || queries.findRowNumber.isLoading || queries.updateJobApplication.isLoading || queries.deleteJobApplication.isLoading || queries.getJobApplications.isLoading}}",
"fxActive": true
},
"borderRadius": {
"value": "10"
}
}
}
},
"layouts": {
"desktop": {
"top": 110,
"left": 79.06979007344586,
"width": 8,
"height": 710
}
}
},
"78c21fc0-c787-4be2-9371-05296fa710c7": {
"id": "78c21fc0-c787-4be2-9371-05296fa710c7",
"component": {
"name": "companyName",
"displayName": "Text Input",
"description": "Text field for forms",
"component": "TextInput",
"defaultSize": {
"width": 4,
"height": 30
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"properties": {
"value": {
"type": "code",
"displayName": "Default value"
},
"placeholder": {
"type": "code",
"displayName": "Placeholder"
}
},
"validation": {
"regex": {
"type": "code",
"displayName": "Regex"
},
"minLength": {
"type": "code",
"displayName": "Min length"
},
"maxLength": {
"type": "code",
"displayName": "Max length"
},
"customRule": {
"type": "code",
"displayName": "Custom validation"
}
},
"events": {},
"styles": {
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
}
},
"exposedVariables": {
"value": ""
},
"definition": {
"validation": {
"regex": {
"value": ""
},
"minLength": {
"value": null
},
"maxLength": {
"value": null
},
"customRule": {
"value": null
}
},
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"properties": {
"value": {
"value": "{{components.jobApplicationsTable.selectedRow.company ?? \"\"}}"
},
"placeholder": {
"value": "Company Name"
}
},
"events": [],
"styles": {
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"borderRadius": {
"value": "5"
}
}
}
},
"layouts": {
"desktop": {
"top": 100,
"left": 6.976836364904775,
"width": 37,
"height": 40
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"d0e320b2-d94c-4515-86db-d234d336c0e6": {
"id": "d0e320b2-d94c-4515-86db-d234d336c0e6",
"component": {
"name": "position",
"displayName": "Text Input",
"description": "Text field for forms",
"component": "TextInput",
"defaultSize": {
"width": 4,
"height": 30
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"properties": {
"value": {
"type": "code",
"displayName": "Default value"
},
"placeholder": {
"type": "code",
"displayName": "Placeholder"
}
},
"validation": {
"regex": {
"type": "code",
"displayName": "Regex"
},
"minLength": {
"type": "code",
"displayName": "Min length"
},
"maxLength": {
"type": "code",
"displayName": "Max length"
},
"customRule": {
"type": "code",
"displayName": "Custom validation"
}
},
"events": {},
"styles": {
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
}
},
"exposedVariables": {
"value": ""
},
"definition": {
"validation": {
"regex": {
"value": ""
},
"minLength": {
"value": null
},
"maxLength": {
"value": null
},
"customRule": {
"value": null
}
},
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"properties": {
"value": {
"value": "{{components.jobApplicationsTable.selectedRow.position ?? \"\"}}"
},
"placeholder": {
"value": "Position"
}
},
"events": [],
"styles": {
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
}
}
},
"layouts": {
"desktop": {
"top": 180,
"left": 6.976740345106116,
"width": 37,
"height": 40
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"bf63db8a-9a3f-40c1-af7f-28ca4430567a": {
"id": "bf63db8a-9a3f-40c1-af7f-28ca4430567a",
"component": {
"name": "status",
"displayName": "Dropdown",
"description": "Select one value from options",
"defaultSize": {
"width": 8,
"height": 30
},
"component": "DropDown",
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"validation": {
"customRule": {
"type": "code",
"displayName": "Custom validation"
}
},
"properties": {
"label": {
"type": "code",
"displayName": "Label"
},
"value": {
"type": "code",
"displayName": "Default value"
},
"values": {
"type": "code",
"displayName": "Option values"
},
"display_values": {
"type": "code",
"displayName": "Option labels"
}
},
"events": {
"onSelect": {
"displayName": "On select"
}
},
"styles": {
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
}
},
"exposedVariables": {
"value": null
},
"definition": {
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"validation": {
"customRule": {
"value": null
}
},
"properties": {
"label": {
"value": ""
},
"value": {
"value": "{{components.jobApplicationsTable.selectedRow.status ?? undefined}}"
},
"values": {
"value": "{{[\n \"Wishlisted\",\n \"Applied\",\n \"Interview Scheduled\",\n \"Interviewed\",\n \"Shortlisted\",\n \"Offered\",\n \"Rejected\",\n]}}"
},
"display_values": {
"value": "{{[\n \"Wishlisted\",\n \"Applied\",\n \"Interview Scheduled\",\n \"Interviewed\",\n \"Shortlisted\",\n \"Offered\",\n \"Rejected\",\n]}}"
},
"visible": {
"value": true
},
"advanced": {
"value": "{{false}}"
},
"placeholder": {
"value": "Select Status..."
}
},
"events": [],
"styles": {
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"borderRadius": {
"value": "5"
}
}
}
},
"layouts": {
"desktop": {
"top": 420,
"left": 6.976685249214419,
"width": 37,
"height": 40
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"02e4acec-eb7e-4dbe-ad52-f5ed14555021": {
"id": "02e4acec-eb7e-4dbe-ad52-f5ed14555021",
"component": {
"name": "text4",
"displayName": "Text",
"description": "Display markdown or HTML",
"component": "Text",
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"properties": {
"text": {
"type": "code",
"displayName": "Text"
},
"loadingState": {
"type": "code",
"displayName": "Show loading state"
}
},
"defaultSize": {
"width": 3,
"height": 30
},
"events": [],
"styles": {
"textColor": {
"type": "color",
"displayName": "Text Color"
},
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
}
},
"exposedVariables": {},
"definition": {
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"properties": {
"text": {
"value": "Create/Modify Applications"
},
"visible": {
"value": true
},
"loadingState": {
"value": "{{false}}"
}
},
"events": [],
"styles": {
"textColor": {
"value": "#000"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"fontWeight": {
"value": "bold"
},
"fontVariant": {
"value": "normal"
},
"textSize": {
"value": "{{16}}"
}
}
}
},
"layouts": {
"desktop": {
"top": 20,
"left": 6.976746436211469,
"width": 36.99999999999999,
"height": 30
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"e89102ff-d368-465a-8818-6f0c33c448bc": {
"id": "e89102ff-d368-465a-8818-6f0c33c448bc",
"component": {
"name": "createButton",
"displayName": "Button",
"description": "Trigger actions: queries, alerts etc",
"component": "Button",
"defaultSize": {
"width": 3,
"height": 30
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"properties": {
"text": {
"type": "code",
"displayName": "Button Text"
},
"loadingState": {
"type": "code",
"displayName": "Loading State"
}
},
"events": {
"onClick": {
"displayName": "On click"
}
},
"styles": {
"backgroundColor": {
"type": "color",
"displayName": "Background color"
},
"textColor": {
"type": "color",
"displayName": "Text color"
},
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
},
"borderRadius": {
"type": "code",
"displayName": "Border radius"
}
},
"exposedVariables": {},
"definition": {
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"properties": {
"text": {
"value": "Create"
},
"visible": {
"value": true
},
"loadingState": {
"value": "{{queries.findNewRowId.isLoading || queries.createJobApplication.isLoading}}",
"fxActive": true
}
},
"events": [
{
"eventId": "onClick",
"actionId": "run-query",
"message": "Hello world!",
"queryName": "findNewRowId",
"queryId": "b480d882-f3f6-48d4-8ee9-b01332e1d9ef",
"parameters": {}
}
],
"styles": {
"backgroundColor": {
"value": "#2b8a69"
},
"textColor": {
"value": "#fff"
},
"visibility": {
"value": "{{true}}"
},
"borderRadius": {
"value": "{{5}}"
},
"disabledState": {
"value": "{{components.companyName.value == \"\" || components.position.value == \"\" || !components.applicationUrl.isValid || components.applicationUrl.value == \"\" || components.dateApplied.value == undefined || components.status.value == undefined}}",
"fxActive": true
}
}
}
},
"layouts": {
"desktop": {
"top": 480,
"left": 6.9768320425397405,
"width": 37,
"height": 40
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"e289bb27-08e1-4da1-9107-0c9864480dc6": {
"id": "e289bb27-08e1-4da1-9107-0c9864480dc6",
"component": {
"name": "dateApplied",
"displayName": "Date Picker",
"description": "Select a date and time",
"component": "Datepicker",
"defaultSize": {
"width": 4,
"height": 30
},
"validation": {
"customRule": {
"type": "code",
"displayName": "Custom validation"
}
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"properties": {
"defaultValue": {
"type": "code",
"displayName": "Default value"
},
"format": {
"type": "code",
"displayName": "Format"
},
"enableTime": {
"type": "code",
"displayName": "Enable time selection?"
},
"enableDate": {
"type": "code",
"displayName": "Enable date selection?"
}
},
"events": {},
"styles": {
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
}
},
"exposedVariables": {
"value": ""
},
"definition": {
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"validation": {
"customRule": {
"value": null
}
},
"properties": {
"defaultValue": {
"value": "{{components.jobApplicationsTable.selectedRow.date_applied ?? variables.dateAppliedDefaultValue}}"
},
"format": {
"value": "Do MMM YYYY"
},
"enableTime": {
"value": "{{false}}"
},
"enableDate": {
"value": "{{true}}"
}
},
"events": [],
"styles": {
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"borderRadius": {
"value": "5"
}
}
}
},
"layouts": {
"desktop": {
"top": 340,
"left": 6.976953397294909,
"width": 37,
"height": 40
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"b56919d0-f507-4224-9649-d71115bcdd93": {
"id": "b56919d0-f507-4224-9649-d71115bcdd93",
"component": {
"name": "applicationUrl",
"displayName": "Text Input",
"description": "Text field for forms",
"component": "TextInput",
"defaultSize": {
"width": 4,
"height": 30
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"properties": {
"value": {
"type": "code",
"displayName": "Default value"
},
"placeholder": {
"type": "code",
"displayName": "Placeholder"
}
},
"validation": {
"regex": {
"type": "code",
"displayName": "Regex"
},
"minLength": {
"type": "code",
"displayName": "Min length"
},
"maxLength": {
"type": "code",
"displayName": "Max length"
},
"customRule": {
"type": "code",
"displayName": "Custom validation"
}
},
"events": {},
"styles": {
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
}
},
"exposedVariables": {
"value": ""
},
"definition": {
"validation": {
"regex": {
"value": ""
},
"minLength": {
"value": null
},
"maxLength": {
"value": null
},
"customRule": {
"value": "{{/^(https?:\\/\\/)?((([a-z\\d]([a-z\\d-]*[a-z\\d])*)\\.)+[a-z]{2,}|((\\d{1,3}\\.){3}\\d{1,3}))(\\:\\d+)?(\\/[-a-z\\d%_.~+]*)*(\\?[;&a-z\\d%_.~+=-]*)?(\\#[-a-z\\d_]*)?$/i.test(components.applicationUrl.value) || components.applicationUrl.value == \"\" ? true : \" \"}}"
}
},
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"properties": {
"value": {
"value": "{{components.jobApplicationsTable.selectedRow.application_url ?? \"\"}}"
},
"placeholder": {
"value": "https://docs.google.com/..."
}
},
"events": [],
"styles": {
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "{{components.applicationUrl.isValid ? \"0px 0px 0px 0px #00000040\" : \"0px 0px 0px 0px #ff000040\"}}",
"fxActive": true
}
}
}
},
"layouts": {
"desktop": {
"top": 260,
"left": 6.976711307464127,
"width": 37,
"height": 40
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"ba206b54-deea-46c1-950b-b334464c1c71": {
"id": "ba206b54-deea-46c1-950b-b334464c1c71",
"component": {
"name": "updateButton",
"displayName": "Button",
"description": "Trigger actions: queries, alerts etc",
"component": "Button",
"defaultSize": {
"width": 3,
"height": 30
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"properties": {
"text": {
"type": "code",
"displayName": "Button Text"
},
"loadingState": {
"type": "code",
"displayName": "Loading State"
}
},
"events": {
"onClick": {
"displayName": "On click"
}
},
"styles": {
"backgroundColor": {
"type": "color",
"displayName": "Background color"
},
"textColor": {
"type": "color",
"displayName": "Text color"
},
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
},
"borderRadius": {
"type": "code",
"displayName": "Border radius"
}
},
"exposedVariables": {},
"definition": {
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"properties": {
"text": {
"value": "Update"
},
"visible": {
"value": true
},
"loadingState": {
"value": "{{queries.updateJobApplication.isLoading}}",
"fxActive": true
}
},
"events": [
{
"eventId": "onClick",
"actionId": "run-query",
"message": "Hello world!",
"alertType": "info",
"queryName": "updateJobApplication",
"queryId": "dced4670-881c-475b-856c-5a854f56f158",
"parameters": {}
}
],
"styles": {
"backgroundColor": {
"value": "#0e3e77"
},
"textColor": {
"value": "#fff"
},
"visibility": {
"value": "{{true}}"
},
"borderRadius": {
"value": "{{5}}"
},
"disabledState": {
"value": "{{components.applicationId.value == undefined || components.companyName.value == \"\" || components.position.value == \"\" || components.applicationUrl.value == \"\" || components.dateApplied.value == undefined || components.status.value == undefined}}",
"fxActive": true
}
}
}
},
"layouts": {
"desktop": {
"top": 640,
"left": 6.976680336660044,
"width": 17,
"height": 40
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"ba610224-4e14-4cfa-bfe9-6f4d84d44887": {
"id": "ba610224-4e14-4cfa-bfe9-6f4d84d44887",
"component": {
"name": "applicationId",
"displayName": "Dropdown",
"description": "Select one value from options",
"defaultSize": {
"width": 8,
"height": 30
},
"component": "DropDown",
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"validation": {
"customRule": {
"type": "code",
"displayName": "Custom validation"
}
},
"properties": {
"label": {
"type": "code",
"displayName": "Label"
},
"value": {
"type": "code",
"displayName": "Default value"
},
"values": {
"type": "code",
"displayName": "Option values"
},
"display_values": {
"type": "code",
"displayName": "Option labels"
},
"loadingState": {
"type": "code",
"displayName": "Options loading state"
}
},
"events": {
"onSelect": {
"displayName": "On select"
},
"onSearchTextChanged": {
"displayName": "On search text changed"
}
},
"styles": {
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
}
},
"exposedVariables": {
"value": null,
"searchText": ""
},
"definition": {
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"validation": {
"customRule": {
"value": null
}
},
"properties": {
"label": {
"value": ""
},
"value": {
"value": "{{components.jobApplicationsTable.selectedRow.id ?? undefined}}"
},
"values": {
"value": "{{queries.getJobApplications.data.map((row) => row.id)}}"
},
"display_values": {
"value": "{{queries.getJobApplications.data.map((row) => row.id)}}"
},
"visible": {
"value": true
},
"loadingState": {
"value": "{{queries.getJobApplications.isLoading}}",
"fxActive": true
},
"placeholder": {
"value": "Select Application ID..."
}
},
"events": [],
"styles": {
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"borderRadius": {
"value": "5"
}
}
}
},
"layouts": {
"desktop": {
"top": 580,
"left": 6.976863964638667,
"width": 37,
"height": 40
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"f6640190-9cd3-49f3-af89-942e5beea606": {
"id": "f6640190-9cd3-49f3-af89-942e5beea606",
"component": {
"name": "deleteButton",
"displayName": "Button",
"description": "Trigger actions: queries, alerts etc",
"component": "Button",
"defaultSize": {
"width": 3,
"height": 30
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"properties": {
"text": {
"type": "code",
"displayName": "Button Text"
},
"loadingState": {
"type": "code",
"displayName": "Loading State"
}
},
"events": {
"onClick": {
"displayName": "On click"
}
},
"styles": {
"backgroundColor": {
"type": "color",
"displayName": "Background color"
},
"textColor": {
"type": "color",
"displayName": "Text color"
},
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
},
"borderRadius": {
"type": "code",
"displayName": "Border radius"
}
},
"exposedVariables": {},
"definition": {
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"properties": {
"text": {
"value": "Delete"
},
"visible": {
"value": true
},
"loadingState": {
"value": "{{queries.findRowNumber.isLoading || queries.deleteJobApplication.isLoading}}",
"fxActive": true
}
},
"events": [
{
"eventId": "onClick",
"actionId": "run-query",
"message": "Hello world!",
"alertType": "info",
"queryName": "findRowNumber",
"queryId": "ac05658a-749b-4563-8aec-939dd3a5d2de",
"parameters": {}
}
],
"styles": {
"backgroundColor": {
"value": "#d0021b"
},
"textColor": {
"value": "#fff"
},
"visibility": {
"value": "{{true}}"
},
"borderRadius": {
"value": "{{5}}"
},
"disabledState": {
"value": "{{components.applicationId.value == undefined}}",
"fxActive": true
}
}
}
},
"layouts": {
"desktop": {
"top": 640,
"left": 52.88775649425791,
"width": 17,
"height": 40
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"3e682521-458a-41f5-bab3-aa369ce1b692": {
"id": "3e682521-458a-41f5-bab3-aa369ce1b692",
"component": {
"properties": {
"text": {
"type": "code",
"displayName": "Text",
"validation": {
"schema": {
"type": "union",
"schemas": [
{
"type": "string"
},
{
"type": "number"
}
]
}
}
},
"loadingState": {
"type": "toggle",
"displayName": "Show loading state",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"general": {
"tooltip": {
"type": "code",
"displayName": "Tooltip",
"validation": {
"schema": {
"type": "string"
}
}
}
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"events": {},
"styles": {
"fontWeight": {
"type": "select",
"displayName": "Font Weight",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "bold",
"value": "bold"
},
{
"name": "lighter",
"value": "lighter"
},
{
"name": "bolder",
"value": "bolder"
}
]
},
"decoration": {
"type": "select",
"displayName": "Text Decoration",
"options": [
{
"name": "none",
"value": "none"
},
{
"name": "overline",
"value": "overline"
},
{
"name": "line-through",
"value": "line-through"
},
{
"name": "underline",
"value": "underline"
},
{
"name": "overline underline",
"value": "overline underline"
}
]
},
"transformation": {
"type": "select",
"displayName": "Text Transformation",
"options": [
{
"name": "none",
"value": "none"
},
{
"name": "uppercase",
"value": "uppercase"
},
{
"name": "lowercase",
"value": "lowercase"
},
{
"name": "capitalize",
"value": "capitalize"
}
]
},
"fontStyle": {
"type": "select",
"displayName": "Font Style",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "italic",
"value": "italic"
},
{
"name": "oblique",
"value": "oblique"
}
]
},
"lineHeight": {
"type": "number",
"displayName": "Line Height"
},
"textIndent": {
"type": "number",
"displayName": "Text Indent"
},
"letterSpacing": {
"type": "number",
"displayName": "Letter Spacing"
},
"wordSpacing": {
"type": "number",
"displayName": "Word Spacing"
},
"fontVariant": {
"type": "select",
"displayName": "Font Variant",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "small-caps",
"value": "small-caps"
},
{
"name": "initial",
"value": "initial"
},
{
"name": "inherit",
"value": "inherit"
}
]
},
"textSize": {
"type": "number",
"displayName": "Text Size",
"validation": {
"schema": {
"type": "number"
}
}
},
"backgroundColor": {
"type": "color",
"displayName": "Background Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"textColor": {
"type": "color",
"displayName": "Text Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"textAlign": {
"type": "alignButtons",
"displayName": "Align Text",
"validation": {
"schema": {
"type": "string"
}
}
},
"visibility": {
"type": "toggle",
"displayName": "Visibility",
"validation": {
"schema": {
"type": "boolean"
}
}
},
"disabledState": {
"type": "toggle",
"displayName": "Disable",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"validate": true,
"generalStyles": {
"boxShadow": {
"type": "boxShadow",
"displayName": "Box Shadow"
}
},
"definition": {
"others": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"events": [],
"styles": {
"backgroundColor": {
"value": "#fff00000"
},
"textColor": {
"value": "#000000"
},
"textSize": {
"value": "{{14}}"
},
"textAlign": {
"value": "left"
},
"fontWeight": {
"value": "bold"
},
"decoration": {
"value": "none"
},
"transformation": {
"value": "none"
},
"fontStyle": {
"value": "normal"
},
"lineHeight": {
"value": 1.5
},
"textIndent": {
"value": 0
},
"letterSpacing": {
"value": 0
},
"wordSpacing": {
"value": 0
},
"fontVariant": {
"value": "normal"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "0px 0px 0px 0px #00000040"
}
},
"properties": {
"text": {
"value": "Application ID"
},
"loadingState": {
"value": "{{false}}"
}
},
"general": {},
"exposedVariables": {}
},
"name": "rowIdLabel",
"displayName": "Text",
"description": "Display text or HTML",
"component": "Text",
"defaultSize": {
"width": 6,
"height": 30
},
"exposedVariables": {
"text": "Hello, there!"
},
"actions": [
{
"handle": "setText",
"displayName": "Set Text",
"params": [
{
"handle": "text",
"displayName": "Text",
"defaultValue": "New text"
}
]
},
{
"handle": "visibility",
"displayName": "Set Visibility",
"params": [
{
"handle": "visibility",
"displayName": "Value",
"defaultValue": "{{false}}",
"type": "toggle"
}
]
}
]
},
"layouts": {
"desktop": {
"top": 550,
"left": 6.976743507308886,
"width": 19,
"height": 30
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"39aa08da-3714-4c6e-b890-1691edec4004": {
"component": {
"properties": {
"text": {
"type": "code",
"displayName": "Text",
"validation": {
"schema": {
"type": "union",
"schemas": [
{
"type": "string"
},
{
"type": "number"
}
]
}
}
},
"loadingState": {
"type": "toggle",
"displayName": "Show loading state",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"general": {
"tooltip": {
"type": "code",
"displayName": "Tooltip",
"validation": {
"schema": {
"type": "string"
}
}
}
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"events": {},
"styles": {
"fontWeight": {
"type": "select",
"displayName": "Font Weight",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "bold",
"value": "bold"
},
{
"name": "lighter",
"value": "lighter"
},
{
"name": "bolder",
"value": "bolder"
}
]
},
"decoration": {
"type": "select",
"displayName": "Text Decoration",
"options": [
{
"name": "none",
"value": "none"
},
{
"name": "overline",
"value": "overline"
},
{
"name": "line-through",
"value": "line-through"
},
{
"name": "underline",
"value": "underline"
},
{
"name": "overline underline",
"value": "overline underline"
}
]
},
"transformation": {
"type": "select",
"displayName": "Text Transformation",
"options": [
{
"name": "none",
"value": "none"
},
{
"name": "uppercase",
"value": "uppercase"
},
{
"name": "lowercase",
"value": "lowercase"
},
{
"name": "capitalize",
"value": "capitalize"
}
]
},
"fontStyle": {
"type": "select",
"displayName": "Font Style",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "italic",
"value": "italic"
},
{
"name": "oblique",
"value": "oblique"
}
]
},
"lineHeight": {
"type": "number",
"displayName": "Line Height"
},
"textIndent": {
"type": "number",
"displayName": "Text Indent"
},
"letterSpacing": {
"type": "number",
"displayName": "Letter Spacing"
},
"wordSpacing": {
"type": "number",
"displayName": "Word Spacing"
},
"fontVariant": {
"type": "select",
"displayName": "Font Variant",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "small-caps",
"value": "small-caps"
},
{
"name": "initial",
"value": "initial"
},
{
"name": "inherit",
"value": "inherit"
}
]
},
"textSize": {
"type": "number",
"displayName": "Text Size",
"validation": {
"schema": {
"type": "number"
}
}
},
"backgroundColor": {
"type": "color",
"displayName": "Background Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"textColor": {
"type": "color",
"displayName": "Text Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"textAlign": {
"type": "alignButtons",
"displayName": "Align Text",
"validation": {
"schema": {
"type": "string"
}
}
},
"visibility": {
"type": "toggle",
"displayName": "Visibility",
"validation": {
"schema": {
"type": "boolean"
}
}
},
"disabledState": {
"type": "toggle",
"displayName": "Disable",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"validate": true,
"generalStyles": {
"boxShadow": {
"type": "boxShadow",
"displayName": "Box Shadow"
}
},
"definition": {
"others": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"events": [],
"styles": {
"backgroundColor": {
"value": "#fff00000"
},
"textColor": {
"value": "#000000"
},
"textSize": {
"value": 14
},
"textAlign": {
"value": "left"
},
"fontWeight": {
"value": "bold"
},
"decoration": {
"value": "none"
},
"transformation": {
"value": "none"
},
"fontStyle": {
"value": "normal"
},
"lineHeight": {
"value": 1.5
},
"textIndent": {
"value": 0
},
"letterSpacing": {
"value": 0
},
"wordSpacing": {
"value": 0
},
"fontVariant": {
"value": "normal"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "0px 0px 0px 0px #00000040"
}
},
"properties": {
"text": {
"value": "Company Name"
},
"loadingState": {
"value": "{{false}}"
}
},
"general": {},
"exposedVariables": {}
},
"name": "companyNameLabel",
"displayName": "Text",
"description": "Display text or HTML",
"component": "Text",
"defaultSize": {
"width": 6,
"height": 30
},
"exposedVariables": {
"text": "Hello, there!"
},
"actions": [
{
"handle": "setText",
"displayName": "Set Text",
"params": [
{
"handle": "text",
"displayName": "Text",
"defaultValue": "New text"
}
]
},
{
"handle": "visibility",
"displayName": "Set Visibility",
"params": [
{
"handle": "visibility",
"displayName": "Value",
"defaultValue": "{{false}}",
"type": "toggle"
}
]
}
]
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d",
"layouts": {
"desktop": {
"top": 70,
"left": 6.976761465794188,
"width": 20.999999999999996,
"height": 30
}
},
"withDefaultChildren": false
},
"07b23415-8c75-4e3e-b396-57dd6f037c78": {
"id": "07b23415-8c75-4e3e-b396-57dd6f037c78",
"component": {
"properties": {
"text": {
"type": "code",
"displayName": "Text",
"validation": {
"schema": {
"type": "union",
"schemas": [
{
"type": "string"
},
{
"type": "number"
}
]
}
}
},
"loadingState": {
"type": "toggle",
"displayName": "Show loading state",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"general": {
"tooltip": {
"type": "code",
"displayName": "Tooltip",
"validation": {
"schema": {
"type": "string"
}
}
}
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"events": {},
"styles": {
"fontWeight": {
"type": "select",
"displayName": "Font Weight",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "bold",
"value": "bold"
},
{
"name": "lighter",
"value": "lighter"
},
{
"name": "bolder",
"value": "bolder"
}
]
},
"decoration": {
"type": "select",
"displayName": "Text Decoration",
"options": [
{
"name": "none",
"value": "none"
},
{
"name": "overline",
"value": "overline"
},
{
"name": "line-through",
"value": "line-through"
},
{
"name": "underline",
"value": "underline"
},
{
"name": "overline underline",
"value": "overline underline"
}
]
},
"transformation": {
"type": "select",
"displayName": "Text Transformation",
"options": [
{
"name": "none",
"value": "none"
},
{
"name": "uppercase",
"value": "uppercase"
},
{
"name": "lowercase",
"value": "lowercase"
},
{
"name": "capitalize",
"value": "capitalize"
}
]
},
"fontStyle": {
"type": "select",
"displayName": "Font Style",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "italic",
"value": "italic"
},
{
"name": "oblique",
"value": "oblique"
}
]
},
"lineHeight": {
"type": "number",
"displayName": "Line Height"
},
"textIndent": {
"type": "number",
"displayName": "Text Indent"
},
"letterSpacing": {
"type": "number",
"displayName": "Letter Spacing"
},
"wordSpacing": {
"type": "number",
"displayName": "Word Spacing"
},
"fontVariant": {
"type": "select",
"displayName": "Font Variant",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "small-caps",
"value": "small-caps"
},
{
"name": "initial",
"value": "initial"
},
{
"name": "inherit",
"value": "inherit"
}
]
},
"textSize": {
"type": "number",
"displayName": "Text Size",
"validation": {
"schema": {
"type": "number"
}
}
},
"backgroundColor": {
"type": "color",
"displayName": "Background Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"textColor": {
"type": "color",
"displayName": "Text Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"textAlign": {
"type": "alignButtons",
"displayName": "Align Text",
"validation": {
"schema": {
"type": "string"
}
}
},
"visibility": {
"type": "toggle",
"displayName": "Visibility",
"validation": {
"schema": {
"type": "boolean"
}
}
},
"disabledState": {
"type": "toggle",
"displayName": "Disable",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"validate": true,
"generalStyles": {
"boxShadow": {
"type": "boxShadow",
"displayName": "Box Shadow"
}
},
"definition": {
"others": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"events": [],
"styles": {
"backgroundColor": {
"value": "#fff00000"
},
"textColor": {
"value": "#000000"
},
"textSize": {
"value": 14
},
"textAlign": {
"value": "left"
},
"fontWeight": {
"value": "bold"
},
"decoration": {
"value": "none"
},
"transformation": {
"value": "none"
},
"fontStyle": {
"value": "normal"
},
"lineHeight": {
"value": 1.5
},
"textIndent": {
"value": 0
},
"letterSpacing": {
"value": 0
},
"wordSpacing": {
"value": 0
},
"fontVariant": {
"value": "normal"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "0px 0px 0px 0px #00000040"
}
},
"properties": {
"text": {
"value": "Position"
},
"loadingState": {
"value": "{{false}}"
}
},
"general": {},
"exposedVariables": {}
},
"name": "positionLabel",
"displayName": "Text",
"description": "Display text or HTML",
"component": "Text",
"defaultSize": {
"width": 6,
"height": 30
},
"exposedVariables": {
"text": "Hello, there!"
},
"actions": [
{
"handle": "setText",
"displayName": "Set Text",
"params": [
{
"handle": "text",
"displayName": "Text",
"defaultValue": "New text"
}
]
},
{
"handle": "visibility",
"displayName": "Set Visibility",
"params": [
{
"handle": "visibility",
"displayName": "Value",
"defaultValue": "{{false}}",
"type": "toggle"
}
]
}
]
},
"layouts": {
"desktop": {
"top": 150,
"left": 6.976735592225935,
"width": 20.999999999999996,
"height": 30
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"eec907bf-84a0-4710-8837-e7012ed55493": {
"id": "eec907bf-84a0-4710-8837-e7012ed55493",
"component": {
"properties": {
"text": {
"type": "code",
"displayName": "Text",
"validation": {
"schema": {
"type": "union",
"schemas": [
{
"type": "string"
},
{
"type": "number"
}
]
}
}
},
"loadingState": {
"type": "toggle",
"displayName": "Show loading state",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"general": {
"tooltip": {
"type": "code",
"displayName": "Tooltip",
"validation": {
"schema": {
"type": "string"
}
}
}
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"events": {},
"styles": {
"fontWeight": {
"type": "select",
"displayName": "Font Weight",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "bold",
"value": "bold"
},
{
"name": "lighter",
"value": "lighter"
},
{
"name": "bolder",
"value": "bolder"
}
]
},
"decoration": {
"type": "select",
"displayName": "Text Decoration",
"options": [
{
"name": "none",
"value": "none"
},
{
"name": "overline",
"value": "overline"
},
{
"name": "line-through",
"value": "line-through"
},
{
"name": "underline",
"value": "underline"
},
{
"name": "overline underline",
"value": "overline underline"
}
]
},
"transformation": {
"type": "select",
"displayName": "Text Transformation",
"options": [
{
"name": "none",
"value": "none"
},
{
"name": "uppercase",
"value": "uppercase"
},
{
"name": "lowercase",
"value": "lowercase"
},
{
"name": "capitalize",
"value": "capitalize"
}
]
},
"fontStyle": {
"type": "select",
"displayName": "Font Style",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "italic",
"value": "italic"
},
{
"name": "oblique",
"value": "oblique"
}
]
},
"lineHeight": {
"type": "number",
"displayName": "Line Height"
},
"textIndent": {
"type": "number",
"displayName": "Text Indent"
},
"letterSpacing": {
"type": "number",
"displayName": "Letter Spacing"
},
"wordSpacing": {
"type": "number",
"displayName": "Word Spacing"
},
"fontVariant": {
"type": "select",
"displayName": "Font Variant",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "small-caps",
"value": "small-caps"
},
{
"name": "initial",
"value": "initial"
},
{
"name": "inherit",
"value": "inherit"
}
]
},
"textSize": {
"type": "number",
"displayName": "Text Size",
"validation": {
"schema": {
"type": "number"
}
}
},
"backgroundColor": {
"type": "color",
"displayName": "Background Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"textColor": {
"type": "color",
"displayName": "Text Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"textAlign": {
"type": "alignButtons",
"displayName": "Align Text",
"validation": {
"schema": {
"type": "string"
}
}
},
"visibility": {
"type": "toggle",
"displayName": "Visibility",
"validation": {
"schema": {
"type": "boolean"
}
}
},
"disabledState": {
"type": "toggle",
"displayName": "Disable",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"validate": true,
"generalStyles": {
"boxShadow": {
"type": "boxShadow",
"displayName": "Box Shadow"
}
},
"definition": {
"others": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"events": [],
"styles": {
"backgroundColor": {
"value": "#fff00000"
},
"textColor": {
"value": "#000000"
},
"textSize": {
"value": 14
},
"textAlign": {
"value": "left"
},
"fontWeight": {
"value": "bold"
},
"decoration": {
"value": "none"
},
"transformation": {
"value": "none"
},
"fontStyle": {
"value": "normal"
},
"lineHeight": {
"value": 1.5
},
"textIndent": {
"value": 0
},
"letterSpacing": {
"value": 0
},
"wordSpacing": {
"value": 0
},
"fontVariant": {
"value": "normal"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "0px 0px 0px 0px #00000040"
}
},
"properties": {
"text": {
"value": "Application URL"
},
"loadingState": {
"value": "{{false}}"
}
},
"general": {},
"exposedVariables": {}
},
"name": "applicationUrlLabel",
"displayName": "Text",
"description": "Display text or HTML",
"component": "Text",
"defaultSize": {
"width": 6,
"height": 30
},
"exposedVariables": {
"text": "Hello, there!"
},
"actions": [
{
"handle": "setText",
"displayName": "Set Text",
"params": [
{
"handle": "text",
"displayName": "Text",
"defaultValue": "New text"
}
]
},
{
"handle": "visibility",
"displayName": "Set Visibility",
"params": [
{
"handle": "visibility",
"displayName": "Value",
"defaultValue": "{{false}}",
"type": "toggle"
}
]
}
]
},
"layouts": {
"desktop": {
"top": 230,
"left": 6.976750733121757,
"width": 20.999999999999996,
"height": 30
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"ce53a8e3-0dda-4a51-8694-23359833fb48": {
"id": "ce53a8e3-0dda-4a51-8694-23359833fb48",
"component": {
"properties": {
"text": {
"type": "code",
"displayName": "Text",
"validation": {
"schema": {
"type": "union",
"schemas": [
{
"type": "string"
},
{
"type": "number"
}
]
}
}
},
"loadingState": {
"type": "toggle",
"displayName": "Show loading state",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"general": {
"tooltip": {
"type": "code",
"displayName": "Tooltip",
"validation": {
"schema": {
"type": "string"
}
}
}
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"events": {},
"styles": {
"fontWeight": {
"type": "select",
"displayName": "Font Weight",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "bold",
"value": "bold"
},
{
"name": "lighter",
"value": "lighter"
},
{
"name": "bolder",
"value": "bolder"
}
]
},
"decoration": {
"type": "select",
"displayName": "Text Decoration",
"options": [
{
"name": "none",
"value": "none"
},
{
"name": "overline",
"value": "overline"
},
{
"name": "line-through",
"value": "line-through"
},
{
"name": "underline",
"value": "underline"
},
{
"name": "overline underline",
"value": "overline underline"
}
]
},
"transformation": {
"type": "select",
"displayName": "Text Transformation",
"options": [
{
"name": "none",
"value": "none"
},
{
"name": "uppercase",
"value": "uppercase"
},
{
"name": "lowercase",
"value": "lowercase"
},
{
"name": "capitalize",
"value": "capitalize"
}
]
},
"fontStyle": {
"type": "select",
"displayName": "Font Style",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "italic",
"value": "italic"
},
{
"name": "oblique",
"value": "oblique"
}
]
},
"lineHeight": {
"type": "number",
"displayName": "Line Height"
},
"textIndent": {
"type": "number",
"displayName": "Text Indent"
},
"letterSpacing": {
"type": "number",
"displayName": "Letter Spacing"
},
"wordSpacing": {
"type": "number",
"displayName": "Word Spacing"
},
"fontVariant": {
"type": "select",
"displayName": "Font Variant",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "small-caps",
"value": "small-caps"
},
{
"name": "initial",
"value": "initial"
},
{
"name": "inherit",
"value": "inherit"
}
]
},
"textSize": {
"type": "number",
"displayName": "Text Size",
"validation": {
"schema": {
"type": "number"
}
}
},
"backgroundColor": {
"type": "color",
"displayName": "Background Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"textColor": {
"type": "color",
"displayName": "Text Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"textAlign": {
"type": "alignButtons",
"displayName": "Align Text",
"validation": {
"schema": {
"type": "string"
}
}
},
"visibility": {
"type": "toggle",
"displayName": "Visibility",
"validation": {
"schema": {
"type": "boolean"
}
}
},
"disabledState": {
"type": "toggle",
"displayName": "Disable",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"validate": true,
"generalStyles": {
"boxShadow": {
"type": "boxShadow",
"displayName": "Box Shadow"
}
},
"definition": {
"others": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"events": [],
"styles": {
"backgroundColor": {
"value": "#fff00000"
},
"textColor": {
"value": "#000000"
},
"textSize": {
"value": 14
},
"textAlign": {
"value": "left"
},
"fontWeight": {
"value": "bold"
},
"decoration": {
"value": "none"
},
"transformation": {
"value": "none"
},
"fontStyle": {
"value": "normal"
},
"lineHeight": {
"value": 1.5
},
"textIndent": {
"value": 0
},
"letterSpacing": {
"value": 0
},
"wordSpacing": {
"value": 0
},
"fontVariant": {
"value": "normal"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "0px 0px 0px 0px #00000040"
}
},
"properties": {
"text": {
"value": "Date Applied"
},
"loadingState": {
"value": "{{false}}"
}
},
"general": {},
"exposedVariables": {}
},
"name": "dateAppliedLabel",
"displayName": "Text",
"description": "Display text or HTML",
"component": "Text",
"defaultSize": {
"width": 6,
"height": 30
},
"exposedVariables": {
"text": "Hello, there!"
},
"actions": [
{
"handle": "setText",
"displayName": "Set Text",
"params": [
{
"handle": "text",
"displayName": "Text",
"defaultValue": "New text"
}
]
},
{
"handle": "visibility",
"displayName": "Set Visibility",
"params": [
{
"handle": "visibility",
"displayName": "Value",
"defaultValue": "{{false}}",
"type": "toggle"
}
]
}
]
},
"layouts": {
"desktop": {
"top": 310,
"left": 6.976728440645868,
"width": 20.999999999999996,
"height": 30
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"231f447f-c47f-456c-9205-221c2309b282": {
"id": "231f447f-c47f-456c-9205-221c2309b282",
"component": {
"properties": {
"text": {
"type": "code",
"displayName": "Text",
"validation": {
"schema": {
"type": "union",
"schemas": [
{
"type": "string"
},
{
"type": "number"
}
]
}
}
},
"loadingState": {
"type": "toggle",
"displayName": "Show loading state",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"general": {
"tooltip": {
"type": "code",
"displayName": "Tooltip",
"validation": {
"schema": {
"type": "string"
}
}
}
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"events": {},
"styles": {
"fontWeight": {
"type": "select",
"displayName": "Font Weight",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "bold",
"value": "bold"
},
{
"name": "lighter",
"value": "lighter"
},
{
"name": "bolder",
"value": "bolder"
}
]
},
"decoration": {
"type": "select",
"displayName": "Text Decoration",
"options": [
{
"name": "none",
"value": "none"
},
{
"name": "overline",
"value": "overline"
},
{
"name": "line-through",
"value": "line-through"
},
{
"name": "underline",
"value": "underline"
},
{
"name": "overline underline",
"value": "overline underline"
}
]
},
"transformation": {
"type": "select",
"displayName": "Text Transformation",
"options": [
{
"name": "none",
"value": "none"
},
{
"name": "uppercase",
"value": "uppercase"
},
{
"name": "lowercase",
"value": "lowercase"
},
{
"name": "capitalize",
"value": "capitalize"
}
]
},
"fontStyle": {
"type": "select",
"displayName": "Font Style",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "italic",
"value": "italic"
},
{
"name": "oblique",
"value": "oblique"
}
]
},
"lineHeight": {
"type": "number",
"displayName": "Line Height"
},
"textIndent": {
"type": "number",
"displayName": "Text Indent"
},
"letterSpacing": {
"type": "number",
"displayName": "Letter Spacing"
},
"wordSpacing": {
"type": "number",
"displayName": "Word Spacing"
},
"fontVariant": {
"type": "select",
"displayName": "Font Variant",
"options": [
{
"name": "normal",
"value": "normal"
},
{
"name": "small-caps",
"value": "small-caps"
},
{
"name": "initial",
"value": "initial"
},
{
"name": "inherit",
"value": "inherit"
}
]
},
"textSize": {
"type": "number",
"displayName": "Text Size",
"validation": {
"schema": {
"type": "number"
}
}
},
"backgroundColor": {
"type": "color",
"displayName": "Background Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"textColor": {
"type": "color",
"displayName": "Text Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"textAlign": {
"type": "alignButtons",
"displayName": "Align Text",
"validation": {
"schema": {
"type": "string"
}
}
},
"visibility": {
"type": "toggle",
"displayName": "Visibility",
"validation": {
"schema": {
"type": "boolean"
}
}
},
"disabledState": {
"type": "toggle",
"displayName": "Disable",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"validate": true,
"generalStyles": {
"boxShadow": {
"type": "boxShadow",
"displayName": "Box Shadow"
}
},
"definition": {
"others": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"events": [],
"styles": {
"backgroundColor": {
"value": "#fff00000"
},
"textColor": {
"value": "#000000"
},
"textSize": {
"value": 14
},
"textAlign": {
"value": "left"
},
"fontWeight": {
"value": "bold"
},
"decoration": {
"value": "none"
},
"transformation": {
"value": "none"
},
"fontStyle": {
"value": "normal"
},
"lineHeight": {
"value": 1.5
},
"textIndent": {
"value": 0
},
"letterSpacing": {
"value": 0
},
"wordSpacing": {
"value": 0
},
"fontVariant": {
"value": "normal"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "0px 0px 0px 0px #00000040"
}
},
"properties": {
"text": {
"value": "Status"
},
"loadingState": {
"value": "{{false}}"
}
},
"general": {},
"exposedVariables": {}
},
"name": "statusLabel",
"displayName": "Text",
"description": "Display text or HTML",
"component": "Text",
"defaultSize": {
"width": 6,
"height": 30
},
"exposedVariables": {
"text": "Hello, there!"
},
"actions": [
{
"handle": "setText",
"displayName": "Set Text",
"params": [
{
"handle": "text",
"displayName": "Text",
"defaultValue": "New text"
}
]
},
{
"handle": "visibility",
"displayName": "Set Visibility",
"params": [
{
"handle": "visibility",
"displayName": "Value",
"defaultValue": "{{false}}",
"type": "toggle"
}
]
}
]
},
"layouts": {
"desktop": {
"top": 390,
"left": 6.976738292435557,
"width": 20.999999999999996,
"height": 30
}
},
"parent": "5e347f5b-8e2b-45f0-8291-80bccd68184d"
},
"3f3a0093-91c6-4ffe-ba28-d71dd53c6c06": {
"component": {
"properties": {
"loadingState": {
"type": "toggle",
"displayName": "loading state",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"general": {
"tooltip": {
"type": "code",
"displayName": "Tooltip",
"validation": {
"schema": {
"type": "string"
}
}
}
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"events": {},
"styles": {
"backgroundColor": {
"type": "color",
"displayName": "Background color",
"validation": {
"schema": {
"type": "string"
}
}
},
"borderRadius": {
"type": "code",
"displayName": "Border Radius",
"validation": {
"schema": {
"type": "union",
"schemas": [
{
"type": "string"
},
{
"type": "number"
}
]
}
}
},
"borderColor": {
"type": "color",
"displayName": "Border color",
"validation": {
"schema": {
"type": "string"
}
}
},
"visibility": {
"type": "toggle",
"displayName": "Visibility",
"validation": {
"schema": {
"type": "boolean"
}
}
},
"disabledState": {
"type": "toggle",
"displayName": "Disable",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"validate": true,
"generalStyles": {
"boxShadow": {
"type": "boxShadow",
"displayName": "Box Shadow"
}
},
"definition": {
"others": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"events": [],
"styles": {
"backgroundColor": {
"value": "#fff"
},
"borderRadius": {
"value": "10"
},
"borderColor": {
"value": "#ffffff00"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "0px 0px 0px 0px #00000040"
}
},
"properties": {
"visible": {
"value": "{{true}}"
},
"loadingState": {
"value": "{{false}}"
}
},
"general": {},
"exposedVariables": {}
},
"name": "container3",
"displayName": "Container",
"description": "Group components",
"defaultSize": {
"width": 5,
"height": 200
},
"component": "Container",
"exposedVariables": {}
},
"layouts": {
"desktop": {
"top": 20,
"left": 2.3255813953488373,
"width": 41,
"height": 70
}
},
"withDefaultChildren": false
},
"e18ce834-d141-4078-ac43-1450d7f7c9bc": {
"id": "e18ce834-d141-4078-ac43-1450d7f7c9bc",
"component": {
"name": "text10",
"displayName": "Text",
"description": "Display markdown or HTML",
"component": "Text",
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"properties": {
"text": {
"type": "code",
"displayName": "Text"
},
"loadingState": {
"type": "code",
"displayName": "Show loading state"
}
},
"defaultSize": {
"width": 3,
"height": 30
},
"events": [],
"styles": {
"textColor": {
"type": "color",
"displayName": "Text Color"
},
"visibility": {
"type": "code",
"displayName": "Visibility"
},
"disabledState": {
"type": "code",
"displayName": "Disable"
}
},
"exposedVariables": {},
"definition": {
"others": {
"showOnDesktop": {
"value": true
},
"showOnMobile": {
"value": false
}
},
"properties": {
"text": {
"value": "Job Application Tracker"
},
"visible": {
"value": true
},
"loadingState": {
"value": "{{false}}"
}
},
"events": [],
"styles": {
"textColor": {
"value": "#000"
},
"visibility": {
"value": "{{true}}"
},
"disabledState": {
"value": "{{false}}"
},
"fontWeight": {
"value": "bold"
},
"textSize": {
"value": "{{24}}"
},
"fontVariant": {
"value": "normal"
},
"textAlign": {
"value": "left"
}
}
}
},
"layouts": {
"desktop": {
"top": 10,
"left": 2.325581358962442,
"width": 13,
"height": 40
}
},
"parent": "3f3a0093-91c6-4ffe-ba28-d71dd53c6c06"
},
"a8bc48dd-488c-4d50-93f3-f009453dd047": {
"id": "a8bc48dd-488c-4d50-93f3-f009453dd047",
"component": {
"properties": {
"icon": {
"type": "iconPicker",
"displayName": "Icon",
"validation": {
"schema": {
"type": "string"
}
}
}
},
"general": {
"tooltip": {
"type": "code",
"displayName": "Tooltip",
"validation": {
"schema": {
"type": "string"
}
}
}
},
"others": {
"showOnDesktop": {
"type": "toggle",
"displayName": "Show on desktop"
},
"showOnMobile": {
"type": "toggle",
"displayName": "Show on mobile"
}
},
"events": {
"onClick": {
"displayName": "On click"
},
"onHover": {
"displayName": "On hover"
}
},
"styles": {
"iconColor": {
"type": "color",
"displayName": "Icon Color",
"validation": {
"schema": {
"type": "string"
}
}
},
"visibility": {
"type": "toggle",
"displayName": "Visibility",
"validation": {
"schema": {
"type": "boolean"
}
}
}
},
"validate": true,
"generalStyles": {
"boxShadow": {
"type": "boxShadow",
"displayName": "Box Shadow"
}
},
"definition": {
"others": {
"showOnDesktop": {
"value": "{{true}}"
},
"showOnMobile": {
"value": "{{false}}"
}
},
"events": [
{
"eventId": "onClick",
"actionId": "open-webpage",
"message": "Hello world!",
"alertType": "info",
"url": "{{`https://docs.google.com/spreadsheets/d/${queries.Readme.data.spreadsheetId}`}}"
}
],
"styles": {
"iconColor": {
"value": "#009410ff"
},
"visibility": {
"value": "{{true}}"
}
},
"generalStyles": {
"boxShadow": {
"value": "0px 0px 0px 0px #00000040"
}
},
"properties": {
"icon": {
"value": "IconFileSpreadsheet"
}
},
"general": {
"tooltip": {
"value": "View Sheet"
}
},
"exposedVariables": {}
},
"name": "viewSheet",
"displayName": "Icon",
"description": "Icon",
"defaultSize": {
"width": 5,
"height": 48
},
"component": "Icon",
"exposedVariables": {},
"actions": [
{
"handle": "click",
"displayName": "Click"
},
{
"displayName": "Set Visibility",
"handle": "setVisibility",
"params": [
{
"handle": "value",
"displayName": "Value",
"defaultValue": "{{true}}",
"type": "toggle"
}
]
}
]
},
"layouts": {
"desktop": {
"top": 10,
"left": 95.34882705281203,
"width": 1,
"height": 40
}
},
"parent": "3f3a0093-91c6-4ffe-ba28-d71dd53c6c06"
}
},
"handle": "home",
"name": "Home"
}
},
"globalSettings": {
"hideHeader": false,
"appInMaintenance": false,
"canvasMaxWidth": 100,
"canvasMaxWidthType": "%",
"canvasMaxHeight": 2400,
"canvasBackgroundColor": "#F2F2F5",
"backgroundFxQuery": ""
}
},
"globalSettings": {
"hideHeader": true,
"appInMaintenance": false,
"canvasMaxWidth": 100,
"canvasMaxWidthType": "%",
"canvasMaxHeight": 2400,
"canvasBackgroundColor": "",
"backgroundFxQuery": ""
},
"showViewerNavigation": false,
"homePageId": "90f8e7d8-4b34-448a-aae8-3d73e68e64fa",
"appId": "f1315ce0-80d8-41ce-a134-ecd7e7515cc6",
"currentEnvironmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4",
"promotedFrom": null,
"createdAt": "2023-11-01T02:09:26.459Z",
"updatedAt": "2024-01-04T23:31:11.416Z"
}
],
"appEnvironments": [
{
"id": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d",
"organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84",
"name": "production",
"isDefault": true,
"priority": 3,
"enabled": true,
"createdAt": "2023-04-26T19:44:06.852Z",
"updatedAt": "2023-04-26T19:44:06.852Z"
},
{
"id": "1071e258-9bd6-496c-a11c-9fe8670eedcc",
"organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84",
"name": "staging",
"isDefault": false,
"priority": 2,
"enabled": true,
"createdAt": "2023-04-26T19:44:06.852Z",
"updatedAt": "2023-04-26T19:44:06.852Z"
},
{
"id": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4",
"organizationId": "f2a832bb-fc39-49c5-be7f-7037ebb79b84",
"name": "development",
"isDefault": false,
"priority": 1,
"enabled": true,
"createdAt": "2023-04-26T19:44:06.852Z",
"updatedAt": "2023-04-26T19:44:06.852Z"
}
],
"dataSourceOptions": [
{
"id": "50b69883-99d4-4af9-9fe6-adc6563ba790",
"dataSourceId": "0755313f-500d-4cec-82b6-9447991646be",
"environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc",
"options": {
"access_type": {
"value": "read",
"encrypted": false
}
},
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-11-01T02:09:26.360Z"
},
{
"id": "20e9f31e-88cd-44c4-9607-927b502362ec",
"dataSourceId": "0755313f-500d-4cec-82b6-9447991646be",
"environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4",
"options": {
"access_type": {
"value": "write",
"encrypted": false
},
"access_token": {
"credential_id": "",
"encrypted": true
},
"refresh_token": {
"credential_id": "",
"encrypted": true
}
},
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-11-01T02:09:26.360Z"
},
{
"id": "f039a56b-0b98-4fbe-ad40-fa57c17d2681",
"dataSourceId": "9cc9611b-9358-4c3c-8b5a-db88fb6b602a",
"environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc",
"options": {},
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-11-01T02:09:26.360Z"
},
{
"id": "ac9a4f3b-ed16-4edb-93a0-213655062788",
"dataSourceId": "a5ebca44-f652-4c1d-a2ce-873f9ac9ab1f",
"environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc",
"options": {},
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-11-01T02:09:26.360Z"
},
{
"id": "55d19288-3529-45b3-8827-e624814a72ee",
"dataSourceId": "e581d326-956b-47e5-9924-c1da36693455",
"environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc",
"options": {},
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-11-01T02:09:26.360Z"
},
{
"id": "fa0f2983-a43d-4a25-bd69-053d457eba48",
"dataSourceId": "194891f1-624b-408d-918e-a29a2ea3fb4e",
"environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc",
"options": {},
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-11-01T02:09:26.360Z"
},
{
"id": "23092b07-8ffc-4464-9d24-a22250cbd071",
"dataSourceId": "0755313f-500d-4cec-82b6-9447991646be",
"environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d",
"options": {
"access_type": {
"value": "read",
"encrypted": false
}
},
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-11-01T02:09:26.360Z"
},
{
"id": "b5b40f88-0b5e-4970-bfd7-db597f9d3445",
"dataSourceId": "c48887ff-7174-478e-88db-414d93614553",
"environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d",
"options": {},
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-11-01T02:09:26.360Z"
},
{
"id": "ddfc9717-ea24-4c47-b541-2bfbd675036e",
"dataSourceId": "194891f1-624b-408d-918e-a29a2ea3fb4e",
"environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d",
"options": {},
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-11-01T02:09:26.360Z"
},
{
"id": "b35d2be6-9d54-4490-9a46-4b6638c49e4b",
"dataSourceId": "e581d326-956b-47e5-9924-c1da36693455",
"environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d",
"options": {},
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-11-01T02:09:26.360Z"
},
{
"id": "43f8ad51-8770-48ca-9346-2493e19f02fd",
"dataSourceId": "a5ebca44-f652-4c1d-a2ce-873f9ac9ab1f",
"environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d",
"options": {},
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-11-01T02:09:26.360Z"
},
{
"id": "dc9597fc-43dc-4d0d-b1f2-2e62a674f29d",
"dataSourceId": "9cc9611b-9358-4c3c-8b5a-db88fb6b602a",
"environmentId": "1841fd5c-f11a-4a1a-97b2-f2312316cb8d",
"options": {},
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-11-01T02:09:26.360Z"
},
{
"id": "bd11221e-9ec5-4961-94dd-e4f688d946eb",
"dataSourceId": "c48887ff-7174-478e-88db-414d93614553",
"environmentId": "1071e258-9bd6-496c-a11c-9fe8670eedcc",
"options": {},
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-11-01T02:09:26.360Z"
},
{
"id": "cbbf1bd1-8b9b-4e71-ab95-499c832477ef",
"dataSourceId": "9cc9611b-9358-4c3c-8b5a-db88fb6b602a",
"environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4",
"options": {},
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-11-01T02:09:26.360Z"
},
{
"id": "15de4322-f8ba-477f-acdb-e273d56608b7",
"dataSourceId": "a5ebca44-f652-4c1d-a2ce-873f9ac9ab1f",
"environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4",
"options": {},
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-11-01T02:09:26.360Z"
},
{
"id": "14c851f6-b9f1-4814-b3fb-d9395ff8f70a",
"dataSourceId": "e581d326-956b-47e5-9924-c1da36693455",
"environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4",
"options": {},
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-11-01T02:09:26.360Z"
},
{
"id": "731688b2-ce14-4903-b7d5-2e9d21ecb44b",
"dataSourceId": "194891f1-624b-408d-918e-a29a2ea3fb4e",
"environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4",
"options": {},
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-11-01T02:09:26.360Z"
},
{
"id": "8def7c91-65a9-4969-9728-b29848be7ef2",
"dataSourceId": "c48887ff-7174-478e-88db-414d93614553",
"environmentId": "5b7f33b3-b9a9-43b0-a9b2-82bb37fca4d4",
"options": {},
"createdAt": "2023-11-01T02:09:26.360Z",
"updatedAt": "2023-11-01T02:09:26.360Z"
}
],
"schemaDetails": {
"multiPages": true,
"multiEnv": true,
"globalDataSources": true
}
}
}
}
],
"tooljet_version": "2.26.2-ee2.11.2-cloud2.1.11"
}