[API breaking change : Automated Tests Will Fail] Page And Action Refactor (#549)
* Introduced new page which stores the published and unpublished pages as separate.
* Mid level commit to save the state.
* Parity of new page repository with old page repository (custom functions)
* WIP : Delete a page. This requires changes across application structure as well.
* Added publishedPages construct inside application to store the pages in the deployed view as well as isDefault so that the same changes (delete or isDefault) in unpublished view doesn't alter these fields for the published application
* Parity reached with PageService.
* Minor ActionService refactor to remove unnecessary code.
ApplicationPageService, LayoutActionService, LayoutService use the new page service to fetch the pages
Minor corrections in fetching the page from new page service in tests
* New save function which sets the PageDTO for unpublished page and then saves the new page into repository.
* Migration of page service functions to new page service functions across other services/tests/controller
* Finished migrating all the page service functions to the new page service functions
* Application Service Tests have been fixed.
* All the existing test cases are working now.
* Publish application implemented to store published pages as well. Added a basic test case to check that published pages is being set and that page's publishedPageDTO is being set accordingly.
* Minor TODOs added to add test cases for published application.
* A few tests to ascertain that published application page fields (deleted, isDefault) does not get changed when these statuses are changed for a page in edit mode.
* Added a new controller end point to fetch application in view mode.
* Added new endpoint for fetching an application in view mode on the client.
* Bug fix where get application in view mode API was not getting called.
* Fixed the get page names by application & archive pages which have been deleted in edit mode during publishing of application.
* During delete page, if a page was never published and it was deleted during edit, delete the entire page instead of just deleting the unpublished PageDTO
* Minor formatting.
* Non working client side code to fetch page list using view mode.
* revert unnecassary changes and streamlined view and edit actions
* Fix missed import
* Fixed a bug where if a page is not published, it should not be returned in view mode in list of page names api.
* Fixed update for a page which was not working in integration test.
* ActionDTO added.
* Solidified the new action structure.
* Migration added for NewAction index creation and NewAction per Action insertion in the database.
* Basic file structure added the new repository, custom repository, service, etc.
* Delete OldPage.java
* Repo functions added - TODO : Haven;t handled the published/edited views
* Helper functions added to convert Action to NewAction and vice-versa. Removed unused currentUserMono usage.
* Create & update action functionality added.
* Execute Action refactored. Removed dry run specific code.
* Repository migrated to handle new data structure. Execute action refactored to no longer support dry runs of actions.
* TODO added for special handling of change view of application to handle edge cases of pages/actions which either exist in published mode but don't exist in unpublished mode or vice versa.
* Migrated finding on load actions from spring repository to custom repository.
* In view mode, now actions are being fetched by application id directly instead of first fetching application and then using the page ids, fetching the actions. This reduces the db calls from 2 to 1 per fetch actions in view mode api call.
* Delete action and get all actions (used in edit mode on the client side) implemented.
* Updated CollectionService and ActionCollectionService to use the new action service instead of the old one.
* LayoutActionService refactored to now use the new service functions.
* ActionController now no longer used ActionService. The remaining service functions have been migrated to the new action service.
* Refactor across ACL code for addition/removal of policies during addition/removal of users to organization, making app public, refactor for services like policy utils, item service, etc.
* Removed the last of action repository and action service and replaced with new action repo and new action service.
* Compile and run time issues fixed. The server is coming up without any spring dependency errors.
* WIP in fixing fetching actions by page id.
* Finally!!! Fixed the fetch actions (both published and unpublished actions) by page id repository function.
* Fixed create action bug where null datasource in published actiondto (inside newly created action) leads to error.
* Fixed the execute action issues :
1. Removed the dry runs from the tests
2. Fixed the null pointer error in variable substituted action and datasource configurations.
* 1. Fixed the custom action repository field names.
2. Fixed the data structures used in ExamplesOrganizationClonerTests
* Fixed countByDatasourceId repository function which was querying the actions incorrectly.
* Fixed the clone example organization error where the id of the action was not getting updated in the page correctly. Yay!
* Fixed post merge compilation failure.
* Fixed more compilation time failures in ActionServiceTest
* Fixed failing test case for fetching actions in view mode.
* Minor changes to resolve merge changes and incorporate in the new refactored code.
* 1. Fixed compile time errors on Client code.
2. Fixed fetching of actions in view mode by application id. The repository function did not need name parameter. Removed the same.
* [Integration Testing Error Fix] : Added a new test case for refactor action name.
* Instead of fetching actions in the page, mistakenly used the base service which was fetching all the actions in the repository, barring none which led to the name refactor being blocked even though no action in the current page exists with the new proposed name,
* Added delete functionality to action service.
* Minor code cleanup
* Adding viewMode to action execution
* Replacing action with actionId.
* 1. Bug fix for deletion of unpublished action. In case of never published action, the entire action should be deleted. In case an action was published, only the unpublished action should be deleted.
2. In case of DB actions (external datasources), only the bare minimum fields should be stored inside the action (datasource id and datasource plugin id). The other fields should not be duplicated across code.
* Fixed yarn build compilation issues.
* Update app/server/appsmith-server/src/main/java/com/appsmith/server/controllers/ActionController.java
Co-authored-by: Arpit Mohan <mohanarpit@users.noreply.github.com>
* Changed the API path for GET applications in view mode. Some minor code formatting.
* Incorporated review comments.
* Some more unnecessary code removed.
* Instead of returning Page, now the interface object between client and server for Pages is PageDTO
* Migrated Page and Action to PageDTO and ActionDTO
Fixed the compilation issues.
TODO : Fix the test compilation issues.
* Fixed compilation time issues with all the tests by migrating Page and Action to PageDTO and ActionDTO respectively
* Action Controller and Page Controller no longer extend Base Controller. All the required functions have now been implemented and no base line API end points are being re-used from the base.
* Test case fixes.
* Bug Fix : Updating an action was not updating execute on load. Fixed the data flow leading to the error.
* Deprecating Page and Action domain objects. This is to ensure no new code is written with these till we remove this old code.
* Cloned example applications are now published before returning. This is to ensure that the applications are in ready to view mode when the new user signs up.
* Added a function comment to expand on the usage of new param introduced.
* When cloning a page, new actions were not being stored. Added that. Also updated the clonePage test to assert that the actions are also cloned when the pages are cloned.
* Updated a Api call
* removed extra slash
Co-authored-by: Hetu Nandu <hetunandu@gmail.com>
Co-authored-by: Satbir Singh <satbir121@gmail.com>
Co-authored-by: Arpit Mohan <mohanarpit@users.noreply.github.com>
Co-authored-by: nandan.anantharamu <nandan@thinkify.io>
2020-10-26 12:34:23 +00:00
|
|
|
import { WidgetCardProps, WidgetProps } from "widgets/BaseWidget";
|
2021-03-30 05:29:03 +00:00
|
|
|
import { PageAction } from "constants/AppsmithActionConstants/ActionConstants";
|
2020-09-16 11:50:47 +00:00
|
|
|
import { Org } from "./orgConstants";
|
2020-12-17 07:03:59 +00:00
|
|
|
import { ERROR_CODES } from "constants/ApiConstants";
|
2021-03-03 05:26:47 +00:00
|
|
|
import { AppLayoutConfig } from "reducers/entityReducers/pageListReducer";
|
2021-09-17 16:58:04 +00:00
|
|
|
import { GitApplicationMetadata } from "../api/ApplicationApi";
|
2019-09-12 11:19:38 +00:00
|
|
|
|
2021-10-01 16:44:19 +00:00
|
|
|
export const ReduxSagaChannels = {
|
|
|
|
|
WEBSOCKET_APP_LEVEL_WRITE_CHANNEL: "WEBSOCKET_APP_LEVEL_WRITE_CHANNEL",
|
|
|
|
|
WEBSOCKET_PAGE_LEVEL_WRITE_CHANNEL: "WEBSOCKET_PAGE_LEVEL_WRITE_CHANNEL",
|
Initialise comments (#3328)
* Initial scaffolding for comments CRUD APIs
* add actions
* add assets
* state management for existing comments and creating new
* add ui components
* add overlay comments wrapper to baseWidget
* add toggle comment mode button at editor header
* trigger tests
* Disallow commenting as someone else
* Add applicationId for comments
* lint
* Add overlay blacklist to prevent component interaction while adding comments
* Comment thread style updates
* Placeholder comment context menu
* Controlled comment thread visibility for making new comments visible by default
* Update comment type description
* Reset input on save
* Resolve comment thread button ui
* fix close on esc key, dont create new comment on outside click
* Submit on enter
* add emoji picker
* Attempt at adding a websocket server in Java
* CRUD APIs for comment threads
* Add API for getting all threads in application
* Move types to a separate file
* Initial commit for real time server (RTS)
* Add script to start RTS
* Fix position property
* Use create comment thread API
* Use add comment to thread API
* Add custom cursor
* Dispatch logout init on 401 errors
* Allow CORS for real time connection
* Add more logs to RTS
* Fix construction of MongoClient
* WIP: Real time comments
* Enable comments
* Minor updates
* Read backend API base URL from environment
* Escape to reset comments mode
* Set popover position as auto and boundary as scroll parent
* Disable warning
* Added permissions for comment threads
* Add resolved API for comment threads
* Migration to set commenting permission on existing apps
* Fix updates bringing the RTS down
* Show view latest button, scroll to bottom on creating a new comment
* Cleanup comment reducer
* Move to typescript for RTS
* Add missing server.ts and tsconfig files
* Resolve / unresolve comment
* Scaffold app comments
* Minor fixes: comment on top of all widgets, add toggle button at viewer header
* Reconnect socket on creating a new app, set connected status in store
* Retry socket connection flow
* Integration tests for comments with api mocks using msw
* Fix circular depependency
* rm file
* Minor cleanup and comments
* Minor refactors: move isScrolledToBottom to common hooks, decouple prevent interactions overlay from comments wrapper
* Use policies when pushing updates in RTS
* ENV var to set if comments are enabled
* Fix: check if editor/viewer is initialised before waiting for init action
* Add tests for comments reducer
* Revert "ENV var to set if comments are enabled"
This reverts commit 988efeaa69d378d943a387e1e73510334958adc5.
* Enable comments for users with appsmith email
* lint
* fix
* Try running a socket.io server inside backend
* Update comment reducer tests
* Init mentions within comments
* Fix comment thread updates with email rooms
* Minor fixes
* Refactors / review suggestions
* lint
* increase cache limit for builds
* Comment out tests for feature that's under development
* Add Dockerfile for RTS
* Fix policies missing for first comment in threads
* Use draftJS for comments input with mentions support
* fix fixtures
* Use thread's policies when querying for threads
* Update socket.io to v4
* Add support for richer body with mentions
* Update comment body type to RawDraftContentState
* fix stale method
* Fix mentions search
* Minor cleanups
* Comment context menu and thread UI updates
* revert: Scaffold app comments
* Yarn dependencies
* Delete comment using id api added
* Init app comments
* Add test for creating thread
* Api for delete comment with id
* Test comment creation response and policies
* Copy comment links
* Fix reset editor state
* Delete valid comment testcase added
* Delete comment TC : code refactor
* Don't allow creating comments with an empty body
* Pin comments WIP[]
* Ignore dependency-reduced-pom.xml files from VCS
* Cleanup of some dev-only files, for review
* Delete comment
* Update socket.io to v4 in RTS
* Pin and resolve comment thread object added in commentThread
* Pin and resolve comment thread object added in commentThread
* Update comment thread API
* Added creationTime and updationTime in comment thread response
* Added creationTime and updationTime in comment thread response
* Added human readable id to comment threads, fallback to username for null name in user document
* Refactor
* lint
* fix test, rm duplicate selector
* comment out saga used for dev
* CommentThread viewed status, username fallback for getName=null, username field added in pin & resolve status
* lint
* trigger tests
Co-authored-by: Shrikant Sharat Kandula <shrikant@appsmith.com>
Co-authored-by: Abhijeet <abhi.nagarnaik@gmail.com>
2021-04-29 10:33:51 +00:00
|
|
|
};
|
|
|
|
|
|
2021-08-03 08:06:48 +00:00
|
|
|
export const ReduxActionTypes = {
|
2021-12-14 16:30:59 +00:00
|
|
|
DISCONNECT_GIT: "DISCONNECT_GIT",
|
|
|
|
|
SHOW_CONNECT_GIT_MODAL: "SHOW_CONNECT_GIT_MODAL",
|
|
|
|
|
SET_SHOULD_SHOW_REPO_LIMIT_ERROR_MODAL:
|
|
|
|
|
"SET_SHOULD_SHOW_REPO_LIMIT_ERROR_MODAL",
|
|
|
|
|
SET_SHOULD_SHOW_DISCONNECT_GIT_MODAL: "SET_SHOULD_SHOW_DISCONNECT_GIT_MODAL",
|
2021-11-18 06:48:52 +00:00
|
|
|
RESET_PULL_MERGE_STATUS: "RESET_PULL_MERGE_STATUS",
|
2021-11-16 10:24:38 +00:00
|
|
|
GIT_PULL_INIT: "GIT_PULL_INIT",
|
|
|
|
|
GIT_PULL_SUCCESS: "GIT_PULL_SUCCESS",
|
2021-11-10 07:11:23 +00:00
|
|
|
SET_APP_VERSION_ON_WORKER: "SET_APP_VERSION_ON_WORKER",
|
2021-11-09 09:51:18 +00:00
|
|
|
CLEAR_COMMIT_SUCCESSFUL_STATE: "CLEAR_COMMIT_SUCCESSFUL_STATE",
|
|
|
|
|
FETCH_MERGE_STATUS_INIT: "FETCH_MERGE_STATUS_INIT",
|
|
|
|
|
FETCH_MERGE_STATUS_SUCCESS: "FETCH_MERGE_STATUS_SUCCESS",
|
2021-11-16 10:24:38 +00:00
|
|
|
RESET_MERGE_STATUS: "RESET_MERGE_STATUS",
|
2021-10-25 19:57:58 +00:00
|
|
|
MERGE_BRANCH_INIT: "MERGE_BRANCH_INIT",
|
|
|
|
|
MERGE_BRANCH_SUCCESS: "MERGE_BRANCH_SUCCESS",
|
2021-10-20 07:38:17 +00:00
|
|
|
FETCH_GIT_STATUS_INIT: "FETCH_GIT_STATUS_INIT",
|
|
|
|
|
FETCH_GIT_STATUS_SUCCESS: "FETCH_GIT_STATUS_SUCCESS",
|
2021-10-18 14:03:44 +00:00
|
|
|
UPDATE_BRANCH_LOCALLY: "UPDATE_BRANCH_LOCALLY",
|
|
|
|
|
FETCH_BRANCHES_INIT: "FETCH_BRANCHES_INIT",
|
|
|
|
|
FETCH_BRANCHES_SUCCESS: "FETCH_BRANCHES_SUCCESS",
|
2021-10-04 08:01:46 +00:00
|
|
|
APP_COLLAB_SET_CONCURRENT_PAGE_EDITORS:
|
|
|
|
|
"APP_COLLAB_SET_CONCURRENT_PAGE_EDITORS",
|
2021-09-22 18:48:50 +00:00
|
|
|
FETCH_SSH_KEY_PAIR_INIT: "FETCH_SSH_KEY_PAIR_INIT",
|
|
|
|
|
FETCH_SSH_KEY_PAIR_SUCCESS: "FETCH_SSH_KEY_PAIR_SUCCESS",
|
2021-09-17 16:58:04 +00:00
|
|
|
SET_IS_IMPORT_APP_VIA_GIT_MODAL_OPEN: "SET_IS_IMPORT_APP_VIA_GIT_MODAL_OPEN",
|
2021-09-17 10:48:38 +00:00
|
|
|
FETCH_GLOBAL_GIT_CONFIG_INIT: "FETCH_GLOBAL_GIT_CONFIG_INIT",
|
|
|
|
|
FETCH_GLOBAL_GIT_CONFIG_SUCCESS: "FETCH_GLOBAL_GIT_CONFIG_SUCCESS",
|
2021-09-23 08:47:09 +00:00
|
|
|
UPDATE_GLOBAL_GIT_CONFIG_INIT: "UPDATE_GLOBAL_GIT_CONFIG_INIT",
|
|
|
|
|
UPDATE_GLOBAL_GIT_CONFIG_SUCCESS: "UPDATE_GLOBAL_GIT_CONFIG_SUCCESS",
|
|
|
|
|
FETCH_LOCAL_GIT_CONFIG_INIT: "FETCH_LOCAL_GIT_CONFIG_INIT",
|
|
|
|
|
FETCH_LOCAL_GIT_CONFIG_SUCCESS: "FETCH_LOCAL_GIT_CONFIG_SUCCESS",
|
|
|
|
|
UPDATE_LOCAL_GIT_CONFIG_INIT: "UPDATE_LOCAL_GIT_CONFIG_INIT",
|
|
|
|
|
UPDATE_LOCAL_GIT_CONFIG_SUCCESS: "UPDATE_LOCAL_GIT_CONFIG_SUCCESS",
|
2021-09-15 14:01:32 +00:00
|
|
|
SHOW_CREATE_GIT_BRANCH_POPUP: "SHOW_CREATE_GIT_BRANCH_POPUP",
|
|
|
|
|
SHOW_ERROR_POPUP: "SHOW_ERROR_POPUP",
|
2021-10-20 07:38:17 +00:00
|
|
|
|
2021-09-13 13:26:24 +00:00
|
|
|
CONNECT_TO_GIT_INIT: "CONNECT_TO_GIT_INIT",
|
|
|
|
|
CONNECT_TO_GIT_SUCCESS: "CONNECT_TO_GIT_SUCCESS",
|
2021-10-20 07:38:17 +00:00
|
|
|
|
2021-09-13 13:26:24 +00:00
|
|
|
CREATE_NEW_BRANCH_INIT: "CREATE_NEW_BRANCH_INIT",
|
|
|
|
|
SWITCH_GIT_BRANCH_INIT: "SWITCH_GIT_BRANCH_INIT",
|
|
|
|
|
COMMIT_TO_GIT_REPO_INIT: "COMMIT_TO_GIT_REPO_INIT",
|
|
|
|
|
COMMIT_TO_GIT_REPO_SUCCESS: "COMMIT_TO_GIT_REPO_SUCCESS",
|
2021-09-22 18:48:50 +00:00
|
|
|
PUSH_TO_GIT_INIT: "PUSH_TO_GIT_INIT",
|
|
|
|
|
PUSH_TO_GIT_SUCCESS: "PUSH_TO_GIT_SUCCESS",
|
2021-09-07 15:23:40 +00:00
|
|
|
UPDATE_THREAD_DRAFT_COMMENT: "UPDATE_THREAD_DRAFT_COMMENT",
|
|
|
|
|
UPDATE_UNPUBLISHED_THREAD_DRAFT_COMMENT:
|
|
|
|
|
"UPDATE_UNPUBLISHED_THREAD_DRAFT_COMMENT",
|
2021-09-07 12:55:38 +00:00
|
|
|
FETCH_COMMENT_THREADS_INIT: "FETCH_COMMENT_THREADS_INIT",
|
2021-08-27 08:57:18 +00:00
|
|
|
SET_DRAGGING_COMMENT_THREAD: "SET_DRAGGING_COMMENT_THREAD",
|
|
|
|
|
SET_HAS_DROPPED_COMMENT_THREAD: "SET_HAS_DROPPED_COMMENT_THREAD",
|
2021-08-18 09:40:31 +00:00
|
|
|
SET_IS_GIT_SYNC_MODAL_OPEN: "SET_IS_GIT_SYNC_MODAL_OPEN",
|
2021-08-18 07:21:21 +00:00
|
|
|
DELETE_COMMENT_EVENT: "DELETE_COMMENT_EVENT",
|
|
|
|
|
DELETE_COMMENT_THREAD_EVENT: "DELETE_COMMENT_THREAD_EVENT",
|
2021-08-09 09:04:24 +00:00
|
|
|
APP_COLLAB_LIST_EDITORS: "APP_COLLAB_LIST_EDITORS",
|
|
|
|
|
APP_COLLAB_RESET_EDITORS: "APP_COLLAB_RESET_EDITORS",
|
2021-10-01 16:44:19 +00:00
|
|
|
APP_COLLAB_SET_EDITORS_POINTER_DATA: "APP_COLLAB_SET_EDITORS_POINTER_DATA",
|
|
|
|
|
APP_COLLAB_UNSET_EDITORS_POINTER_DATA:
|
|
|
|
|
"APP_COLLAB_UNSET_EDITORS_POINTER_DATA",
|
|
|
|
|
APP_COLLAB_RESET_EDITORS_POINTER_DATA:
|
|
|
|
|
"APP_COLLAB_RESET_EDITORS_POINTER_DATA",
|
2021-08-09 06:22:37 +00:00
|
|
|
SET_SEARCH_FILTER_CONTEXT: "SET_SEARCH_FILTER_CONTEXT",
|
|
|
|
|
INSERT_SNIPPET: "INSERT_SNIPPET",
|
|
|
|
|
CANCEL_SNIPPET: "CANCEL_SNIPPET",
|
2021-08-05 06:10:19 +00:00
|
|
|
FETCH_FEATURE_FLAGS_INIT: "FETCH_FEATURE_FLAGS_INIT",
|
|
|
|
|
FETCH_FEATURE_FLAGS_SUCCESS: "FETCH_FEATURE_FLAGS_SUCCESS",
|
2021-07-26 16:44:10 +00:00
|
|
|
BIND_DATA_TO_WIDGET: "BIND_DATA_TO_WIDGET",
|
|
|
|
|
BIND_DATA_ON_CANVAS: "BIND_DATA_ON_CANVAS",
|
2021-06-23 15:42:07 +00:00
|
|
|
MARK_NOTIFICATION_AS_READ_REQUEST: "MARK_NOTIFICATION_AS_READ_REQUEST",
|
|
|
|
|
MARK_NOTIFICATION_AS_READ_SUCCESS: "MARK_NOTIFICATION_AS_READ_SUCCESS",
|
|
|
|
|
FETCH_UNREAD_NOTIFICATIONS_COUNT_REQUEST:
|
|
|
|
|
"FETCH_UNREAD_NOTIFICATIONS_COUNT_REQUEST",
|
|
|
|
|
FETCH_UNREAD_NOTIFICATIONS_COUNT_SUCCESS:
|
|
|
|
|
"FETCH_UNREAD_NOTIFICATIONS_COUNT_SUCCESS",
|
|
|
|
|
RESET_NOTIFICATIONS: "RESET_NOTIFICATIONS",
|
2021-06-09 14:32:17 +00:00
|
|
|
MARK_ALL_NOTIFICATIONS_AS_READ_REQUEST:
|
|
|
|
|
"MARK_ALL_NOTIFICATIONS_AS_READ_REQUEST",
|
|
|
|
|
MARK_ALL_NOTIFICATIONS_AS_READ_SUCCESS:
|
|
|
|
|
"MARK_ALL_NOTIFICATIONS_AS_READ_SUCCESS",
|
|
|
|
|
SET_IS_NOTIFICATIONS_LIST_VISIBLE: "SET_IS_NOTIFICATIONS_LIST_VISIBLE",
|
|
|
|
|
NEW_NOTIFICATION_EVENT: "NEW_NOTIFICATION_EVENT",
|
|
|
|
|
FETCH_NOTIFICATIONS_REQUEST: "FETCH_NOTIFICATIONS_REQUEST",
|
|
|
|
|
FETCH_NOTIFICATIONS_SUCCESS: "FETCH_NOTIFICATIONS_SUCCESS",
|
2021-05-27 06:21:36 +00:00
|
|
|
SET_SHOW_APP_INVITE_USERS_MODAL: "SET_SHOW_APP_INVITE_USERS_MODAL",
|
2021-05-20 12:03:08 +00:00
|
|
|
UPDATE_COMMENT_EVENT: "UPDATE_COMMENT_EVENT",
|
|
|
|
|
ADD_COMMENT_REACTION: "ADD_COMMENT_REACTION",
|
|
|
|
|
REMOVE_COMMENT_REACTION: "REMOVE_COMMENT_REACTION",
|
|
|
|
|
UPLOAD_PROFILE_PHOTO: "UPLOAD_PROFILE_PHOTO",
|
|
|
|
|
REMOVE_PROFILE_PHOTO: "REMOVE_PROFILE_PHOTO",
|
2021-12-02 05:56:41 +00:00
|
|
|
UPDATE_PHOTO_ID: "UPDATE_PHOTO_ID",
|
2021-10-01 16:25:55 +00:00
|
|
|
UPDATE_USERS_COMMENTS_ONBOARDING_STATE:
|
|
|
|
|
"UPDATE_USERS_COMMENTS_ONBOARDING_STATE",
|
2021-05-20 12:03:08 +00:00
|
|
|
HIDE_COMMENTS_INTRO_CAROUSEL: "HIDE_COMMENTS_INTRO_CAROUSEL",
|
|
|
|
|
SHOW_COMMENTS_INTRO_CAROUSEL: "SHOW_COMMENTS_INTRO_CAROUSEL",
|
|
|
|
|
PROCEED_TO_NEXT_TOUR_STEP: "PROCEED_TO_NEXT_TOUR_STEP",
|
|
|
|
|
SET_ACTIVE_TOUR: "SET_ACTIVE_TOUR",
|
|
|
|
|
RESET_ACTIVE_TOUR: "RESET_ACTIVE_TOUR",
|
|
|
|
|
SET_ACTIVE_TOUR_INDEX: "SET_ACTIVE_TOUR_INDEX",
|
|
|
|
|
SET_ARE_COMMENTS_ENABLED: "SET_ARE_COMMENTS_ENABLED",
|
|
|
|
|
DELETE_THREAD_REQUEST: "DELETE_THREAD_REQUEST",
|
|
|
|
|
DELETE_THREAD_SUCCESS: "DELETE_THREAD_SUCCESS",
|
|
|
|
|
EDIT_COMMENT_REQUEST: "EDIT_COMMENT_REQUEST",
|
|
|
|
|
EDIT_COMMENT_SUCCESS: "EDIT_COMMENT_SUCCESS",
|
|
|
|
|
MARK_THREAD_AS_READ_REQUEST: "MARK_THREAD_AS_READ_REQUEST",
|
|
|
|
|
SET_VISIBLE_THREAD: "SET_VISIBLE_THREAD",
|
|
|
|
|
RESET_VISIBLE_THREAD: "RESET_VISIBLE_THREAD",
|
|
|
|
|
SET_APP_COMMENTS_FILTER: "SET_APP_COMMENTS_FILTER",
|
|
|
|
|
SET_SHOULD_SHOW_RESOLVED_COMMENTS: "SET_SHOULD_SHOW_RESOLVED_COMMENTS",
|
Initialise comments (#3328)
* Initial scaffolding for comments CRUD APIs
* add actions
* add assets
* state management for existing comments and creating new
* add ui components
* add overlay comments wrapper to baseWidget
* add toggle comment mode button at editor header
* trigger tests
* Disallow commenting as someone else
* Add applicationId for comments
* lint
* Add overlay blacklist to prevent component interaction while adding comments
* Comment thread style updates
* Placeholder comment context menu
* Controlled comment thread visibility for making new comments visible by default
* Update comment type description
* Reset input on save
* Resolve comment thread button ui
* fix close on esc key, dont create new comment on outside click
* Submit on enter
* add emoji picker
* Attempt at adding a websocket server in Java
* CRUD APIs for comment threads
* Add API for getting all threads in application
* Move types to a separate file
* Initial commit for real time server (RTS)
* Add script to start RTS
* Fix position property
* Use create comment thread API
* Use add comment to thread API
* Add custom cursor
* Dispatch logout init on 401 errors
* Allow CORS for real time connection
* Add more logs to RTS
* Fix construction of MongoClient
* WIP: Real time comments
* Enable comments
* Minor updates
* Read backend API base URL from environment
* Escape to reset comments mode
* Set popover position as auto and boundary as scroll parent
* Disable warning
* Added permissions for comment threads
* Add resolved API for comment threads
* Migration to set commenting permission on existing apps
* Fix updates bringing the RTS down
* Show view latest button, scroll to bottom on creating a new comment
* Cleanup comment reducer
* Move to typescript for RTS
* Add missing server.ts and tsconfig files
* Resolve / unresolve comment
* Scaffold app comments
* Minor fixes: comment on top of all widgets, add toggle button at viewer header
* Reconnect socket on creating a new app, set connected status in store
* Retry socket connection flow
* Integration tests for comments with api mocks using msw
* Fix circular depependency
* rm file
* Minor cleanup and comments
* Minor refactors: move isScrolledToBottom to common hooks, decouple prevent interactions overlay from comments wrapper
* Use policies when pushing updates in RTS
* ENV var to set if comments are enabled
* Fix: check if editor/viewer is initialised before waiting for init action
* Add tests for comments reducer
* Revert "ENV var to set if comments are enabled"
This reverts commit 988efeaa69d378d943a387e1e73510334958adc5.
* Enable comments for users with appsmith email
* lint
* fix
* Try running a socket.io server inside backend
* Update comment reducer tests
* Init mentions within comments
* Fix comment thread updates with email rooms
* Minor fixes
* Refactors / review suggestions
* lint
* increase cache limit for builds
* Comment out tests for feature that's under development
* Add Dockerfile for RTS
* Fix policies missing for first comment in threads
* Use draftJS for comments input with mentions support
* fix fixtures
* Use thread's policies when querying for threads
* Update socket.io to v4
* Add support for richer body with mentions
* Update comment body type to RawDraftContentState
* fix stale method
* Fix mentions search
* Minor cleanups
* Comment context menu and thread UI updates
* revert: Scaffold app comments
* Yarn dependencies
* Delete comment using id api added
* Init app comments
* Add test for creating thread
* Api for delete comment with id
* Test comment creation response and policies
* Copy comment links
* Fix reset editor state
* Delete valid comment testcase added
* Delete comment TC : code refactor
* Don't allow creating comments with an empty body
* Pin comments WIP[]
* Ignore dependency-reduced-pom.xml files from VCS
* Cleanup of some dev-only files, for review
* Delete comment
* Update socket.io to v4 in RTS
* Pin and resolve comment thread object added in commentThread
* Pin and resolve comment thread object added in commentThread
* Update comment thread API
* Added creationTime and updationTime in comment thread response
* Added creationTime and updationTime in comment thread response
* Added human readable id to comment threads, fallback to username for null name in user document
* Refactor
* lint
* fix test, rm duplicate selector
* comment out saga used for dev
* CommentThread viewed status, username fallback for getName=null, username field added in pin & resolve status
* lint
* trigger tests
Co-authored-by: Shrikant Sharat Kandula <shrikant@appsmith.com>
Co-authored-by: Abhijeet <abhi.nagarnaik@gmail.com>
2021-04-29 10:33:51 +00:00
|
|
|
DELETE_COMMENT_REQUEST: "DELETE_COMMENT_REQUEST",
|
|
|
|
|
DELETE_COMMENT_SUCCESS: "DELETE_COMMENT_SUCCESS",
|
|
|
|
|
PIN_COMMENT_THREAD_REQUEST: "PIN_COMMENT_THREAD_REQUEST",
|
|
|
|
|
PIN_COMMENT_THREAD_SUCCESS: "PIN_COMMENT_THREAD_SUCCESS",
|
2021-10-01 16:44:19 +00:00
|
|
|
INIT_APP_LEVEL_SOCKET_CONNECTION: "INIT_APP_LEVEL_SOCKET_CONNECTION",
|
|
|
|
|
RETRY_APP_LEVEL_WEBSOCKET_CONNECTION: "RETRY_APP_LEVEL_WEBSOCKET_CONNECTION",
|
|
|
|
|
INIT_PAGE_LEVEL_SOCKET_CONNECTION: "INIT_PAGE_LEVEL_SOCKET_CONNECTION",
|
|
|
|
|
RETRY_PAGE_LEVEL_WEBSOCKET_CONNECTION:
|
|
|
|
|
"RETRY_PAGE_LEVEL_WEBSOCKET_CONNECTION",
|
|
|
|
|
SET_IS_APP_LEVEL_WEBSOCKET_CONNECTED: "SET_IS_APP_LEVEL_WEBSOCKET_CONNECTED",
|
|
|
|
|
SET_IS_PAGE_LEVEL_WEBSOCKET_CONNECTED:
|
|
|
|
|
"SET_IS_PAGE_LEVEL_WEBSOCKET_CONNECTED",
|
2021-08-27 08:57:18 +00:00
|
|
|
DRAG_COMMENT_THREAD: "DRAG_COMMENT_THREAD",
|
Initialise comments (#3328)
* Initial scaffolding for comments CRUD APIs
* add actions
* add assets
* state management for existing comments and creating new
* add ui components
* add overlay comments wrapper to baseWidget
* add toggle comment mode button at editor header
* trigger tests
* Disallow commenting as someone else
* Add applicationId for comments
* lint
* Add overlay blacklist to prevent component interaction while adding comments
* Comment thread style updates
* Placeholder comment context menu
* Controlled comment thread visibility for making new comments visible by default
* Update comment type description
* Reset input on save
* Resolve comment thread button ui
* fix close on esc key, dont create new comment on outside click
* Submit on enter
* add emoji picker
* Attempt at adding a websocket server in Java
* CRUD APIs for comment threads
* Add API for getting all threads in application
* Move types to a separate file
* Initial commit for real time server (RTS)
* Add script to start RTS
* Fix position property
* Use create comment thread API
* Use add comment to thread API
* Add custom cursor
* Dispatch logout init on 401 errors
* Allow CORS for real time connection
* Add more logs to RTS
* Fix construction of MongoClient
* WIP: Real time comments
* Enable comments
* Minor updates
* Read backend API base URL from environment
* Escape to reset comments mode
* Set popover position as auto and boundary as scroll parent
* Disable warning
* Added permissions for comment threads
* Add resolved API for comment threads
* Migration to set commenting permission on existing apps
* Fix updates bringing the RTS down
* Show view latest button, scroll to bottom on creating a new comment
* Cleanup comment reducer
* Move to typescript for RTS
* Add missing server.ts and tsconfig files
* Resolve / unresolve comment
* Scaffold app comments
* Minor fixes: comment on top of all widgets, add toggle button at viewer header
* Reconnect socket on creating a new app, set connected status in store
* Retry socket connection flow
* Integration tests for comments with api mocks using msw
* Fix circular depependency
* rm file
* Minor cleanup and comments
* Minor refactors: move isScrolledToBottom to common hooks, decouple prevent interactions overlay from comments wrapper
* Use policies when pushing updates in RTS
* ENV var to set if comments are enabled
* Fix: check if editor/viewer is initialised before waiting for init action
* Add tests for comments reducer
* Revert "ENV var to set if comments are enabled"
This reverts commit 988efeaa69d378d943a387e1e73510334958adc5.
* Enable comments for users with appsmith email
* lint
* fix
* Try running a socket.io server inside backend
* Update comment reducer tests
* Init mentions within comments
* Fix comment thread updates with email rooms
* Minor fixes
* Refactors / review suggestions
* lint
* increase cache limit for builds
* Comment out tests for feature that's under development
* Add Dockerfile for RTS
* Fix policies missing for first comment in threads
* Use draftJS for comments input with mentions support
* fix fixtures
* Use thread's policies when querying for threads
* Update socket.io to v4
* Add support for richer body with mentions
* Update comment body type to RawDraftContentState
* fix stale method
* Fix mentions search
* Minor cleanups
* Comment context menu and thread UI updates
* revert: Scaffold app comments
* Yarn dependencies
* Delete comment using id api added
* Init app comments
* Add test for creating thread
* Api for delete comment with id
* Test comment creation response and policies
* Copy comment links
* Fix reset editor state
* Delete valid comment testcase added
* Delete comment TC : code refactor
* Don't allow creating comments with an empty body
* Pin comments WIP[]
* Ignore dependency-reduced-pom.xml files from VCS
* Cleanup of some dev-only files, for review
* Delete comment
* Update socket.io to v4 in RTS
* Pin and resolve comment thread object added in commentThread
* Pin and resolve comment thread object added in commentThread
* Update comment thread API
* Added creationTime and updationTime in comment thread response
* Added creationTime and updationTime in comment thread response
* Added human readable id to comment threads, fallback to username for null name in user document
* Refactor
* lint
* fix test, rm duplicate selector
* comment out saga used for dev
* CommentThread viewed status, username fallback for getName=null, username field added in pin & resolve status
* lint
* trigger tests
Co-authored-by: Shrikant Sharat Kandula <shrikant@appsmith.com>
Co-authored-by: Abhijeet <abhi.nagarnaik@gmail.com>
2021-04-29 10:33:51 +00:00
|
|
|
UPDATE_COMMENT_THREAD_EVENT: "UPDATE_COMMENT_THREAD_EVENT",
|
|
|
|
|
UPDATE_COMMENT_THREAD_SUCCESS: "UPDATE_COMMENT_THREAD_SUCCESS",
|
|
|
|
|
SET_COMMENT_THREAD_RESOLUTION_REQUEST:
|
|
|
|
|
"SET_COMMENT_THREAD_RESOLUTION_REQUEST",
|
|
|
|
|
SET_COMMENT_THREAD_RESOLUTION_SUCCESS:
|
|
|
|
|
"SET_COMMENT_THREAD_RESOLUTION_SUCCESS",
|
|
|
|
|
NEW_COMMENT_EVENT: "NEW_COMMENT_EVENT",
|
|
|
|
|
NEW_COMMENT_THREAD_EVENT: "NEW_COMMENT_THREAD_EVENT",
|
|
|
|
|
FETCH_APPLICATION_COMMENTS_SUCCESS: "FETCH_APPLICATION_COMMENTS_SUCCESS",
|
|
|
|
|
FETCH_APPLICATION_COMMENTS_REQUEST: "FETCH_APPLICATION_COMMENTS_REQUEST",
|
|
|
|
|
UNRESOLVE_COMMENT_THREAD: "UNRESOLVE_COMMENT_THREAD",
|
|
|
|
|
RESOLVE_COMMENT_THREAD: "RESOLVE_COMMENT_THREAD",
|
|
|
|
|
SET_IS_COMMENT_THREAD_VISIBLE: "SET_IS_COMMENT_THREAD_VISIBLE",
|
|
|
|
|
SET_COMMENT_MODE: "SET_COMMENT_MODE",
|
2021-07-26 16:44:10 +00:00
|
|
|
SET_SNIPING_MODE: "SET_SNIPING_MODE",
|
|
|
|
|
RESET_SNIPING_MODE: "RESET_SNIPING_MODE",
|
2021-03-08 08:24:12 +00:00
|
|
|
HANDLE_PATH_UPDATED: "HANDLE_PATH_UPDATED",
|
|
|
|
|
RESET_EDITOR_REQUEST: "RESET_EDITOR_REQUEST",
|
|
|
|
|
RESET_EDITOR_SUCCESS: "RESET_EDITOR_SUCCESS",
|
Initialise comments (#3328)
* Initial scaffolding for comments CRUD APIs
* add actions
* add assets
* state management for existing comments and creating new
* add ui components
* add overlay comments wrapper to baseWidget
* add toggle comment mode button at editor header
* trigger tests
* Disallow commenting as someone else
* Add applicationId for comments
* lint
* Add overlay blacklist to prevent component interaction while adding comments
* Comment thread style updates
* Placeholder comment context menu
* Controlled comment thread visibility for making new comments visible by default
* Update comment type description
* Reset input on save
* Resolve comment thread button ui
* fix close on esc key, dont create new comment on outside click
* Submit on enter
* add emoji picker
* Attempt at adding a websocket server in Java
* CRUD APIs for comment threads
* Add API for getting all threads in application
* Move types to a separate file
* Initial commit for real time server (RTS)
* Add script to start RTS
* Fix position property
* Use create comment thread API
* Use add comment to thread API
* Add custom cursor
* Dispatch logout init on 401 errors
* Allow CORS for real time connection
* Add more logs to RTS
* Fix construction of MongoClient
* WIP: Real time comments
* Enable comments
* Minor updates
* Read backend API base URL from environment
* Escape to reset comments mode
* Set popover position as auto and boundary as scroll parent
* Disable warning
* Added permissions for comment threads
* Add resolved API for comment threads
* Migration to set commenting permission on existing apps
* Fix updates bringing the RTS down
* Show view latest button, scroll to bottom on creating a new comment
* Cleanup comment reducer
* Move to typescript for RTS
* Add missing server.ts and tsconfig files
* Resolve / unresolve comment
* Scaffold app comments
* Minor fixes: comment on top of all widgets, add toggle button at viewer header
* Reconnect socket on creating a new app, set connected status in store
* Retry socket connection flow
* Integration tests for comments with api mocks using msw
* Fix circular depependency
* rm file
* Minor cleanup and comments
* Minor refactors: move isScrolledToBottom to common hooks, decouple prevent interactions overlay from comments wrapper
* Use policies when pushing updates in RTS
* ENV var to set if comments are enabled
* Fix: check if editor/viewer is initialised before waiting for init action
* Add tests for comments reducer
* Revert "ENV var to set if comments are enabled"
This reverts commit 988efeaa69d378d943a387e1e73510334958adc5.
* Enable comments for users with appsmith email
* lint
* fix
* Try running a socket.io server inside backend
* Update comment reducer tests
* Init mentions within comments
* Fix comment thread updates with email rooms
* Minor fixes
* Refactors / review suggestions
* lint
* increase cache limit for builds
* Comment out tests for feature that's under development
* Add Dockerfile for RTS
* Fix policies missing for first comment in threads
* Use draftJS for comments input with mentions support
* fix fixtures
* Use thread's policies when querying for threads
* Update socket.io to v4
* Add support for richer body with mentions
* Update comment body type to RawDraftContentState
* fix stale method
* Fix mentions search
* Minor cleanups
* Comment context menu and thread UI updates
* revert: Scaffold app comments
* Yarn dependencies
* Delete comment using id api added
* Init app comments
* Add test for creating thread
* Api for delete comment with id
* Test comment creation response and policies
* Copy comment links
* Fix reset editor state
* Delete valid comment testcase added
* Delete comment TC : code refactor
* Don't allow creating comments with an empty body
* Pin comments WIP[]
* Ignore dependency-reduced-pom.xml files from VCS
* Cleanup of some dev-only files, for review
* Delete comment
* Update socket.io to v4 in RTS
* Pin and resolve comment thread object added in commentThread
* Pin and resolve comment thread object added in commentThread
* Update comment thread API
* Added creationTime and updationTime in comment thread response
* Added creationTime and updationTime in comment thread response
* Added human readable id to comment threads, fallback to username for null name in user document
* Refactor
* lint
* fix test, rm duplicate selector
* comment out saga used for dev
* CommentThread viewed status, username fallback for getName=null, username field added in pin & resolve status
* lint
* trigger tests
Co-authored-by: Shrikant Sharat Kandula <shrikant@appsmith.com>
Co-authored-by: Abhijeet <abhi.nagarnaik@gmail.com>
2021-04-29 10:33:51 +00:00
|
|
|
ADD_COMMENT_TO_THREAD_SUCCESS: "ADD_COMMENT_TO_THREAD_SUCCESS",
|
|
|
|
|
ADD_COMMENT_TO_THREAD_REQUEST: "ADD_COMMENT_TO_THREAD_REQUEST",
|
|
|
|
|
CREATE_COMMENT_THREAD_REQUEST: "CREATE_COMMENT_THREAD_REQUEST",
|
|
|
|
|
CREATE_COMMENT_THREAD_SUCCESS: "CREATE_COMMENT_THREAD_SUCCESS",
|
2021-07-19 18:14:38 +00:00
|
|
|
UNSUBSCRIBE_COMMENT_THREAD_REQUEST: "UNSUBSCRIBE_COMMENT_THREAD_REQUEST",
|
|
|
|
|
UNSUBSCRIBE_COMMENT_THREAD_SUCCESS: "UNSUBSCRIBE_COMMENT_THREAD_SUCCESS",
|
Initialise comments (#3328)
* Initial scaffolding for comments CRUD APIs
* add actions
* add assets
* state management for existing comments and creating new
* add ui components
* add overlay comments wrapper to baseWidget
* add toggle comment mode button at editor header
* trigger tests
* Disallow commenting as someone else
* Add applicationId for comments
* lint
* Add overlay blacklist to prevent component interaction while adding comments
* Comment thread style updates
* Placeholder comment context menu
* Controlled comment thread visibility for making new comments visible by default
* Update comment type description
* Reset input on save
* Resolve comment thread button ui
* fix close on esc key, dont create new comment on outside click
* Submit on enter
* add emoji picker
* Attempt at adding a websocket server in Java
* CRUD APIs for comment threads
* Add API for getting all threads in application
* Move types to a separate file
* Initial commit for real time server (RTS)
* Add script to start RTS
* Fix position property
* Use create comment thread API
* Use add comment to thread API
* Add custom cursor
* Dispatch logout init on 401 errors
* Allow CORS for real time connection
* Add more logs to RTS
* Fix construction of MongoClient
* WIP: Real time comments
* Enable comments
* Minor updates
* Read backend API base URL from environment
* Escape to reset comments mode
* Set popover position as auto and boundary as scroll parent
* Disable warning
* Added permissions for comment threads
* Add resolved API for comment threads
* Migration to set commenting permission on existing apps
* Fix updates bringing the RTS down
* Show view latest button, scroll to bottom on creating a new comment
* Cleanup comment reducer
* Move to typescript for RTS
* Add missing server.ts and tsconfig files
* Resolve / unresolve comment
* Scaffold app comments
* Minor fixes: comment on top of all widgets, add toggle button at viewer header
* Reconnect socket on creating a new app, set connected status in store
* Retry socket connection flow
* Integration tests for comments with api mocks using msw
* Fix circular depependency
* rm file
* Minor cleanup and comments
* Minor refactors: move isScrolledToBottom to common hooks, decouple prevent interactions overlay from comments wrapper
* Use policies when pushing updates in RTS
* ENV var to set if comments are enabled
* Fix: check if editor/viewer is initialised before waiting for init action
* Add tests for comments reducer
* Revert "ENV var to set if comments are enabled"
This reverts commit 988efeaa69d378d943a387e1e73510334958adc5.
* Enable comments for users with appsmith email
* lint
* fix
* Try running a socket.io server inside backend
* Update comment reducer tests
* Init mentions within comments
* Fix comment thread updates with email rooms
* Minor fixes
* Refactors / review suggestions
* lint
* increase cache limit for builds
* Comment out tests for feature that's under development
* Add Dockerfile for RTS
* Fix policies missing for first comment in threads
* Use draftJS for comments input with mentions support
* fix fixtures
* Use thread's policies when querying for threads
* Update socket.io to v4
* Add support for richer body with mentions
* Update comment body type to RawDraftContentState
* fix stale method
* Fix mentions search
* Minor cleanups
* Comment context menu and thread UI updates
* revert: Scaffold app comments
* Yarn dependencies
* Delete comment using id api added
* Init app comments
* Add test for creating thread
* Api for delete comment with id
* Test comment creation response and policies
* Copy comment links
* Fix reset editor state
* Delete valid comment testcase added
* Delete comment TC : code refactor
* Don't allow creating comments with an empty body
* Pin comments WIP[]
* Ignore dependency-reduced-pom.xml files from VCS
* Cleanup of some dev-only files, for review
* Delete comment
* Update socket.io to v4 in RTS
* Pin and resolve comment thread object added in commentThread
* Pin and resolve comment thread object added in commentThread
* Update comment thread API
* Added creationTime and updationTime in comment thread response
* Added creationTime and updationTime in comment thread response
* Added human readable id to comment threads, fallback to username for null name in user document
* Refactor
* lint
* fix test, rm duplicate selector
* comment out saga used for dev
* CommentThread viewed status, username fallback for getName=null, username field added in pin & resolve status
* lint
* trigger tests
Co-authored-by: Shrikant Sharat Kandula <shrikant@appsmith.com>
Co-authored-by: Abhijeet <abhi.nagarnaik@gmail.com>
2021-04-29 10:33:51 +00:00
|
|
|
REMOVE_UNPUBLISHED_COMMENT_THREAD_REQUEST:
|
|
|
|
|
"REMOVE_UNPUBLISHED_COMMENT_THREAD_REQUEST",
|
|
|
|
|
CREATE_UNPUBLISHED_COMMENT_THREAD_REQUEST:
|
|
|
|
|
"CREATE_UNPUBLISHED_COMMENT_THREAD_REQUEST",
|
|
|
|
|
CREATE_UNPUBLISHED_COMMENT_THREAD_SUCCESS:
|
|
|
|
|
"CREATE_UNPUBLISHED_COMMENT_THREAD_SUCCESS",
|
|
|
|
|
SET_COMMENT_THREADS_SUCCESS: "SET_COMMENT_THREADS_SUCCESS", // todo remove (for dev)
|
|
|
|
|
SET_COMMENT_THREADS_REQUEST: "SET_COMMENT_THREADS_REQUEST", // todo remove (for dev)
|
|
|
|
|
INIT_COMMENT_THREADS: "INIT_COMMENT_THREADS", // todo remove (for dev)
|
2019-11-14 11:17:36 +00:00
|
|
|
INITIALIZE_EDITOR: "INITIALIZE_EDITOR",
|
|
|
|
|
INITIALIZE_EDITOR_SUCCESS: "INITIALIZE_EDITOR_SUCCESS",
|
2019-09-27 16:05:33 +00:00
|
|
|
REPORT_ERROR: "REPORT_ERROR",
|
|
|
|
|
FLUSH_ERRORS: "FLUSH_ERRORS",
|
2020-12-17 07:03:59 +00:00
|
|
|
FLUSH_AND_REDIRECT: "FLUSH_AND_REDIRECT",
|
2021-07-07 03:46:16 +00:00
|
|
|
REDIRECT_TO_NEW_INTEGRATIONS: "REDIRECT_TO_NEW_INTEGRATIONS",
|
2020-12-08 19:13:48 +00:00
|
|
|
SAFE_CRASH_APPSMITH: "SAFE_CRASH_APPSMITH",
|
2021-01-06 11:24:16 +00:00
|
|
|
SAFE_CRASH_APPSMITH_REQUEST: "SAFE_CRASH_APPSMITH_REQUEST",
|
2021-01-25 08:57:26 +00:00
|
|
|
INIT_CANVAS_LAYOUT: "INIT_CANVAS_LAYOUT",
|
2019-09-12 11:19:38 +00:00
|
|
|
FETCH_CANVAS: "FETCH_CANVAS",
|
|
|
|
|
CLEAR_CANVAS: "CLEAR_CANVAS",
|
2019-11-22 14:02:55 +00:00
|
|
|
FETCH_PAGE_INIT: "FETCH_PAGE_INIT",
|
|
|
|
|
FETCH_PAGE_SUCCESS: "FETCH_PAGE_SUCCESS",
|
2019-09-12 11:19:38 +00:00
|
|
|
DROP_WIDGET_CANVAS: "DROP_WIDGET_CANVAS",
|
|
|
|
|
REMOVE_WIDGET_CANVAS: "REMOVE_WIDGET_CANVAS",
|
|
|
|
|
LOAD_WIDGET_PANE: "LOAD_WIDGET_PANE",
|
|
|
|
|
ZOOM_IN_CANVAS: "ZOOM_IN_CANVAS",
|
|
|
|
|
ZOOM_OUT_CANVAS: "ZOOM_OUT_CANVAS",
|
2021-08-24 11:38:20 +00:00
|
|
|
START_CANVAS_SELECTION_FROM_EDITOR: "START_CANVAS_SELECTION_FROM_EDITOR",
|
|
|
|
|
STOP_CANVAS_SELECTION_FROM_EDITOR: "STOP_CANVAS_SELECTION_FROM_EDITOR",
|
2021-06-17 13:26:54 +00:00
|
|
|
START_CANVAS_SELECTION: "START_CANVAS_SELECTION",
|
|
|
|
|
STOP_CANVAS_SELECTION: "STOP_CANVAS_SELECTION",
|
2019-09-12 11:19:38 +00:00
|
|
|
UNDO_CANVAS_ACTION: "UNDO_CANVAS_ACTION",
|
|
|
|
|
REDO_CANVAS_ACTION: "REDO_CANVAS_ACTION",
|
|
|
|
|
LOAD_WIDGET_CONFIG: "LOAD_WIDGET_CONFIG",
|
2019-09-18 10:19:50 +00:00
|
|
|
LOAD_PROPERTY_CONFIG: "LOAD_PROPERTY_CONFIG",
|
2020-09-16 11:50:47 +00:00
|
|
|
UPDATE_APPLICATION: "UPDATE_APPLICATION",
|
2021-03-03 05:26:47 +00:00
|
|
|
UPDATE_APP_LAYOUT: "UPDATE_APP_LAYOUT",
|
2020-09-16 11:50:47 +00:00
|
|
|
UPDATE_APPLICATION_SUCCESS: "UPDATE_APPLICATION_SUCCESS",
|
2019-09-12 11:19:38 +00:00
|
|
|
PUBLISH: "PUBLISH",
|
2021-04-23 13:50:55 +00:00
|
|
|
DEBUGGER_LOG: "DEBUGGER_LOG",
|
|
|
|
|
DEBUGGER_LOG_INIT: "DEBUGGER_LOG_INIT",
|
2021-07-08 05:31:08 +00:00
|
|
|
DEBUGGER_ERROR_ANALYTICS: "DEBUGGER_ERROR_ANALYTICS",
|
2021-08-16 11:03:27 +00:00
|
|
|
DEBUGGER_ADD_ERROR_LOG: "DEBUGGER_ADD_ERROR_LOG",
|
|
|
|
|
DEBUGGER_DELETE_ERROR_LOG: "DEBUGGER_DELETE_ERROR_LOG",
|
|
|
|
|
DEBUGGER_ADD_ERROR_LOG_INIT: "DEBUGGER_ADD_ERROR_LOG_INIT",
|
|
|
|
|
DEBUGGER_DELETE_ERROR_LOG_INIT: "DEBUGGER_DELETE_ERROR_LOG_INIT",
|
2021-04-23 13:50:55 +00:00
|
|
|
CLEAR_DEBUGGER_LOGS: "CLEAR_DEBUGGER_LOGS",
|
|
|
|
|
SHOW_DEBUGGER: "SHOW_DEBUGGER",
|
2021-08-25 04:34:42 +00:00
|
|
|
HIDE_DEBUGGER_ERRORS: "HIDE_DEBUGGER_ERRORS",
|
2021-09-20 11:20:22 +00:00
|
|
|
SET_CURRENT_DEBUGGER_TAB: "SET_CURRENT_DEBUGGER_TAB",
|
2020-09-16 11:50:47 +00:00
|
|
|
SET_THEME: "SET_THEME",
|
2019-09-12 11:19:38 +00:00
|
|
|
FETCH_WIDGET_CARDS: "FETCH_WIDGET_CARDS",
|
2019-09-27 16:05:33 +00:00
|
|
|
FETCH_WIDGET_CARDS_SUCCESS: "FETCH_WIDGET_CARDS_SUCCESS",
|
2019-09-12 11:19:38 +00:00
|
|
|
ADD_PAGE_WIDGET: "ADD_PAGE_WIDGET",
|
2019-09-12 13:44:25 +00:00
|
|
|
REMOVE_PAGE_WIDGET: "REMOVE_PAGE_WIDGET",
|
|
|
|
|
LOAD_API_RESPONSE: "LOAD_API_RESPONSE",
|
2019-09-13 09:56:11 +00:00
|
|
|
LOAD_QUERY_RESPONSE: "LOAD_QUERY_RESPONSE",
|
2021-05-31 15:40:21 +00:00
|
|
|
RUN_ACTION_SHORTCUT_REQUEST: "RUN_ACTION_SHORTCUT_REQUEST",
|
2020-07-03 08:58:58 +00:00
|
|
|
RUN_ACTION_REQUEST: "RUN_ACTION_REQUEST",
|
2021-11-01 04:54:06 +00:00
|
|
|
RUN_ACTION_CANCELLED: "RUN_ACTION_CANCELLED",
|
2020-07-03 08:58:58 +00:00
|
|
|
RUN_ACTION_SUCCESS: "RUN_ACTION_SUCCESS",
|
2021-08-27 09:25:28 +00:00
|
|
|
CLEAR_ACTION_RESPONSE: "CLEAR_ACTION_RESPONSE",
|
2020-05-05 07:50:30 +00:00
|
|
|
INIT_API_PANE: "INIT_API_PANE",
|
|
|
|
|
API_PANE_CHANGE_API: "API_PANE_CHANGE_API",
|
2021-08-27 09:25:28 +00:00
|
|
|
EXECUTE_TRIGGER_REQUEST: "EXECUTE_TRIGGER_REQUEST",
|
2019-09-13 11:59:45 +00:00
|
|
|
LOAD_CANVAS_ACTIONS: "LOAD_CANVAS_ACTIONS",
|
2019-09-17 15:09:55 +00:00
|
|
|
SAVE_PAGE_INIT: "SAVE_PAGE_INIT",
|
|
|
|
|
SAVE_PAGE_SUCCESS: "SAVE_PAGE_SUCCESS",
|
2019-09-19 22:25:37 +00:00
|
|
|
UPDATE_LAYOUT: "UPDATE_LAYOUT",
|
2021-08-12 05:45:38 +00:00
|
|
|
WIDGET_ADD_CHILD: "WIDGET_ADD_CHILD",
|
|
|
|
|
WIDGET_CHILD_ADDED: "WIDGET_CHILD_ADDED",
|
|
|
|
|
WIDGET_REMOVE_CHILD: "WIDGET_REMOVE_CHILD",
|
|
|
|
|
WIDGETS_MOVE: "WIDGETS_MOVE",
|
|
|
|
|
WIDGET_RESIZE: "WIDGET_RESIZE",
|
|
|
|
|
WIDGET_DELETE: "WIDGET_DELETE",
|
|
|
|
|
WIDGET_BULK_DELETE: "WIDGET_BULK_DELETE",
|
|
|
|
|
WIDGET_SINGLE_DELETE: "WIDGET_SINGLE_DELETE",
|
2019-09-18 10:19:50 +00:00
|
|
|
SHOW_PROPERTY_PANE: "SHOW_PROPERTY_PANE",
|
2021-03-03 05:26:47 +00:00
|
|
|
UPDATE_CANVAS_LAYOUT: "UPDATE_CANVAS_LAYOUT",
|
2019-11-06 06:35:15 +00:00
|
|
|
UPDATE_WIDGET_PROPERTY_REQUEST: "UPDATE_WIDGET_PROPERTY_REQUEST",
|
2019-09-18 10:19:50 +00:00
|
|
|
UPDATE_WIDGET_PROPERTY: "UPDATE_WIDGET_PROPERTY",
|
2019-11-06 06:35:15 +00:00
|
|
|
UPDATE_WIDGET_DYNAMIC_PROPERTY: "UPDATE_WIDGET_DYNAMIC_PROPERTY",
|
2021-01-25 08:57:26 +00:00
|
|
|
BATCH_UPDATE_WIDGET_PROPERTY: "BATCH_UPDATE_WIDGET_PROPERTY",
|
2021-09-21 07:55:56 +00:00
|
|
|
BATCH_UPDATE_MULTIPLE_WIDGETS_PROPERTY:
|
|
|
|
|
"BATCH_UPDATE_MULTIPLE_WIDGETS_PROPERTY",
|
2021-01-25 08:57:26 +00:00
|
|
|
DELETE_WIDGET_PROPERTY: "DELETE_WIDGET_PROPERTY",
|
2019-10-21 11:40:24 +00:00
|
|
|
FETCH_PROPERTY_PANE_CONFIGS_INIT: "FETCH_PROPERTY_PANE_CONFIGS_INIT",
|
|
|
|
|
FETCH_PROPERTY_PANE_CONFIGS_SUCCESS: "FETCH_PROPERTY_PANE_CONFIGS_SUCCESS",
|
|
|
|
|
FETCH_CONFIGS_INIT: "FETCH_CONFIGS_INIT",
|
|
|
|
|
ADD_WIDGET_REF: "ADD_WIDGET_REF",
|
2019-10-25 05:35:20 +00:00
|
|
|
CREATE_ACTION_INIT: "CREATE_ACTION_INIT",
|
|
|
|
|
CREATE_ACTION_SUCCESS: "CREATE_ACTION_SUCCESS",
|
2019-10-21 15:12:45 +00:00
|
|
|
FETCH_ACTIONS_INIT: "FETCH_ACTIONS_INIT",
|
|
|
|
|
FETCH_ACTIONS_SUCCESS: "FETCH_ACTIONS_SUCCESS",
|
2019-10-25 05:35:20 +00:00
|
|
|
UPDATE_ACTION_INIT: "UPDATE_ACTION_INIT",
|
|
|
|
|
UPDATE_ACTION_SUCCESS: "UPDATE_ACTION_SUCCESS",
|
|
|
|
|
DELETE_ACTION_INIT: "DELETE_ACTION_INIT",
|
2020-10-12 13:37:18 +00:00
|
|
|
SET_DATASOURCE_EDITOR_MODE: "SET_DATASOURCE_EDITOR_MODE",
|
2019-10-25 05:35:20 +00:00
|
|
|
DELETE_ACTION_SUCCESS: "DELETE_ACTION_SUCCESS",
|
2020-08-27 15:39:16 +00:00
|
|
|
SHOW_RUN_ACTION_CONFIRM_MODAL: "SHOW_RUN_ACTION_CONFIRM_MODAL",
|
|
|
|
|
CANCEL_RUN_ACTION_CONFIRM_MODAL: "CANCEL_RUN_ACTION_CONFIRM_MODAL",
|
|
|
|
|
ACCEPT_RUN_ACTION_CONFIRM_MODAL: "ACCEPT_RUN_ACTION_CONFIRM_MODAL",
|
2020-05-05 07:50:30 +00:00
|
|
|
CREATE_QUERY_INIT: "CREATE_QUERY_INIT",
|
2020-12-30 07:31:20 +00:00
|
|
|
CREATE_ONBOARDING_DBQUERY_SUCCESS: "CREATE_ONBOARDING_DBQUERY_SUCCESS",
|
|
|
|
|
END_ONBOARDING: "END_ONBOARDING",
|
|
|
|
|
SET_CURRENT_STEP: "SET_CURRENT_STEP",
|
2021-02-11 06:36:07 +00:00
|
|
|
SET_ONBOARDING_SUBSTEP: "SET_ONBOARDING_SUBSTEP",
|
2020-12-30 07:31:20 +00:00
|
|
|
SET_ONBOARDING_STATE: "SET_ONBOARDING_STATE",
|
|
|
|
|
NEXT_ONBOARDING_STEP: "NEXT_ONBOARDING_STEP",
|
2021-02-11 06:36:07 +00:00
|
|
|
SHOW_ONBOARDING_HELPER: "SHOW_ONBOARDING_HELPER",
|
|
|
|
|
ONBOARDING_RETURN_HOME: "ONBOARDING_RETURN_HOME",
|
|
|
|
|
SET_HELPER_CONFIG: "SET_HELPER_CONFIG",
|
2020-12-30 07:31:20 +00:00
|
|
|
INCREMENT_STEP: "INCREMENT_STEP",
|
2021-02-11 06:36:07 +00:00
|
|
|
SHOW_ONBOARDING_LOADER: "SHOW_ONBOARDING_LOADER",
|
|
|
|
|
SHOW_END_ONBOARDING_HELPER: "SHOW_END_ONBOARDING_HELPER",
|
|
|
|
|
ONBOARDING_CREATE_QUERY: "ONBOARDING_CREATE_QUERY",
|
|
|
|
|
ONBOARDING_RUN_QUERY: "ONBOARDING_RUN_QUERY",
|
|
|
|
|
ONBOARDING_ADD_TABLE_WIDGET: "ONBOARDING_ADD_TABLE_WIDGET",
|
|
|
|
|
ONBOARDING_ADD_INPUT_WIDGET: "ONBOARDING_ADD_INPUT_WIDGET",
|
|
|
|
|
ONBOARDING_ADD_ONSUBMIT_BINDING: "ONBOARDING_ADD_ONSUBMIT_BINDING",
|
|
|
|
|
ONBOARDING_ADD_TABLEDATA_BINDING: "ONBOARDING_ADD_TABLEDATA_BINDING",
|
|
|
|
|
ONBOARDING_DEPLOY: "ONBOARDING_DEPLOY",
|
|
|
|
|
ONBOARDING_CREATE_APPLICATION: "ONBOARDING_CREATE_APPLICATION",
|
2019-11-07 09:32:38 +00:00
|
|
|
FETCH_DATASOURCES_INIT: "FETCH_DATASOURCES_INIT",
|
|
|
|
|
FETCH_DATASOURCES_SUCCESS: "FETCH_DATASOURCES_SUCCESS",
|
2021-07-07 03:46:16 +00:00
|
|
|
FETCH_MOCK_DATASOURCES_INIT: "FETCH_MOCK_DATASOURCES_INIT",
|
|
|
|
|
FETCH_MOCK_DATASOURCES_SUCCESS: "FETCH_MOCK_DATASOURCES_SUCCESS",
|
|
|
|
|
ADD_MOCK_DATASOURCES_INIT: "ADD_MOCK_DATASOURCES_INIT",
|
|
|
|
|
ADD_MOCK_DATASOURCES_SUCCESS: "ADD_MOCK_DATASOURCES_SUCCESS",
|
2020-08-26 05:24:44 +00:00
|
|
|
SAVE_DATASOURCE_NAME: "SAVE_DATASOURCE_NAME",
|
|
|
|
|
SAVE_DATASOURCE_NAME_SUCCESS: "SAVE_DATASOURCE_NAME_SUCCESS",
|
2019-11-07 09:32:38 +00:00
|
|
|
CREATE_DATASOURCE_INIT: "CREATE_DATASOURCE_INIT",
|
|
|
|
|
CREATE_DATASOURCE_SUCCESS: "CREATE_DATASOURCE_SUCCESS",
|
2020-05-07 04:44:52 +00:00
|
|
|
CREATE_DATASOURCE_FROM_FORM_INIT: "CREATE_DATASOURCE_FROM_FORM_INIT",
|
2020-04-28 06:52:53 +00:00
|
|
|
UPDATE_DATASOURCE_INIT: "UPDATE_DATASOURCE_INIT",
|
|
|
|
|
UPDATE_DATASOURCE_SUCCESS: "UPDATE_DATASOURCE_SUCCESS",
|
2020-05-19 06:10:59 +00:00
|
|
|
CHANGE_DATASOURCE: "CHANGE_DATASOURCE",
|
2020-09-21 09:11:42 +00:00
|
|
|
FETCH_DATASOURCE_STRUCTURE_INIT: "FETCH_DATASOURCE_STRUCTURE_INIT",
|
|
|
|
|
FETCH_DATASOURCE_STRUCTURE_SUCCESS: "FETCH_DATASOURCE_STRUCTURE_SUCCESS",
|
2020-09-29 04:17:25 +00:00
|
|
|
REFRESH_DATASOURCE_STRUCTURE_INIT: "REFRESH_DATASOURCE_STRUCTURE_INIT",
|
|
|
|
|
REFRESH_DATASOURCE_STRUCTURE_SUCCESS: "REFRESH_DATASOURCE_STRUCTURE_SUCCESS",
|
2020-10-09 13:24:50 +00:00
|
|
|
EXPAND_DATASOURCE_ENTITY: "EXPAND_DATASOURCE_ENTITY",
|
2020-04-28 06:52:53 +00:00
|
|
|
TEST_DATASOURCE_INIT: "TEST_DATASOURCE_INIT",
|
|
|
|
|
TEST_DATASOURCE_SUCCESS: "TEST_DATASOURCE_SUCCESS",
|
2020-05-19 06:10:59 +00:00
|
|
|
DELETE_DATASOURCE_DRAFT: "DELETE_DATASOURCE_DRAFT",
|
|
|
|
|
UPDATE_DATASOURCE_DRAFT: "UPDATE_DATASOURCE_DRAFT",
|
2020-12-30 07:31:20 +00:00
|
|
|
SHOW_ONBOARDING_INDICATOR: "SHOW_ONBOARDING_INDICATOR",
|
2021-02-11 06:36:07 +00:00
|
|
|
SHOW_ONBOARDING_WELCOME_HELPER: "SHOW_ONBOARDING_WELCOME_HELPER",
|
2020-12-30 07:31:20 +00:00
|
|
|
CREATE_ONBOARDING_DBQUERY_INIT: "CREATE_ONBOARDING_DBQUERY_INIT",
|
|
|
|
|
ADD_WIDGET_COMPLETE: "ADD_WIDGET_COMPLETE",
|
|
|
|
|
LISTEN_FOR_ADD_WIDGET: "LISTEN_FOR_ADD_WIDGET",
|
|
|
|
|
LISTEN_FOR_CREATE_ACTION: "LISTEN_FOR_CREATE_ACTION",
|
|
|
|
|
LISTEN_FOR_WIDGET_UNSELECTION: "LISTEN_FOR_WIDGET_UNSELECTION",
|
|
|
|
|
LISTEN_FOR_DEPLOY: "LISTEN_FOR_DEPLOY",
|
|
|
|
|
LISTEN_FOR_TABLE_WIDGET_BINDING: "LISTEN_FOR_TABLE_WIDGET_BINDING",
|
2021-02-11 06:36:07 +00:00
|
|
|
LISTEN_ADD_INPUT_WIDGET: "LISTEN_ADD_INPUT_WIDGET",
|
2019-10-24 07:03:59 +00:00
|
|
|
FETCH_PUBLISHED_PAGE_INIT: "FETCH_PUBLISHED_PAGE_INIT",
|
|
|
|
|
FETCH_PUBLISHED_PAGE_SUCCESS: "FETCH_PUBLISHED_PAGE_SUCCESS",
|
2021-02-11 12:28:06 +00:00
|
|
|
REDIRECT_AUTHORIZATION_CODE: "REDIRECT_AUTHORIZATION_CODE",
|
2021-04-22 03:30:09 +00:00
|
|
|
REDIRECT_WINDOW_LOCATION: "REDIRECT_WINDOW_LOCATION",
|
|
|
|
|
HISTORY_PUSH: "HISTORY_PUSH",
|
2020-04-29 10:03:56 +00:00
|
|
|
DELETE_DATASOURCE_INIT: "DELETE_DATASOURCE_INIT",
|
|
|
|
|
DELETE_DATASOURCE_SUCCESS: "DELETE_DATASOURCE_SUCCESS",
|
2020-06-03 05:40:48 +00:00
|
|
|
STORE_AS_DATASOURCE_INIT: "STORE_AS_DATASOURCE_INIT",
|
|
|
|
|
STORE_AS_DATASOURCE_UPDATE: "STORE_AS_DATASOURCE_UPDATE",
|
|
|
|
|
STORE_AS_DATASOURCE_COMPLETE: "STORE_AS_DATASOURCE_COMPLETE",
|
2019-10-24 07:03:59 +00:00
|
|
|
PUBLISH_APPLICATION_INIT: "PUBLISH_APPLICATION_INIT",
|
|
|
|
|
PUBLISH_APPLICATION_SUCCESS: "PUBLISH_APPLICATION_SUCCESS",
|
2020-07-15 09:47:39 +00:00
|
|
|
CHANGE_APPVIEW_ACCESS_INIT: "CHANGE_APPVIEW_ACCESS_INIT",
|
|
|
|
|
CHANGE_APPVIEW_ACCESS_SUCCESS: "CHANGE_APPVIEW_ACCESS_SUCCESS",
|
2019-10-31 08:36:04 +00:00
|
|
|
CREATE_PAGE_INIT: "CREATE_PAGE_INIT",
|
|
|
|
|
CREATE_PAGE_SUCCESS: "CREATE_PAGE_SUCCESS",
|
|
|
|
|
FETCH_PAGE_LIST_INIT: "FETCH_PAGE_LIST_INIT",
|
|
|
|
|
FETCH_PAGE_LIST_SUCCESS: "FETCH_PAGE_LIST_SUCCESS",
|
|
|
|
|
INITIALIZE_PAGE_VIEWER: "INITIALIZE_PAGE_VIEWER",
|
2020-01-24 09:54:40 +00:00
|
|
|
INITIALIZE_PAGE_VIEWER_SUCCESS: "INITIALIZE_PAGE_VIEWER_SUCCESS",
|
2020-03-06 04:59:24 +00:00
|
|
|
FETCH_APPLICATION_INIT: "FETCH_APPLICATION_INIT",
|
2020-07-15 13:01:35 +00:00
|
|
|
FETCH_APPLICATION_SUCCESS: "FETCH_APPLICATION_SUCCESS",
|
2021-11-05 07:23:46 +00:00
|
|
|
INVITED_USERS_TO_ORGANIZATION: "INVITED_USERS_TO_ORGANIZATION",
|
2019-11-07 04:59:40 +00:00
|
|
|
CREATE_APPLICATION_INIT: "CREATE_APPLICATION_INIT",
|
|
|
|
|
CREATE_APPLICATION_SUCCESS: "CREATE_APPLICATION_SUCCESS",
|
2019-11-20 08:10:01 +00:00
|
|
|
UPDATE_WIDGET_PROPERTY_VALIDATION: "UPDATE_WIDGET_PROPERTY_VALIDATION",
|
2019-11-13 07:00:25 +00:00
|
|
|
HIDE_PROPERTY_PANE: "HIDE_PROPERTY_PANE",
|
2020-04-28 06:52:53 +00:00
|
|
|
INIT_DATASOURCE_PANE: "INIT_DATASOURCE_PANE",
|
2020-05-05 07:50:30 +00:00
|
|
|
INIT_QUERY_PANE: "INIT_QUERY_PANE",
|
|
|
|
|
QUERY_PANE_CHANGE: "QUERY_PANE_CHANGE",
|
2019-11-25 09:15:11 +00:00
|
|
|
UPDATE_ROUTES_PARAMS: "UPDATE_ROUTES_PARAMS",
|
2020-05-07 07:56:37 +00:00
|
|
|
SET_EXTRA_FORMDATA: "SET_EXTRA_FORMDATA",
|
2019-12-16 08:49:10 +00:00
|
|
|
PERSIST_USER_SESSION: "PERSIST_USER_SESSION",
|
|
|
|
|
LOGIN_USER_INIT: "LOGIN_USER_INIT",
|
|
|
|
|
LOGIN_USER_SUCCESS: "LOGIN_USER_SUCCESS",
|
|
|
|
|
CREATE_USER_INIT: "CREATE_USER_INIT",
|
|
|
|
|
CREATE_USER_SUCCESS: "CREATE_USER_SUCCESS",
|
|
|
|
|
RESET_USER_PASSWORD_INIT: "RESET_USER_PASSWORD_INIT",
|
|
|
|
|
RESET_USER_PASSWORD_SUCCESS: "RESET_USER_PASSWORD_SUCCESS",
|
2019-11-29 05:22:49 +00:00
|
|
|
FETCH_PLUGINS_REQUEST: "FETCH_PLUGINS_REQUEST",
|
|
|
|
|
FETCH_PLUGINS_SUCCESS: "FETCH_PLUGINS_SUCCESS",
|
2021-03-30 05:29:03 +00:00
|
|
|
FETCH_PLUGIN_FORM_CONFIGS_REQUEST: "FETCH_PLUGIN_FORM_CONFIGS_REQUEST",
|
|
|
|
|
FETCH_PLUGIN_FORM_CONFIGS_SUCCESS: "FETCH_PLUGIN_FORM_CONFIGS_SUCCESS",
|
2020-04-29 09:23:23 +00:00
|
|
|
FETCH_PLUGIN_FORM_SUCCESS: "FETCH_PLUGIN_FORM_SUCCESS",
|
2019-12-23 12:16:33 +00:00
|
|
|
INVITE_USERS_TO_ORG_INIT: "INVITE_USERS_TO_ORG_INIT",
|
|
|
|
|
INVITE_USERS_TO_ORG_SUCCESS: "INVITE_USERS_TO_ORG_SUCCESS",
|
2019-12-16 08:49:10 +00:00
|
|
|
FORGOT_PASSWORD_INIT: "FORGOT_PASSWORD_INIT",
|
|
|
|
|
FORGOT_PASSWORD_SUCCESS: "FORGOT_PASSWORD_SUCCESS",
|
|
|
|
|
RESET_PASSWORD_VERIFY_TOKEN_SUCCESS: "RESET_PASSWORD_VERIFY_TOKEN_SUCCESS",
|
|
|
|
|
RESET_PASSWORD_VERIFY_TOKEN_INIT: "RESET_PASSWORD_VERIFY_TOKEN_INIT",
|
2019-12-11 15:24:27 +00:00
|
|
|
EXECUTE_PAGE_LOAD_ACTIONS: "EXECUTE_PAGE_LOAD_ACTIONS",
|
2019-12-23 12:16:33 +00:00
|
|
|
SWITCH_ORGANIZATION_INIT: "SWITCH_ORGANIZATION_INIT",
|
|
|
|
|
SWITCH_ORGANIZATION_SUCCESS: "SWITCH_ORGANIZATION_SUCCESS",
|
|
|
|
|
FETCH_ORG_ROLES_INIT: "FETCH_ORG_ROLES_INIT",
|
|
|
|
|
FETCH_ORG_ROLES_SUCCESS: "FETCH_ORG_ROLES_SUCCESS",
|
|
|
|
|
FETCH_ORG_INIT: "FETCH_ORG_INIT",
|
|
|
|
|
FETCH_ORG_SUCCESS: "FETCH_ORG_SUCCESS",
|
|
|
|
|
FETCH_ORGS_SUCCESS: "FETCH_ORGS_SUCCES",
|
|
|
|
|
FETCH_ORGS_INIT: "FETCH_ORGS_INIT",
|
|
|
|
|
SAVE_ORG_INIT: "SAVE_ORG_INIT",
|
2020-08-28 18:51:16 +00:00
|
|
|
SAVE_ORG_SUCCESS: "SAVE_ORG_SUCCESS",
|
2020-12-01 22:01:27 +00:00
|
|
|
UPLOAD_ORG_LOGO: "UPLOAD_ORG_LOGO",
|
|
|
|
|
REMOVE_ORG_LOGO: "REMOVE_ORG_LOGO",
|
2020-11-25 12:24:14 +00:00
|
|
|
SAVING_ORG_INFO: "SAVING_ORG_INFO",
|
2021-07-07 12:47:01 +00:00
|
|
|
SET_LAST_UPDATED_TIME: "SET_LAST_UPDATED_TIME",
|
2020-08-28 18:51:16 +00:00
|
|
|
SET_CURRENT_ORG: "SET_CURRENT_ORG",
|
2020-06-17 10:19:56 +00:00
|
|
|
SET_CURRENT_ORG_ID: "SET_CURRENT_ORG_ID",
|
2020-07-13 13:54:26 +00:00
|
|
|
FETCH_CURRENT_ORG: "FETCH_CURRENT_ORG",
|
2020-04-28 06:52:53 +00:00
|
|
|
STORE_DATASOURCE_REFS: "STORE_DATASOURCE_REFS",
|
|
|
|
|
UPDATE_DATASOURCE_REFS: "UPDATE_DATASOURCE_REFS",
|
2019-12-23 12:16:33 +00:00
|
|
|
FETCH_USER_INIT: "FETCH_USER_INIT",
|
2021-03-29 15:47:22 +00:00
|
|
|
PROP_PANE_MOVED: "PROP_PANE_MOVED",
|
2019-12-23 12:16:33 +00:00
|
|
|
FETCH_USER_SUCCESS: "FETCH_USER_SUCCESS",
|
|
|
|
|
SET_CURRENT_USER_INIT: "SET_CURRENT_USER_INIT",
|
|
|
|
|
SET_CURRENT_USER_SUCCESS: "SET_CURRENT_USER_SUCCESS",
|
2020-01-03 08:49:47 +00:00
|
|
|
LOGOUT_USER_INIT: "LOGOUT_USER_INIT",
|
|
|
|
|
LOGOUT_USER_SUCCESS: "LOGOUT_USER_SUCCESS",
|
2020-01-06 09:07:30 +00:00
|
|
|
VERIFY_INVITE_INIT: "VERIFY_INVITE_INIT",
|
|
|
|
|
VERIFY_INVITE_SUCCESS: "VERIFY_INVITE_SUCCESS",
|
|
|
|
|
INVITED_USER_SIGNUP_SUCCESS: "INVITED_USER_SIGNUP_SUCCESS",
|
|
|
|
|
INVITED_USER_SIGNUP_INIT: "INVITED_USER_SIGNUP_INIT",
|
2020-01-09 11:39:26 +00:00
|
|
|
DISABLE_WIDGET_DRAG: "DISABLE_WIDGET_DRAG",
|
2021-06-17 13:26:54 +00:00
|
|
|
SELECT_WIDGET_INIT: "SELECT_WIDGET_INIT",
|
|
|
|
|
SHIFT_SELECT_WIDGET_INIT: "SHIFT_SELECT_WIDGET_INIT",
|
2020-01-20 09:00:37 +00:00
|
|
|
SELECT_WIDGET: "SELECT_WIDGET",
|
2021-05-18 18:29:39 +00:00
|
|
|
SELECT_MULTIPLE_WIDGETS: "SELECT_MULTIPLE_WIDGETS",
|
|
|
|
|
SELECT_MULTIPLE_WIDGETS_INIT: "SELECT_MULTIPLE_WIDGETS_INIT",
|
2021-08-16 09:24:42 +00:00
|
|
|
DESELECT_MULTIPLE_WIDGETS_INIT: "DESELECT_MULTIPLE_WIDGETS_INIT",
|
2021-06-28 07:11:47 +00:00
|
|
|
SELECT_ALL_WIDGETS_IN_CANVAS_INIT: "SELECT_ALL_WIDGETS_IN_CANVAS_INIT",
|
2021-06-17 13:26:54 +00:00
|
|
|
DESELECT_WIDGETS: "DESELECT_WIDGETS",
|
|
|
|
|
SELECT_WIDGETS: "SELECT_WIDGETS",
|
2020-01-20 09:00:37 +00:00
|
|
|
FOCUS_WIDGET: "FOCUS_WIDGET",
|
|
|
|
|
SET_WIDGET_DRAGGING: "SET_WIDGET_DRAGGING",
|
2021-08-12 05:45:38 +00:00
|
|
|
SET_DRAGGING_CANVAS: "SET_DRAGGING_CANVAS",
|
|
|
|
|
SET_NEW_WIDGET_DRAGGING: "SET_NEW_WIDGET_DRAGGING",
|
2020-01-20 09:00:37 +00:00
|
|
|
SET_WIDGET_RESIZING: "SET_WIDGET_RESIZING",
|
2021-07-26 16:44:10 +00:00
|
|
|
ADD_SUGGESTED_WIDGET: "ADD_SUGGESTED_WIDGET",
|
2020-01-20 08:07:00 +00:00
|
|
|
SEARCH_APPLICATIONS: "SEARCH_APPLICATIONS",
|
2020-01-27 08:24:58 +00:00
|
|
|
UPDATE_PAGE_INIT: "UPDATE_PAGE_INIT",
|
|
|
|
|
UPDATE_PAGE_SUCCESS: "UPDATE_PAGE_SUCCESS",
|
2020-01-24 09:54:40 +00:00
|
|
|
MOVE_ACTION_INIT: "MOVE_ACTION_INIT",
|
|
|
|
|
MOVE_ACTION_SUCCESS: "MOVE_ACTION_SUCCESS",
|
|
|
|
|
COPY_ACTION_INIT: "COPY_ACTION_INIT",
|
|
|
|
|
COPY_ACTION_SUCCESS: "COPY_ACTION_SUCCESS",
|
2020-01-27 08:24:58 +00:00
|
|
|
DELETE_APPLICATION_INIT: "DELETE_APPLICATION_INIT",
|
|
|
|
|
DELETE_APPLICATION_SUCCESS: "DELETE_APPLICATION_SUCCESS",
|
2020-09-01 07:16:54 +00:00
|
|
|
DUPLICATE_APPLICATION_INIT: "DUPLICATE_APPLICATION_INIT",
|
|
|
|
|
DUPLICATE_APPLICATION_SUCCESS: "DUPLICATE_APPLICATION_SUCCESS",
|
2020-01-27 08:24:58 +00:00
|
|
|
DELETE_PAGE_INIT: "DELETE_PAGE_INIT",
|
|
|
|
|
DELETE_PAGE_SUCCESS: "DELETE_PAGE_SUCCESS",
|
2020-08-22 03:10:22 +00:00
|
|
|
CLONE_PAGE_INIT: "CLONE_PAGE_INIT",
|
|
|
|
|
CLONE_PAGE_SUCCESS: "CLONE_PAGE_SUCCESS",
|
2020-01-27 08:24:58 +00:00
|
|
|
SET_DEFAULT_APPLICATION_PAGE_INIT: "SET_DEFAULT_APPLICATION_PAGE_INIT",
|
2020-02-26 12:44:56 +00:00
|
|
|
SET_DEFAULT_APPLICATION_PAGE_SUCCESS: "SET_DEFAULT_APPLICATION_PAGE_SUCCESS",
|
2020-02-03 10:37:03 +00:00
|
|
|
CREATE_ORGANIZATION_INIT: "CREATE_ORGANIZATION_INIT",
|
|
|
|
|
CREATE_ORGANIZATION_SUCCESS: "CREATE_ORGANIZATION_SUCCESS",
|
|
|
|
|
ADD_USER_TO_ORG_INIT: "ADD_USER_TO_ORG_INIT",
|
|
|
|
|
ADD_USER_TO_ORG_SUCCESS: "ADD_USER_TO_ORG_ERROR",
|
2020-02-07 02:32:52 +00:00
|
|
|
SET_META_PROP: "SET_META_PROP",
|
2020-03-06 09:45:21 +00:00
|
|
|
RESET_CHILDREN_WIDGET_META: "RESET_CHILDREN_WIDGET_META",
|
|
|
|
|
RESET_WIDGET_META: "RESET_WIDGET_META",
|
2020-02-21 12:16:49 +00:00
|
|
|
UPDATE_WIDGET_NAME_INIT: "UPDATE_WIDGET_NAME_INIT",
|
|
|
|
|
UPDATE_WIDGET_NAME_SUCCESS: "UPDATE_WIDGET_NAME_SUCCESS",
|
|
|
|
|
FETCH_ACTIONS_FOR_PAGE_INIT: "FETCH_ACTIONS_FOR_PAGE_INIT",
|
|
|
|
|
FETCH_ACTIONS_FOR_PAGE_SUCCESS: "FETCH_ACTIONS_FOR_PAGE_SUCCESS",
|
2021-08-27 09:25:28 +00:00
|
|
|
EXECUTE_PLUGIN_ACTION_REQUEST: "EXECUTE_PLUGIN_ACTION_REQUEST",
|
|
|
|
|
EXECUTE_PLUGIN_ACTION_SUCCESS: "EXECUTE_PLUGIN_ACTION_SUCCESS",
|
2020-04-14 12:34:14 +00:00
|
|
|
FETCH_IMPORTED_COLLECTIONS_INIT: "FETCH_IMPORTED_COLLECTIONS_INIT",
|
|
|
|
|
FETCH_IMPORTED_COLLECTIONS_SUCCESS: "FETCH_IMPORTED_COLLECTIONS_SUCCESS",
|
2020-04-29 09:06:30 +00:00
|
|
|
SEARCH_APIORPROVIDERS_INIT: "SEARCH_APIORPROVIDERS_INIT",
|
|
|
|
|
SEARCH_APIORPROVIDERS_SUCCESS: "SEARCH_APIORPROVIDERS_SUCCESS",
|
2020-04-14 12:34:14 +00:00
|
|
|
FETCH_PROVIDERS_INIT: "FETCH_PROVIDERS_INIT",
|
|
|
|
|
FETCH_PROVIDERS_SUCCESS: "FETCH_PROVIDERS_SUCCESS",
|
|
|
|
|
SUBMIT_CURL_FORM_INIT: "SUBMIT_CURL_FORM_INIT",
|
|
|
|
|
SUBMIT_CURL_FORM_SUCCESS: "SUBMIT_CURL_FORM_SUCCESS",
|
2020-02-26 12:44:56 +00:00
|
|
|
SET_WIDGET_DYNAMIC_PROPERTY: "SET_WIDGET_DYNAMIC_PROPERTY",
|
2020-04-14 12:34:14 +00:00
|
|
|
FETCH_PROVIDER_TEMPLATES_INIT: "FETCH_PROVIDER_TEMPLATES_INIT",
|
|
|
|
|
FETCH_PROVIDER_TEMPLATES_SUCCESS: "FETCH_PROVIDER_TEMPLATES_SUCCESS",
|
|
|
|
|
ADD_API_TO_PAGE_INIT: "ADD_API_TO_PAGE_INIT",
|
|
|
|
|
ADD_API_TO_PAGE_SUCCESS: "ADD_API_TO_PAGE_SUCCESS",
|
2020-05-05 07:50:30 +00:00
|
|
|
CLEAR_PREVIOUSLY_EXECUTED_QUERY: "CLEAR_PREVIOUSLY_EXECUTED_QUERY",
|
2020-04-14 12:34:14 +00:00
|
|
|
FETCH_PROVIDERS_CATEGORIES_INIT: "FETCH_PROVIDERS_CATEGORIES_INIT",
|
|
|
|
|
FETCH_PROVIDERS_CATEGORIES_SUCCESS: "FETCH_PROVIDERS_CATEGORIES_SUCCESS",
|
|
|
|
|
FETCH_PROVIDERS_WITH_CATEGORY_INIT: "FETCH_PROVIDERS_WITH_CATEGORY_INIT",
|
|
|
|
|
FETCH_PROVIDERS_WITH_CATEGORY_SUCCESS:
|
|
|
|
|
"FETCH_PROVIDERS_WITH_CATEGORY_SUCCESS",
|
2020-03-27 09:02:11 +00:00
|
|
|
SHOW_MODAL: "SHOW_MODAL",
|
|
|
|
|
SHOW_MODAL_BY_NAME: "SHOW_MODAL_BY_NAME",
|
|
|
|
|
CLOSE_MODAL: "CLOSE_MODAL",
|
|
|
|
|
CREATE_MODAL_INIT: "CREATE_MODAL_INIT",
|
|
|
|
|
CREATE_MODAL_SUCCESS: "CREATE_MODAL_SUCCESS",
|
|
|
|
|
UPDATE_CANVAS_SIZE: "UPDATE_CANVAS_SIZE",
|
2020-04-29 09:41:30 +00:00
|
|
|
SWITCH_CURRENT_PAGE_ID: "SWITCH_CURRENT_PAGE_ID",
|
2020-04-14 12:34:14 +00:00
|
|
|
CLEAR_PROVIDERS: "CLEAR_PROVIDERS",
|
2020-04-13 08:24:13 +00:00
|
|
|
BATCHED_UPDATE: "BATCHED_UPDATE",
|
|
|
|
|
EXECUTE_BATCH: "EXECUTE_BATCH",
|
2020-05-05 12:16:51 +00:00
|
|
|
FETCH_ALL_PUBLISHED_PAGES: "FETCH_ALL_PUBLISHED_PAGES",
|
2020-04-20 08:26:19 +00:00
|
|
|
CREATE_NEW_API_ACTION: "CREATE_NEW_API_ACTION",
|
2020-05-28 10:12:02 +00:00
|
|
|
CREATE_NEW_QUERY_ACTION: "CREATE_NEW_QUERY_ACTION",
|
2020-04-28 10:47:59 +00:00
|
|
|
SET_CURRENT_CATEGORY: "SET_CURRENT_CATEGORY",
|
|
|
|
|
SET_LAST_USED_EDITOR_PAGE: "SET_LAST_USED_EDITOR_PAGE",
|
|
|
|
|
SET_LAST_SELECTED_PAGE_PAGE: "SET_LAST_SELECTED_PAGE_PAGE",
|
|
|
|
|
FETCH_PROVIDER_DETAILS_BY_PROVIDER_ID_INIT:
|
|
|
|
|
"FETCH_PROVIDER_DETAILS_BY_PROVIDER_ID_INIT",
|
|
|
|
|
FETCH_PROVIDER_DETAILS_BY_PROVIDER_ID_SUCCESS:
|
|
|
|
|
"FETCH_PROVIDER_DETAILS_BY_PROVIDER_ID_SUCCESS",
|
2020-05-07 11:00:26 +00:00
|
|
|
SET_PROVIDERS_LENGTH: "SET_PROVIDERS_LENGTH",
|
2020-06-17 10:19:56 +00:00
|
|
|
GET_ALL_APPLICATION_INIT: "GET_ALL_APPLICATION_INIT",
|
|
|
|
|
FETCH_USER_APPLICATIONS_ORGS_SUCCESS: "FETCH_USER_APPLICATIONS_ORGS_SUCCESS",
|
|
|
|
|
FETCH_USER_DETAILS_SUCCESS: "FETCH_USER_DETAILS_SUCCESS",
|
|
|
|
|
FETCH_ALL_USERS_SUCCESS: "FETCH_ALL_USERS_SUCCESS",
|
|
|
|
|
FETCH_ALL_USERS_INIT: "FETCH_ALL_USERS_INIT",
|
|
|
|
|
FETCH_ALL_ROLES_SUCCESS: "FETCH_ALL_ROLES_SUCCESS",
|
|
|
|
|
FETCH_ALL_ROLES_INIT: "FETCH_ALL_ROLES_INIT",
|
|
|
|
|
DELETE_ORG_USER_INIT: "DELETE_ORG_USER_INIT",
|
|
|
|
|
DELETE_ORG_USER_SUCCESS: "DELETE_ORG_USER_SUCCESS",
|
2021-06-02 09:56:22 +00:00
|
|
|
LEAVE_ORG_INIT: "LEAVE_ORG_INIT",
|
2020-06-17 10:19:56 +00:00
|
|
|
CHANGE_ORG_USER_ROLE_INIT: "CHANGE_ORG_USER_ROLE_INIT",
|
|
|
|
|
CHANGE_ORG_USER_ROLE_SUCCESS: "CHANGE_ORG_USER_ROLE_SUCCESS",
|
2021-03-04 09:37:02 +00:00
|
|
|
UPDATE_USER_DETAILS_INIT: "UPDATE_USER_DETAILS_INIT",
|
|
|
|
|
UPDATE_USER_DETAILS_SUCCESS: "UPDATE_USER_DETAILS_SUCCESS",
|
2020-05-28 18:10:26 +00:00
|
|
|
SET_DEFAULT_REFINEMENT: "SET_DEFAULT_REFINEMENT",
|
|
|
|
|
SET_HELP_MODAL_OPEN: "SET_HELP_MODAL_OPEN",
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
SAVE_ACTION_NAME_INIT: "SAVE_ACTION_NAME_INIT",
|
|
|
|
|
SAVE_ACTION_NAME_SUCCESS: "SAVE_ACTION_NAME_SUCCESS",
|
2020-06-16 10:23:19 +00:00
|
|
|
UPDATE_API_NAME_DRAFT: "UPDATE_API_NAME_DRAFT",
|
2020-07-03 08:58:58 +00:00
|
|
|
SET_ACTION_PROPERTY: "SET_ACTION_PROPERTY",
|
|
|
|
|
UPDATE_ACTION_PROPERTY: "UPDATE_ACTION_PROPERTY",
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
SWITCH_DATASOURCE: "SWITCH_DATASOURCE",
|
|
|
|
|
INIT_EXPLORER_ENTITY_NAME_EDIT: "INIT_EXPLORER_ENTITY_NAME_EDIT",
|
2020-07-15 13:01:35 +00:00
|
|
|
FETCH_ACTIONS_VIEW_MODE_INIT: "FETCH_ACTIONS_VIEW_MODE_INIT",
|
|
|
|
|
FETCH_ACTIONS_VIEW_MODE_SUCCESS: "FETCH_ACTIONS_VIEW_MODE_SUCCESS",
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
END_EXPLORER_ENTITY_NAME_EDIT: "END_EXPLORER_ENTITY_NAME_EDIT",
|
|
|
|
|
POPULATE_PAGEDSLS_INIT: "POPULATE_PAGEDSLS_INIT",
|
|
|
|
|
POPULATE_PAGEDSLS_SUCCESS: "POPULATE_PAGEDSLS_SUCCESS",
|
2020-11-03 13:05:40 +00:00
|
|
|
FETCH_PAGE_DSLS_SUCCESS: "FETCH_PAGE_DSLS_SUCCESS",
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
FETCH_PAGE_DSL_SUCCESS: "FETCH_PAGE_DSL_SUCCESS",
|
2020-08-07 14:24:26 +00:00
|
|
|
SET_URL_DATA: "SET_URL_DATA",
|
2020-08-14 07:43:01 +00:00
|
|
|
SET_APP_MODE: "SET_APP_MODE",
|
2020-08-14 07:18:30 +00:00
|
|
|
TOGGLE_PROPERTY_PANE_WIDGET_NAME_EDIT:
|
|
|
|
|
"TOGGLE_PROPERTY_PANE_WIDGET_NAME_EDIT",
|
2021-03-24 05:09:47 +00:00
|
|
|
UPDATE_APP_PERSISTENT_STORE: "UPDATE_APP_PERSISTENT_STORE",
|
|
|
|
|
UPDATE_APP_TRANSIENT_STORE: "UPDATE_APP_TRANSIENT_STORE",
|
2020-08-27 15:39:16 +00:00
|
|
|
SET_ACTION_TO_EXECUTE_ON_PAGELOAD: "SET_ACTION_TO_EXECUTE_ON_PAGELOAD",
|
|
|
|
|
TOGGLE_ACTION_EXECUTE_ON_LOAD_SUCCESS:
|
|
|
|
|
"TOGGLE_ACTION_EXECUTE_ON_LOAD_SUCCESS",
|
|
|
|
|
TOGGLE_ACTION_EXECUTE_ON_LOAD_INIT: "TOGGLE_ACTION_EXECUTE_ON_LOAD_INIT",
|
2020-09-16 10:28:01 +00:00
|
|
|
COPY_SELECTED_WIDGET_SUCCESS: "COPY_SELECTED_WIDGET_SUCCESS",
|
|
|
|
|
COPY_SELECTED_WIDGET_INIT: "COPY_SELECTED_WIDGET_INIT",
|
|
|
|
|
ADD_CANVAS_WIDGET: "ADD_CANVAS_WIDGET",
|
|
|
|
|
PASTE_COPIED_WIDGET_INIT: "PASTE_COPIED_WIDGET_INIT",
|
|
|
|
|
PASTE_COPIED_WIDGET_SUCCESS: "PASTE_COPIED_WIDGET_SUCCESS",
|
|
|
|
|
CUT_SELECTED_WIDGET: "CUT_SELECTED_WIDGET",
|
2020-10-21 04:25:32 +00:00
|
|
|
SET_EVALUATED_TREE: "SET_EVALUATED_TREE",
|
2021-01-14 14:37:21 +00:00
|
|
|
SET_EVALUATION_INVERSE_DEPENDENCY_MAP:
|
|
|
|
|
"SET_EVALUATION_INVERSE_DEPENDENCY_MAP",
|
2020-10-21 04:25:32 +00:00
|
|
|
BATCH_UPDATES_SUCCESS: "BATCH_UPDATES_SUCCESS",
|
2020-11-03 13:05:40 +00:00
|
|
|
UPDATE_CANVAS_STRUCTURE: "UPDATE_CANVAS_STRUCTURE",
|
|
|
|
|
SET_SELECTED_WIDGET_ANCESTORY: "SET_SELECTED_WIDGET_ANCESTORY",
|
2020-10-23 18:02:59 +00:00
|
|
|
START_EVALUATION: "START_EVALUATION",
|
2020-11-25 12:24:14 +00:00
|
|
|
CURRENT_APPLICATION_NAME_UPDATE: "CURRENT_APPLICATION_NAME_UPDATE",
|
2021-03-03 05:26:47 +00:00
|
|
|
CURRENT_APPLICATION_LAYOUT_UPDATE: "CURRENT_APPLICATION_LAYOUT_UPDATE",
|
2021-03-10 07:08:20 +00:00
|
|
|
FORK_APPLICATION_INIT: "FORK_APPLICATION_INIT",
|
|
|
|
|
FORK_APPLICATION_SUCCESS: "FORK_APPLICATION_SUCCESS",
|
2021-06-03 06:18:08 +00:00
|
|
|
IMPORT_APPLICATION_INIT: "IMPORT_APPLICATION_INIT",
|
|
|
|
|
IMPORT_APPLICATION_SUCCESS: "IMPORT_APPLICATION_SUCCESS",
|
2021-01-19 06:17:15 +00:00
|
|
|
SET_WIDGET_LOADING: "SET_WIDGET_LOADING",
|
2021-03-08 08:24:12 +00:00
|
|
|
SET_GLOBAL_SEARCH_QUERY: "SET_GLOBAL_SEARCH_QUERY",
|
|
|
|
|
TOGGLE_SHOW_GLOBAL_SEARCH_MODAL: "TOGGLE_SHOW_GLOBAL_SEARCH_MODAL",
|
2021-01-19 06:17:15 +00:00
|
|
|
FETCH_RELEASES_SUCCESS: "FETCH_RELEASES_SUCCESS",
|
|
|
|
|
RESET_UNREAD_RELEASES_COUNT: "RESET_UNREAD_RELEASES_COUNT",
|
2021-08-26 05:37:07 +00:00
|
|
|
SET_FORM_EVALUATION: "SET_FORM_EVALUATION",
|
|
|
|
|
INIT_FORM_EVALUATION: "INIT_FORM_EVALUATION",
|
|
|
|
|
RUN_FORM_EVALUATION: "RUN_FORM_EVALUATION",
|
2021-01-14 14:37:21 +00:00
|
|
|
SET_LOADING_ENTITIES: "SET_LOADING_ENTITIES",
|
2021-02-04 07:02:36 +00:00
|
|
|
RESET_CURRENT_APPLICATION: "RESET_CURRENT_APPLICATION",
|
2021-06-17 13:26:54 +00:00
|
|
|
SELECT_WIDGETS_IN_AREA: "SELECT_WIDGETS_IN_AREA",
|
2021-04-26 16:45:03 +00:00
|
|
|
RESET_APPLICATION_WIDGET_STATE_REQUEST:
|
|
|
|
|
"RESET_APPLICATION_WIDGET_STATE_REQUEST",
|
2021-04-22 03:30:09 +00:00
|
|
|
SAAS_GET_OAUTH_ACCESS_TOKEN: "SAAS_GET_OAUTH_ACCESS_TOKEN",
|
2021-03-08 08:24:12 +00:00
|
|
|
UPDATE_RECENT_ENTITY: "UPDATE_RECENT_ENTITY",
|
|
|
|
|
RESTORE_RECENT_ENTITIES_REQUEST: "RESTORE_RECENT_ENTITIES_REQUEST",
|
|
|
|
|
RESTORE_RECENT_ENTITIES_SUCCESS: "RESTORE_RECENT_ENTITIES_SUCCESS",
|
|
|
|
|
SET_RECENT_ENTITIES: "SET_RECENT_ENTITIES",
|
|
|
|
|
RESET_RECENT_ENTITIES: "RESET_RECENT_ENTITIES",
|
2021-03-01 14:57:15 +00:00
|
|
|
UPDATE_API_ACTION_BODY_CONTENT_TYPE: "UPDATE_API_ACTION_BODY_CONTENT_TYPE",
|
2021-09-09 15:10:22 +00:00
|
|
|
ADD_WIDGET_CONFIG: "ADD_WIDGET_CONFIG",
|
2021-07-29 08:13:10 +00:00
|
|
|
GENERATE_TEMPLATE_PAGE_INIT: "GENERATE_TEMPLATE_PAGE_INIT",
|
|
|
|
|
GENERATE_TEMPLATE_PAGE_SUCCESS: "GENERATE_TEMPLATE_PAGE_SUCCESS",
|
2021-07-20 05:18:58 +00:00
|
|
|
SHOW_TABLE_FILTER_PANE: "SHOW_TABLE_FILTER_PANE",
|
|
|
|
|
HIDE_TABLE_FILTER_PANE: "HIDE_TABLE_FILTER_PANE",
|
|
|
|
|
TABLE_PANE_MOVED: "TABLE_PANE_MOVED",
|
2021-09-08 17:32:22 +00:00
|
|
|
FETCH_JS_ACTIONS_INIT: "FETCH_JS_ACTIONS_INIT",
|
|
|
|
|
FETCH_JS_ACTIONS_SUCCESS: "FETCH_JS_ACTIONS_SUCCESS",
|
|
|
|
|
CREATE_NEW_JS_ACTION: "CREATE_NEW_JS_ACTION",
|
|
|
|
|
CREATE_JS_ACTION_INIT: "CREATE_JS_ACTION_INIT",
|
|
|
|
|
CREATE_JS_ACTION_SUCCESS: "CREATE_JS_ACTION_SUCCESS",
|
|
|
|
|
COPY_JS_ACTION_INIT: "COPY_JS_ACTION_INIT",
|
|
|
|
|
COPY_JS_ACTION_SUCCESS: "COPY_JS_ACTION_SUCCESS",
|
|
|
|
|
MOVE_JS_ACTION_INIT: "MOVE_JS_ACTION_INIT",
|
|
|
|
|
MOVE_JS_ACTION_SUCCESS: "MOVE_JS_ACTION_SUCCESS",
|
|
|
|
|
DELETE_JS_ACTION_INIT: "DELETE_JS_ACTION_INIT",
|
|
|
|
|
DELETE_JS_ACTION_SUCCESS: "DELETE_JS_ACTION_SUCCESS",
|
|
|
|
|
PARSE_UPDATE_JS_ACTION: "PARSE_UPDATE_JS_ACTION",
|
|
|
|
|
UPDATE_JS_ACTION_INIT: "UPDATE_JS_ACTION_INIT",
|
|
|
|
|
UPDATE_JS_ACTION_SUCCESS: "UPDATE_JS_ACTION_SUCCESS",
|
2021-07-07 03:46:16 +00:00
|
|
|
EXECUTE_COMMAND: "EXECUTE_COMMAND",
|
2021-09-08 17:32:22 +00:00
|
|
|
SAVE_JS_COLLECTION_NAME_INIT: "SAVE_JS_COLLECTION_NAME_INIT",
|
|
|
|
|
FETCH_JS_ACTIONS_FOR_PAGE_INIT: "FETCH_JS_ACTIONS_FOR_PAGE_INIT",
|
|
|
|
|
FETCH_JS_ACTIONS_FOR_PAGE_SUCCESS: "FETCH_JS_ACTIONS_FOR_PAGE_SUCCESS",
|
|
|
|
|
SAVE_JS_COLLECTION_NAME_SUCCESS: "SAVE_JS_COLLECTION_NAME_SUCCESS",
|
|
|
|
|
FETCH_JS_ACTIONS_VIEW_MODE_INIT: "FETCH_JS_ACTIONS_VIEW_MODE_INIT",
|
|
|
|
|
FETCH_JS_ACTIONS_VIEW_MODE_SUCCESS: "FETCH_JS_ACTIONS_VIEW_MODE_SUCCESS",
|
|
|
|
|
EXECUTE_JS_FUNCTION_INIT: "EXECUTE_JS_FUNCTION_INIT",
|
|
|
|
|
EXECUTE_JS_FUNCTION_SUCCESS: "EXECUTE_JS_FUNCTION_SUCCESS",
|
2021-07-29 08:13:10 +00:00
|
|
|
GET_PLUGIN_FORM_CONFIG_INIT: "GET_PLUGIN_FORM_CONFIG_INIT",
|
|
|
|
|
EXECUTE_DATASOURCE_QUERY_INIT: "EXECUTE_DATASOURCE_QUERY_INIT",
|
|
|
|
|
EXECUTE_DATASOURCE_QUERY_SUCCESS: "EXECUTE_DATASOURCE_QUERY_SUCCESS",
|
2021-09-21 07:55:56 +00:00
|
|
|
UNDO_REDO_OPERATION: "UNDO_REDO_OPERATION",
|
2021-08-29 03:50:16 +00:00
|
|
|
EVALUATE_SNIPPET: "EVALUATE_SNIPPET",
|
|
|
|
|
EVALUATE_ARGUMENT: "EVALUATE_ARGUMENT",
|
|
|
|
|
SET_EVALUATED_SNIPPET: "SET_EVALUATED_SNIPPET",
|
|
|
|
|
SET_EVALUATED_ARGUMENT: "SET_EVALUATED_ARGUMENT",
|
|
|
|
|
UNSET_EVALUATED_ARGUMENT: "UNSET_EVALUATED_ARGUMENT",
|
2021-08-16 18:04:54 +00:00
|
|
|
SET_CRUD_INFO_MODAL_OPEN: "SET_CRUD_INFO_MODAL_OPEN",
|
2021-08-13 11:38:26 +00:00
|
|
|
SET_PAGE_ORDER_INIT: "SET_PAGE_ORDER_INIT",
|
|
|
|
|
SET_PAGE_ORDER_SUCCESS: "SET_PAGE_ORDER_SUCCESS",
|
2021-08-25 05:00:31 +00:00
|
|
|
GROUP_WIDGETS_INIT: "GROUP_WIDGETS_INIT",
|
2021-09-21 07:55:56 +00:00
|
|
|
WIDGET_ADD_NEW_TAB_CHILD: "WIDGET_ADD_NEW_TAB_CHILD",
|
|
|
|
|
WIDGET_DELETE_TAB_CHILD: "WIDGET_DELETE_TAB_CHILD",
|
2021-09-13 13:26:24 +00:00
|
|
|
GENERATE_SSH_KEY_PAIR_INIT: "GENERATE_SSH_KEY_PAIR_INIT",
|
2021-12-07 07:59:32 +00:00
|
|
|
SET_REMOTE_URL_INPUT_VALUE: "SET_REMOTE_URL_INPUT_VALUE",
|
2021-09-13 13:26:24 +00:00
|
|
|
GENERATE_SSH_KEY_PAIR_SUCCESS: "GENERATE_SSH_KEY_PAIR_SUCCESS",
|
2021-09-08 17:32:22 +00:00
|
|
|
REFACTOR_JS_ACTION_NAME: "REFACTOR_JS_ACTION_NAME",
|
2021-10-19 11:53:15 +00:00
|
|
|
REFACTOR_JS_ACTION_NAME_SUCCESS: "REFACTOR_JS_ACTION_NAME_SUCCESS",
|
2021-10-04 15:34:37 +00:00
|
|
|
SET_HEADER_META: "SET_HEADER_META",
|
2021-09-13 07:22:51 +00:00
|
|
|
TOGGLE_ONBOARDING_WIDGET_SELECTION: "TOGGLE_ONBOARDING_WIDGET_SELECTION",
|
|
|
|
|
SET_ENABLE_FIRST_TIME_USER_ONBOARDING:
|
|
|
|
|
"SET_ENABLE_FIRST_TIME_USER_ONBOARDING",
|
|
|
|
|
SET_FIRST_TIME_USER_ONBOARDING_APPLICATION_ID:
|
|
|
|
|
"SET_FIRST_TIME_USER_ONBOARDING_APPLICATION_ID",
|
|
|
|
|
SET_FIRST_TIME_USER_ONBOARDING_COMPLETE:
|
|
|
|
|
"SET_FIRST_TIME_USER_ONBOARDING_COMPLETE",
|
|
|
|
|
SET_SHOW_FIRST_TIME_USER_ONBOARDING_MODAL:
|
|
|
|
|
"SET_SHOW_FIRST_TIME_USER_ONBOARDING_MODAL",
|
|
|
|
|
SET_FORCE_WIDGET_PANEL_OPEN: "SET_FORCE_WIDGET_PANEL_OPEN",
|
|
|
|
|
END_FIRST_TIME_USER_ONBOARDING: "END_FIRST_TIME_USER_ONBOARDING",
|
|
|
|
|
UNDO_END_FIRST_TIME_USER_ONBOARDING: "UNDO_END_FIRST_TIME_USER_ONBOARDING",
|
2021-10-18 07:47:55 +00:00
|
|
|
FETCH_ADMIN_SETTINGS: "FETCH_ADMIN_SETTINGS",
|
|
|
|
|
FETCH_ADMIN_SETTINGS_SUCCESS: "FETCH_ADMIN_SETTINGS_SUCCESS",
|
|
|
|
|
FETCH_ADMIN_SETTINGS_ERROR: "FETCH_ADMIN_SETTINGS_ERROR",
|
|
|
|
|
SAVE_ADMIN_SETTINGS: "SAVE_ADMIN_SETTINGS",
|
|
|
|
|
SAVE_ADMIN_SETTINGS_SUCCESS: "SAVE_ADMIN_SETTINGS_SUCCESS",
|
|
|
|
|
SAVE_ADMIN_SETTINGS_ERROR: "SAVE_ADMIN_SETTINGS_ERROR",
|
|
|
|
|
DOWNLOAD_DOCKER_COMPOSE_FILE: "DOWNLOAD_DOCKER_COMPOSE_FILE",
|
|
|
|
|
TOGGLE_RELEASE_NOTES: "TOGGLE_RELEASE_NOTES",
|
|
|
|
|
FETCH_RELEASES: "FETCH_RELEASES",
|
|
|
|
|
RESTART_SERVER_POLL: "RESTART_SERVER_POLL",
|
2021-11-23 08:01:46 +00:00
|
|
|
SET_EXPLORER_PINNED: "SET_EXPLORER_PINNED",
|
|
|
|
|
SET_EXPLORER_ACTIVE: "SET_EXPLORER_ACTIVE",
|
|
|
|
|
SET_PREVIEW_MODE: "SET_PREVIEW_MODE",
|
|
|
|
|
UPDATE_EXPLORER_WIDTH: "UPDATE_EXPLORER_WIDTH",
|
2021-10-21 05:36:17 +00:00
|
|
|
FIRST_TIME_USER_ONBOARDING_INIT: "FIRST_TIME_USER_ONBOARDING_INIT",
|
|
|
|
|
SET_USER_ROLE_USECASE: "SET_USER_ROLE_USECASE",
|
2021-11-08 06:49:22 +00:00
|
|
|
UPDATE_JS_ACTION_BODY: "UPDATE_JS_ACTION_BODY",
|
|
|
|
|
UPDATE_JS_ACTION_BODY_INIT: "UPDATE_JS_ACTION_BODY_INIT",
|
|
|
|
|
UPDATE_JS_ACTION_BODY_SUCCESS: "UPDATE_JS_ACTION_BODY_SUCCESS",
|
2021-11-09 07:01:36 +00:00
|
|
|
SEND_TEST_EMAIL: "SEND_TEST_EMAIL",
|
2021-12-07 09:45:18 +00:00
|
|
|
UPDATE_REPLAY_ENTITY: "UPDATE_REPLAY_ENTITY",
|
2021-12-20 05:58:01 +00:00
|
|
|
DELETE_ORG_INIT: "DELETE_ORG_INIT",
|
|
|
|
|
DELETE_ORG_SUCCESS: "DELETE_ORG_SUCCESS",
|
2021-12-07 10:19:33 +00:00
|
|
|
SET_USER_CURRENT_GEO_LOCATION: "SET_USER_CURRENT_GEO_LOCATION",
|
2021-12-14 16:30:59 +00:00
|
|
|
SET_DISCONNECTING_GIT_APPLICATION: "SET_DISCONNECTING_GIT_APPLICATION",
|
2021-12-24 13:59:02 +00:00
|
|
|
/* This action constants is for identifying the status of the updates of the entities */
|
|
|
|
|
ENTITY_UPDATE_STARTED: "ENTITY_UPDATE_STARTED",
|
|
|
|
|
ENTITY_UPDATE_SUCCESS: "ENTITY_UPDATE_SUCCESS",
|
2019-09-13 11:59:45 +00:00
|
|
|
};
|
2019-10-31 08:36:04 +00:00
|
|
|
|
2019-11-22 14:02:55 +00:00
|
|
|
export type ReduxActionType = typeof ReduxActionTypes[keyof typeof ReduxActionTypes];
|
2019-09-17 15:09:55 +00:00
|
|
|
|
2021-08-03 08:06:48 +00:00
|
|
|
export const ReduxActionErrorTypes = {
|
2021-11-16 10:24:38 +00:00
|
|
|
GIT_PULL_ERROR: "GIT_PULL_ERROR",
|
2021-11-09 09:51:18 +00:00
|
|
|
FETCH_MERGE_STATUS_ERROR: "FETCH_MERGE_STATUS_ERROR",
|
2021-10-25 19:57:58 +00:00
|
|
|
MERGE_BRANCH_ERROR: "MERGE_BRANCH_ERROR",
|
2021-10-20 07:38:17 +00:00
|
|
|
FETCH_GIT_STATUS_ERROR: "FETCH_GIT_STATUS_ERROR",
|
2021-10-18 14:03:44 +00:00
|
|
|
CREATE_NEW_BRANCH_ERROR: "CREATE_NEW_BRANCH_ERROR",
|
|
|
|
|
CHECKOUT_BRANCH_ERROR: "CHECKOUT_BRANCH_ERROR",
|
|
|
|
|
FETCH_BRANCHES_ERROR: "FETCH_BRANCHES_ERROR",
|
2021-09-23 08:47:09 +00:00
|
|
|
FETCH_LOCAL_GIT_CONFIG_ERROR: "FETCH_LOCAL_GIT_CONFIG_ERROR",
|
|
|
|
|
UPDATE_LOCAL_GIT_CONFIG_ERROR: "UPDATE_LOCAL_GIT_CONFIG_ERROR",
|
2021-09-22 18:48:50 +00:00
|
|
|
PUSH_TO_GIT_ERROR: "PUSH_TO_GIT_ERROR",
|
|
|
|
|
FETCH_SSH_KEY_PAIR_ERROR: "FETCH_SSH_KEY_PAIR_ERROR",
|
2021-09-17 10:48:38 +00:00
|
|
|
UPDATE_GLOBAL_GIT_CONFIG_ERROR: "UPDATE_GLOBAL_GIT_CONFIG_ERROR",
|
|
|
|
|
FETCH_GLOBAL_GIT_CONFIG_ERROR: "FETCH_GLOBAL_GIT_CONFIG_ERROR",
|
2021-09-13 13:26:24 +00:00
|
|
|
CONNECT_TO_GIT_ERROR: "CONNECT_TO_GIT_ERROR",
|
2021-10-20 07:38:17 +00:00
|
|
|
DISCONNECT_TO_GIT_ERROR: "DISCONNECT_TO_GIT_ERROR",
|
2021-09-13 13:26:24 +00:00
|
|
|
COMMIT_TO_GIT_REPO_ERROR: "COMMIT_TO_GIT_REPO_ERROR",
|
2021-08-05 06:10:19 +00:00
|
|
|
FETCH_FEATURE_FLAGS_ERROR: "FETCH_FEATURE_FLAGS_ERROR",
|
2021-06-23 15:42:07 +00:00
|
|
|
FETCH_NOTIFICATIONS_ERROR: "FETCH_NOTIFICATIONS_ERROR",
|
|
|
|
|
MARK_ALL_NOTIFICAIONS_AS_READ_ERROR: "MARK_ALL_NOTIFICAIONS_AS_READ_ERROR",
|
|
|
|
|
FETCH_UNREAD_NOTIFICATIONS_COUNT_ERROR:
|
|
|
|
|
"FETCH_UNREAD_NOTIFICATIONS_COUNT_ERROR",
|
|
|
|
|
MARK_NOTIFICATION_AS_READ_ERROR: "MARK_NOTIFICATION_AS_READ_ERROR",
|
|
|
|
|
CREATE_COMMENT_THREAD_ERROR: "CREATE_COMMENT_THREAD_ERROR",
|
|
|
|
|
ADD_COMMENT_TO_THREAD_ERROR: "ADD_COMMENT_TO_THREAD_ERROR",
|
|
|
|
|
FETCH_APPLICATION_COMMENTS_ERROR: "FETCH_APPLICATION_COMMENTS_ERROR",
|
|
|
|
|
SET_COMMENT_RESOLUTION_ERROR: "SET_COMMENT_RESOLUTION_ERROR",
|
|
|
|
|
PIN_COMMENT_THREAD_ERROR: "PIN_COMMENT_THREAD_ERROR",
|
|
|
|
|
DELETE_COMMENT_ERROR: "DELETE_COMMENT_ERROR",
|
|
|
|
|
MARK_THREAD_AS_READ_ERROR: "MARK_THREAD_AS_READ_ERROR",
|
|
|
|
|
EDIT_COMMENT_ERROR: "EDIT_COMMENT_ERROR",
|
|
|
|
|
DELETE_COMMENT_THREAD_ERROR: "DELETE_COMMENT_THREAD_ERROR",
|
|
|
|
|
ADD_COMMENT_REACTION_ERROR: "ADD_COMMENT_REACTION_ERROR",
|
|
|
|
|
DELETE_COMMENT_REACTION_ERROR: "DELETE_COMMENT_REACTION_ERROR",
|
2020-12-08 19:13:48 +00:00
|
|
|
INITIALIZE_APPSMITH_ERROR: "INITIALIZE_APPSMITH_ERROR",
|
2019-09-27 16:05:33 +00:00
|
|
|
API_ERROR: "API_ERROR",
|
|
|
|
|
WIDGET_DELETE_ERROR: "WIDGET_DELETE_ERROR",
|
2020-09-16 11:50:47 +00:00
|
|
|
UPDATE_APPLICATION_ERROR: "UPDATE_APPLICATION_ERROR",
|
2021-03-03 05:26:47 +00:00
|
|
|
UPDATE_APP_LAYOUT_ERROR: "UPDATE_APP_LAYOUT_ERROR",
|
2019-09-27 16:05:33 +00:00
|
|
|
WIDGET_MOVE_ERROR: "WIDGET_MOVE_ERROR",
|
|
|
|
|
WIDGET_RESIZE_ERROR: "WIDGET_RESIZE_ERROR",
|
|
|
|
|
WIDGET_REMOVE_CHILD_ERROR: "WIDGET_REMOVE_CHILD_ERROR",
|
|
|
|
|
WIDGET_ADD_CHILD_ERROR: "WIDGET_ADD_CHILD_ERROR",
|
|
|
|
|
FETCH_PAGE_ERROR: "FETCH_PAGE_ERROR",
|
|
|
|
|
SAVE_PAGE_ERROR: "SAVE_PAGE_ERROR",
|
|
|
|
|
FETCH_WIDGET_CARDS_ERROR: "FETCH_WIDGET_CARDS_ERROR",
|
2019-10-02 18:13:04 +00:00
|
|
|
WIDGET_OPERATION_ERROR: "WIDGET_OPERATION_ERROR",
|
2021-08-24 11:38:20 +00:00
|
|
|
WIDGET_SELECTION_ERROR: "WIDGET_SELECTION_ERROR",
|
2019-10-21 11:40:24 +00:00
|
|
|
FETCH_PROPERTY_PANE_CONFIGS_ERROR: "FETCH_PROPERTY_PANE_CONFIGS_ERROR",
|
|
|
|
|
FETCH_CONFIGS_ERROR: "FETCH_CONFIGS_ERROR",
|
|
|
|
|
PROPERTY_PANE_ERROR: "PROPERTY_PANE_ERROR",
|
2019-10-21 15:12:45 +00:00
|
|
|
FETCH_ACTIONS_ERROR: "FETCH_ACTIONS_ERROR",
|
2021-09-08 17:32:22 +00:00
|
|
|
FETCH_JS_ACTIONS_ERROR: "FETCH_JS_ACTIONS_ERROR",
|
Property Pane Controls
- Fixes #121, #122, #123, #124, #90, #46, #65, #100, #101, #68, #102
2019-10-24 05:24:45 +00:00
|
|
|
UPDATE_WIDGET_PROPERTY_ERROR: "UPDATE_WIDGET_PROPERTY_ERROR",
|
2019-11-13 07:34:59 +00:00
|
|
|
CREATE_ACTION_ERROR: "CREATE_ACTION_ERROR",
|
2019-10-25 05:35:20 +00:00
|
|
|
UPDATE_ACTION_ERROR: "UPDATE_ACTION_ERROR",
|
|
|
|
|
DELETE_ACTION_ERROR: "DELETE_ACTION_ERROR",
|
2020-07-03 08:58:58 +00:00
|
|
|
RUN_ACTION_ERROR: "RUN_ACTION_ERROR",
|
2021-08-27 09:25:28 +00:00
|
|
|
EXECUTE_PLUGIN_ACTION_ERROR: "EXECUTE_PLUGIN_ACTION_ERROR",
|
2019-11-07 09:32:38 +00:00
|
|
|
FETCH_DATASOURCES_ERROR: "FETCH_DATASOURCES_ERROR",
|
2021-07-07 03:46:16 +00:00
|
|
|
FETCH_MOCK_DATASOURCES_ERROR: "FETCH_MOCK_DATASOURCES_ERROR",
|
|
|
|
|
ADD_MOCK_DATASOURCES_ERROR: "ADD_MOCK_DATASOURCES_ERROR",
|
2020-04-29 09:06:30 +00:00
|
|
|
SEARCH_APIORPROVIDERS_ERROR: "SEARCH_APIORPROVIDERS_ERROR",
|
2020-04-28 06:52:53 +00:00
|
|
|
UPDATE_DATASOURCE_ERROR: "UPDATE_DATASOURCE_ERROR",
|
2020-08-26 05:24:44 +00:00
|
|
|
SAVE_DATASOURCE_NAME_ERROR: "SAVE_DATASOURCE_NAME_ERROR",
|
2019-11-07 09:32:38 +00:00
|
|
|
CREATE_DATASOURCE_ERROR: "CREATE_DATASOURCE_ERROR",
|
2020-04-29 10:03:56 +00:00
|
|
|
DELETE_DATASOURCE_ERROR: "DELETE_DATASOURCE_ERROR",
|
2020-09-21 09:11:42 +00:00
|
|
|
FETCH_DATASOURCE_STRUCTURE_ERROR: "FETCH_DATASOURCE_STRUCTURE_ERROR",
|
2020-09-29 04:17:25 +00:00
|
|
|
REFRESH_DATASOURCE_STRUCTURE_ERROR: "REFRESH_DATASOURCE_STRUCTURE_ERROR",
|
2020-12-30 07:31:20 +00:00
|
|
|
CREATE_ONBOARDING_DBQUERY_ERROR: "CREATE_ONBOARDING_DBQUERY_ERROR",
|
2019-10-24 07:03:59 +00:00
|
|
|
FETCH_PUBLISHED_PAGE_ERROR: "FETCH_PUBLISHED_PAGE_ERROR",
|
|
|
|
|
PUBLISH_APPLICATION_ERROR: "PUBLISH_APPLICATION_ERROR",
|
2020-08-12 08:01:25 +00:00
|
|
|
FETCH_USER_DETAILS_ERROR: "FETCH_USER_DETAILS_ERROR",
|
2019-10-31 08:36:04 +00:00
|
|
|
CREATE_PAGE_ERROR: "CREATE_PAGE_ERROR",
|
|
|
|
|
FETCH_PAGE_LIST_ERROR: "FETCH_PAGE_LIST_ERROR",
|
2020-03-06 04:59:24 +00:00
|
|
|
FETCH_APPLICATION_ERROR: "FETCH_APPLICATION_ERROR",
|
2019-11-07 04:59:40 +00:00
|
|
|
CREATE_APPLICATION_ERROR: "CREATE_APPLICATION_ERROR",
|
2019-12-16 08:49:10 +00:00
|
|
|
LOGIN_USER_ERROR: "LOGIN_USER_ERROR",
|
|
|
|
|
CREATE_USER_ERROR: "CREATE_USER_ERROR",
|
|
|
|
|
RESET_USER_PASSWORD_ERROR: "RESET_USER_PASSWORD_ERROR",
|
2020-08-28 18:51:16 +00:00
|
|
|
CHANGE_ORG_USER_ROLE_ERROR: "CHANGE_ORG_USER_ROLE_ERROR",
|
2019-11-28 03:56:44 +00:00
|
|
|
SAVE_JS_EXECUTION_RECORD: "SAVE_JS_EXECUTION_RECORD",
|
2019-11-29 05:22:49 +00:00
|
|
|
FETCH_PLUGINS_ERROR: "FETCH_PLUGINS_ERROR",
|
2021-03-30 05:29:03 +00:00
|
|
|
FETCH_PLUGIN_FORM_CONFIGS_ERROR: "FETCH_PLUGIN_FORM_CONFIGS_ERROR",
|
2019-12-23 12:16:33 +00:00
|
|
|
UPDATE_ORG_NAME_ERROR: "UPDATE_ORG_NAME_ERROR",
|
|
|
|
|
SWITCH_ORGANIZATION_ERROR: "SWITCH_ORGANIZATION_ERROR",
|
2020-04-28 06:52:53 +00:00
|
|
|
TEST_DATASOURCE_ERROR: "TEST_DATASOURCE_ERROR",
|
2019-12-16 08:49:10 +00:00
|
|
|
FORGOT_PASSWORD_ERROR: "FORGOT_PASSWORD_ERROR",
|
|
|
|
|
RESET_PASSWORD_VERIFY_TOKEN_ERROR: "RESET_PASSWORD_VERIFY_TOKEN_ERROR",
|
2019-12-23 12:16:33 +00:00
|
|
|
FETCH_ORG_ROLES_ERROR: "FETCH_ORG_ROLES_ERROR",
|
|
|
|
|
INVITE_USERS_TO_ORG_ERROR: "INVITE_USERS_TO_ORG_ERROR",
|
|
|
|
|
SAVE_ORG_ERROR: "SAVE_ORG_ERROR",
|
|
|
|
|
FETCH_ORG_ERROR: "FETCH_ORG_ERROR",
|
|
|
|
|
FETCH_ORGS_ERROR: "FETCH_ORGS_ERROR",
|
|
|
|
|
FETCH_USER_ERROR: "FETCH_USER_ERROR",
|
|
|
|
|
SET_CURRENT_USER_ERROR: "SET_CURRENT_USER_ERROR",
|
2020-01-03 08:49:47 +00:00
|
|
|
LOGOUT_USER_ERROR: "LOGOUT_USER_ERROR",
|
2020-01-06 09:07:30 +00:00
|
|
|
VERIFY_INVITE_ERROR: "VERIFY_INVITE_ERROR",
|
2020-01-27 08:24:58 +00:00
|
|
|
UPDATE_PAGE_ERROR: "UPDATE_PAGE_ERROR",
|
2020-01-24 09:54:40 +00:00
|
|
|
MOVE_ACTION_ERROR: "MOVE_ACTION_ERROR",
|
|
|
|
|
COPY_ACTION_ERROR: "COPY_ACTION_ERROR",
|
2020-01-27 08:24:58 +00:00
|
|
|
DELETE_PAGE_ERROR: "DELETE_PAGE_ERROR",
|
2020-08-22 03:10:22 +00:00
|
|
|
CLONE_PAGE_ERROR: "CLONE_PAGE_ERROR",
|
2020-01-27 08:24:58 +00:00
|
|
|
DELETE_APPLICATION_ERROR: "DELETE_APPLICATION_ERROR",
|
2020-09-01 07:16:54 +00:00
|
|
|
DUPLICATE_APPLICATION_ERROR: "DUPLICATE_APPLICATION_ERROR",
|
2020-01-27 08:24:58 +00:00
|
|
|
SET_DEFAULT_APPLICATION_PAGE_ERROR: "SET_DEFAULT_APPLICATION_PAGE_ERROR",
|
2020-02-03 10:37:03 +00:00
|
|
|
CREATE_ORGANIZATION_ERROR: "CREATE_ORGANIZATION_ERROR",
|
|
|
|
|
ADD_USER_TO_ORG_ERROR: "ADD_USER_TO_ORG_ERROR",
|
2020-02-21 12:16:49 +00:00
|
|
|
UPDATE_WIDGET_NAME_ERROR: "UPDATE_WIDGET_NAME_ERROR",
|
|
|
|
|
FETCH_ACTIONS_FOR_PAGE_ERROR: "FETCH_ACTIONS_FOR_PAGE_ERROR",
|
2020-04-14 12:34:14 +00:00
|
|
|
FETCH_IMPORTED_COLLECTIONS_ERROR: "FETCH_IMPORTED_COLLECTIONS_ERROR",
|
|
|
|
|
FETCH_PROVIDERS_ERROR: "FETCH_PROVIDERS_ERROR",
|
|
|
|
|
SUBMIT_CURL_FORM_ERROR: "SUBMIT_CURL_FORM_ERROR",
|
|
|
|
|
FETCH_PROVIDER_TEMPLATES_ERROR: "FETCH_PROVIDER_TEMPLATES_ERROR",
|
|
|
|
|
ADD_API_TO_PAGE_ERROR: "ADD_API_TO_PAGE_ERROR",
|
|
|
|
|
FETCH_PROVIDERS_CATEGORIES_ERROR: "FETCH_PROVIDERS_CATEGORIES_ERROR",
|
|
|
|
|
FETCH_PROVIDERS_WITH_CATEGORY_ERROR: "FETCH_PROVIDERS_WITH_CATEGORY_ERROR",
|
2020-03-27 09:02:11 +00:00
|
|
|
CREATE_MODAL_ERROR: "CREATE_MODAL_ERROR",
|
2020-04-28 10:47:59 +00:00
|
|
|
FETCH_PROVIDER_DETAILS_BY_PROVIDER_ID_ERROR:
|
|
|
|
|
"FETCH_PROVIDER_DETAILS_BY_PROVIDER_ID_ERROR",
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
SAVE_ACTION_NAME_ERROR: "SAVE_ACTION_NAME_ERROR",
|
2020-06-17 10:19:56 +00:00
|
|
|
FETCH_USER_APPLICATIONS_ORGS_ERROR: "FETCH_USER_APPLICATIONS_ORGS_ERROR",
|
2021-03-10 07:08:20 +00:00
|
|
|
FORK_APPLICATION_ERROR: "FORK_APPLICATION_ERROR",
|
2021-06-03 06:18:08 +00:00
|
|
|
IMPORT_APPLICATION_ERROR: "IMPORT_APPLICATION_ERROR",
|
2020-06-17 10:19:56 +00:00
|
|
|
FETCH_ALL_USERS_ERROR: "FETCH_ALL_USERS_ERROR",
|
|
|
|
|
FETCH_ALL_ROLES_ERROR: "FETCH_ALL_ROLES_ERROR",
|
2021-03-04 09:37:02 +00:00
|
|
|
UPDATE_USER_DETAILS_ERROR: "UPDATE_USER_DETAILS_ERROR",
|
2020-07-15 13:01:35 +00:00
|
|
|
FETCH_ACTIONS_VIEW_MODE_ERROR: "FETCH_ACTION_VIEW_MODE_ERROR",
|
Feature/entity browse (#220)
# New Feature: Entity Explorer
- Entities are actions (apis and queries), datasources, pages, and widgets
- With this new feature, all entities in the application will be available
to view in the new entity explorer sidebar
- All existing application features from the api sidebar, query sidebar, datasource sidebar and pages sidebar
now are avialable on the entity explorer sidebar
- Users are now able to quickly switch to any entity in the application from the entity explorer sidebar.
- Users can also search all entities in the application from the new sidebar. Use cmd + f or ctrl + f to focus on the search input
- Users can rename entities from the new sidebar
- Users can also perform contextual actions on these entities like set a page as home page, copy/move actions, delete entity, etc from the context menu available alongside the entities in the sidebar
- Users can view the properties of the entities in the sidebar, as well as copy bindings to use in the application.
2020-08-10 08:52:45 +00:00
|
|
|
SAVE_API_NAME_ERROR: "SAVE_API_NAME_ERROR",
|
|
|
|
|
POPULATE_PAGEDSLS_ERROR: "POPULATE_PAGEDSLS_ERROR",
|
|
|
|
|
FETCH_PAGE_DSL_ERROR: "FETCH_PAGE_DSL_ERROR",
|
2020-08-27 15:39:16 +00:00
|
|
|
TOGGLE_ACTION_EXECUTE_ON_LOAD_ERROR: "TOGGLE_ACTION_EXECUTE_ON_LOAD_ERROR",
|
2020-09-16 10:28:01 +00:00
|
|
|
COPY_SELECTED_WIDGET_ERROR: "COPY_SELECTED_WIDGET_ERROR",
|
|
|
|
|
PASTE_COPIED_WIDGET_ERROR: "PASTE_COPIED_WIDGET_ERROR",
|
|
|
|
|
WIDGET_ADD_CHILDREN_ERROR: "WIDGET_ADD_CHILDREN_ERROR",
|
2021-03-04 05:24:47 +00:00
|
|
|
FAILED_CORRECTING_BINDING_PATHS: "FAILED_CORRECTING_BINDING_PATHS",
|
2021-09-08 17:32:22 +00:00
|
|
|
CREATE_JS_ACTION_ERROR: "CREATE_JS_ACTION_ERROR",
|
|
|
|
|
UPDATE_JS_ACTION_ERROR: "UPDATE_JS_ACTION_ERROR",
|
|
|
|
|
COPY_JS_ACTION_ERROR: "COPY_JS_ACTION_ERROR",
|
|
|
|
|
MOVE_JS_ACTION_ERROR: "MOVE_JS_ACTION_ERROR",
|
2021-06-02 09:56:22 +00:00
|
|
|
DELETE_ORG_USER_ERROR: "DELETE_ORG_USER_ERROR",
|
2021-06-15 07:09:27 +00:00
|
|
|
CHANGE_APPVIEW_ACCESS_ERROR: "CHANGE_APPVIEW_ACCESS_ERROR",
|
2021-09-08 17:32:22 +00:00
|
|
|
SAVE_JS_COLLECTION_NAME_ERROR: "SAVE_JS_COLLECTION_NAME_ERROR",
|
|
|
|
|
FETCH_JS_ACTIONS_FOR_PAGE_ERROR: "FETCH_JS_ACTIONS_FOR_PAGE_ERROR",
|
|
|
|
|
FETCH_JS_ACTIONS_VIEW_MODE_ERROR: "FETCH_JS_ACTIONS_VIEW_MODE_ERROR",
|
2021-07-29 08:13:10 +00:00
|
|
|
GENERATE_TEMPLATE_PAGE_ERROR: "GENERATE_TEMPLATE_PAGE_ERROR",
|
|
|
|
|
FETCH_PLUGIN_FORM_ERROR: "FETCH_PLUGIN_FORM_ERROR",
|
|
|
|
|
EXECUTE_DATASOURCE_QUERY_ERROR: "EXECUTE_DATASOURCE_QUERY_ERROR",
|
2021-08-03 08:06:48 +00:00
|
|
|
INVITED_USER_SIGNUP_ERROR: "INVITED_USER_SIGNUP_ERROR",
|
2021-08-13 11:38:26 +00:00
|
|
|
SET_PAGE_ORDER_ERROR: "SET_PAGE_ORDER_ERROR",
|
2021-09-08 17:32:22 +00:00
|
|
|
DELETE_JS_ACTION_ERROR: "DELETE_JS_ACTION_ERROR",
|
|
|
|
|
REFACTOR_JS_ACTION_NAME_ERROR: "REFACTOR_JS_ACTION_NAME_ERROR",
|
2021-10-18 07:47:55 +00:00
|
|
|
FETCH_RELEASES_ERROR: "FETCH_RELEASES_ERROR",
|
|
|
|
|
RESTART_SERVER_ERROR: "RESTART_SERVER_ERROR",
|
2021-11-08 06:49:22 +00:00
|
|
|
UPDATE_JS_ACTION_BODY_ERROR: "UPDATE_JS_ACTION_BODY_ERROR",
|
2021-12-20 05:58:01 +00:00
|
|
|
DELETE_ORG_ERROR: "DELETE_ORG_ERROR",
|
2019-09-27 16:05:33 +00:00
|
|
|
};
|
2019-10-24 07:03:59 +00:00
|
|
|
|
2021-08-03 08:06:48 +00:00
|
|
|
export const ReduxFormActionTypes = {
|
2019-11-25 09:15:11 +00:00
|
|
|
VALUE_CHANGE: "@@redux-form/CHANGE",
|
|
|
|
|
UPDATE_FIELD_ERROR: "@@redux-form/UPDATE_SYNC_ERRORS",
|
2019-12-23 12:12:58 +00:00
|
|
|
ARRAY_REMOVE: "@@redux-form/ARRAY_REMOVE",
|
2020-04-14 12:34:14 +00:00
|
|
|
ARRAY_PUSH: "@@redux-form/ARRAY_PUSH",
|
2019-11-25 09:15:11 +00:00
|
|
|
};
|
|
|
|
|
|
2021-09-21 07:55:56 +00:00
|
|
|
export enum ReplayReduxActionTypes {
|
|
|
|
|
UNDO = "undo",
|
|
|
|
|
REDO = "redo",
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-03 08:06:48 +00:00
|
|
|
export const WidgetReduxActionTypes: { [key: string]: string } = {
|
|
|
|
|
WIDGET_ADD_CHILD: "WIDGET_ADD_CHILD",
|
|
|
|
|
WIDGET_CHILD_ADDED: "WIDGET_CHILD_ADDED",
|
|
|
|
|
WIDGET_REMOVE_CHILD: "WIDGET_REMOVE_CHILD",
|
|
|
|
|
WIDGET_RESIZE: "WIDGET_RESIZE",
|
2021-09-20 17:06:13 +00:00
|
|
|
WIDGET_MODAL_RESIZE: "WIDGET_MODAL_RESIZE",
|
2021-08-03 08:06:48 +00:00
|
|
|
WIDGET_DELETE: "WIDGET_DELETE",
|
|
|
|
|
WIDGET_BULK_DELETE: "WIDGET_BULK_DELETE",
|
|
|
|
|
WIDGET_SINGLE_DELETE: "WIDGET_SINGLE_DELETE",
|
|
|
|
|
WIDGET_ADD_CHILDREN: "WIDGET_ADD_CHILDREN",
|
|
|
|
|
WIDGET_UPDATE_PROPERTY: "WIDGET_UPDATE_PROPERTY",
|
|
|
|
|
};
|
|
|
|
|
|
2019-11-22 14:02:55 +00:00
|
|
|
export type ReduxActionErrorType = typeof ReduxActionErrorTypes[keyof typeof ReduxActionErrorTypes];
|
2019-09-27 16:05:33 +00:00
|
|
|
|
2019-09-12 11:19:38 +00:00
|
|
|
export interface ReduxAction<T> {
|
2019-09-27 16:05:33 +00:00
|
|
|
type: ReduxActionType | ReduxActionErrorType;
|
2019-09-12 11:19:38 +00:00
|
|
|
payload: T;
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-01 07:11:32 +00:00
|
|
|
export type ReduxActionWithoutPayload = Pick<ReduxAction<undefined>, "type">;
|
|
|
|
|
|
2019-11-25 09:15:11 +00:00
|
|
|
export interface ReduxActionWithMeta<T, M> extends ReduxAction<T> {
|
|
|
|
|
meta: M;
|
|
|
|
|
}
|
2020-11-03 10:16:11 +00:00
|
|
|
|
2021-02-11 12:28:06 +00:00
|
|
|
export interface ReduxActionWithCallbacks<T, S, E> extends ReduxAction<T> {
|
|
|
|
|
onSuccess?: ReduxAction<S>;
|
|
|
|
|
onError?: ReduxAction<E>;
|
2021-07-29 08:13:10 +00:00
|
|
|
onSuccessCallback?: (response: S) => void;
|
|
|
|
|
onErrorCallback?: (error: E) => void;
|
2021-02-11 12:28:06 +00:00
|
|
|
}
|
|
|
|
|
|
2020-11-03 10:16:11 +00:00
|
|
|
export interface EvaluationReduxAction<T> extends ReduxAction<T> {
|
2021-04-26 05:41:32 +00:00
|
|
|
postEvalActions?: Array<ReduxAction<any> | ReduxActionWithoutPayload>;
|
2020-11-03 10:16:11 +00:00
|
|
|
}
|
|
|
|
|
|
2020-01-06 09:07:30 +00:00
|
|
|
export interface PromisePayload {
|
|
|
|
|
reject: any;
|
|
|
|
|
resolve: any;
|
|
|
|
|
}
|
|
|
|
|
export interface ReduxActionWithPromise<T> extends ReduxAction<T> {
|
|
|
|
|
payload: T & PromisePayload;
|
|
|
|
|
}
|
2019-11-25 09:15:11 +00:00
|
|
|
|
2019-09-27 16:05:33 +00:00
|
|
|
export interface ReduxActionErrorPayload {
|
|
|
|
|
message: string;
|
|
|
|
|
source?: string;
|
2020-12-17 07:03:59 +00:00
|
|
|
code?: ERROR_CODES;
|
2019-09-27 16:05:33 +00:00
|
|
|
}
|
|
|
|
|
|
2019-09-24 12:36:03 +00:00
|
|
|
export interface UpdateCanvasPayload {
|
2019-09-12 11:19:38 +00:00
|
|
|
pageWidgetId: string;
|
2019-09-13 11:59:45 +00:00
|
|
|
widgets: { [widgetId: string]: WidgetProps };
|
2019-09-27 08:08:31 +00:00
|
|
|
currentLayoutId: string;
|
|
|
|
|
currentPageId: string;
|
|
|
|
|
currentPageName: string;
|
2019-10-24 07:03:59 +00:00
|
|
|
currentApplicationId: string;
|
2020-01-30 10:55:37 +00:00
|
|
|
pageActions: PageAction[][];
|
2019-09-12 11:19:38 +00:00
|
|
|
}
|
|
|
|
|
|
2019-09-18 10:19:50 +00:00
|
|
|
export interface ShowPropertyPanePayload {
|
|
|
|
|
widgetId: string;
|
2020-01-08 04:11:23 +00:00
|
|
|
callForDragOrResize: boolean;
|
2020-03-06 09:33:20 +00:00
|
|
|
force: boolean;
|
2019-09-12 11:19:38 +00:00
|
|
|
}
|
|
|
|
|
|
2020-03-03 07:02:53 +00:00
|
|
|
export interface Page {
|
2019-10-31 08:36:04 +00:00
|
|
|
pageName: string;
|
|
|
|
|
pageId: string;
|
2020-01-27 08:24:58 +00:00
|
|
|
isDefault: boolean;
|
|
|
|
|
latest?: boolean;
|
2021-02-24 13:47:37 +00:00
|
|
|
isHidden?: boolean;
|
2020-03-03 07:02:53 +00:00
|
|
|
}
|
|
|
|
|
|
2020-08-22 03:10:22 +00:00
|
|
|
export interface ClonePageSuccessPayload {
|
|
|
|
|
pageName: string;
|
|
|
|
|
pageId: string;
|
|
|
|
|
layoutId: string;
|
|
|
|
|
isDefault: boolean;
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-03 07:02:53 +00:00
|
|
|
export type PageListPayload = Array<Page>;
|
2019-10-31 08:36:04 +00:00
|
|
|
|
2021-09-22 18:48:50 +00:00
|
|
|
export interface ApplicationPayload {
|
2019-11-07 04:59:40 +00:00
|
|
|
id: string;
|
|
|
|
|
name: string;
|
2020-09-16 11:50:47 +00:00
|
|
|
color?: string;
|
|
|
|
|
icon?: string;
|
2019-11-07 04:59:40 +00:00
|
|
|
organizationId: string;
|
|
|
|
|
defaultPageId?: string;
|
2020-07-15 09:47:39 +00:00
|
|
|
isPublic?: boolean;
|
2020-06-17 10:19:56 +00:00
|
|
|
userPermissions?: string[];
|
2020-08-13 09:33:44 +00:00
|
|
|
appIsExample: boolean;
|
2021-03-10 07:08:20 +00:00
|
|
|
forkingEnabled?: boolean;
|
2021-03-03 05:26:47 +00:00
|
|
|
appLayout?: AppLayoutConfig;
|
2021-09-13 13:26:24 +00:00
|
|
|
gitApplicationMetadata?: GitApplicationMetadata;
|
2021-09-13 07:22:51 +00:00
|
|
|
lastDeployedAt?: string;
|
2021-10-18 14:03:44 +00:00
|
|
|
applicationId?: string;
|
2021-10-04 15:34:37 +00:00
|
|
|
modifiedBy?: string;
|
|
|
|
|
modifiedAt?: string;
|
2021-09-22 18:48:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface CurrentApplicationData extends ApplicationPayload {
|
|
|
|
|
SSHKeyPair?: string;
|
|
|
|
|
deployKeyDocUrl?: string;
|
|
|
|
|
}
|
2020-06-17 10:19:56 +00:00
|
|
|
|
|
|
|
|
export type OrganizationDetails = {
|
2020-09-16 11:50:47 +00:00
|
|
|
organization: Org;
|
2020-10-12 13:06:05 +00:00
|
|
|
applications: any[];
|
2019-11-07 04:59:40 +00:00
|
|
|
};
|
|
|
|
|
|
2019-10-18 08:16:26 +00:00
|
|
|
export interface LoadWidgetEditorPayload {
|
2019-09-13 11:59:45 +00:00
|
|
|
widgets: WidgetProps[];
|
2019-09-12 11:19:38 +00:00
|
|
|
}
|
|
|
|
|
|
2019-10-18 08:16:26 +00:00
|
|
|
export interface LoadWidgetSidebarPayload {
|
2019-09-13 11:59:45 +00:00
|
|
|
cards: { [id: string]: WidgetCardProps[] };
|
|
|
|
|
}
|
2019-09-17 15:09:55 +00:00
|
|
|
|
2019-11-22 14:02:55 +00:00
|
|
|
export type InitializeEditorPayload = {
|
|
|
|
|
applicationId: string;
|
2020-03-24 14:05:19 +00:00
|
|
|
pageId: string;
|
2021-10-18 14:03:44 +00:00
|
|
|
branch?: string;
|
2019-11-22 14:02:55 +00:00
|
|
|
};
|