## Description Adds the cURL import flow to go through a modal instead of editor level screen. This is done to ensure the IA is correct as per IDE 2.0 standards Fixes #32942 ## Automation /ok-to-test tags="@tag.All" ### 🔍 Cypress test results <!-- This is an auto-generated comment: Cypress test results --> > [!CAUTION] > 🔴 🔴 🔴 Some tests have failed. > Workflow run: <https://github.com/appsmithorg/appsmith/actions/runs/9869174972> > Commit: 6143c1c79c0bb7c6a4899fc477985d0ed23699df > <a href="https://internal.appsmith.com/app/cypress-dashboard/rundetails-65890b3c81d7400d08fa9ee5?branch=master&workflowId=9869174972&attempt=2&selectiontype=test&testsstatus=failed&specsstatus=fail" target="_blank">Cypress dashboard</a>. > Tags: @tag.All > Spec: > The following are new failures, please fix them before merging the PR: <ol> > <li>cypress/e2e/Regression/ClientSide/OtherUIFeatures/Omnibar_spec.js > <li>cypress/e2e/Regression/ClientSide/PartialImportExport/PartialExport_spec.ts</ol> > <a href="https://internal.appsmith.com/app/cypress-dashboard/identified-flaky-tests-65890b3c81d7400d08fa9ee3?branch=master" target="_blank">List of identified flaky tests</a>. > <hr>Wed, 10 Jul 2024 07:56:03 UTC <!-- end of auto-generated comment: Cypress test results --> ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [ ] No <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Refactor** - Updated test case function calls and refactored imports to improve code structure and maintainability in multiple files related to CURL import flows. - Consolidated and rearranged steps in CURL import flow test cases for better readability and organization. - **New Features** - Introduced `AppCURLImportModal` component to handle CURL command imports within the API editor. - Added constants `SET_CURL_MODAL_OPEN` and `SET_CURL_MODAL_CLOSE` for managing the state of the CURL modal. - **Style** - Updated selector formats and added proper commas in the `ApiEditor.js` file. - **Chores** - Removed unused constants and functions related to CURL import page paths across multiple files for cleaner codebase. - Streamlined the management of the CURL import modal state in the reducer and added relevant selectors. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
38 lines
1.5 KiB
JavaScript
38 lines
1.5 KiB
JavaScript
export default {
|
|
curlImportBtn: ".t--importBtn",
|
|
createBlankApiCard: ".t--createBlankApiCard",
|
|
eachProviderCard: ".t--eachProviderCard",
|
|
nameOfApi: ".t--nameOfApi",
|
|
ApiNameField: ".t--action-name-edit-field",
|
|
addToPageBtn: ".t--addToPageBtn",
|
|
ApiActionMenu: "[data-testid=\"more-action-trigger\"]",
|
|
ApiDeleteBtn: ".t--apiFormDeleteBtn",
|
|
ApiRunBtn: ".t--apiFormRunBtn",
|
|
addToPageBtnsId: ".t--addToPageButtons",
|
|
ApiHomePage: ".t--apiHomePage",
|
|
formActionButtons: ".t--formActionButtons",
|
|
dataSourceField: ".t--dataSourceField",
|
|
responseBody: ".CodeMirror-code span.cm-string.cm-property",
|
|
ApiVerb: ".t--apiFormHttpMethod div",
|
|
apiPaginationNextText: ".t--apiFormPaginationNext",
|
|
apiPaginationPrevText: ".t--apiFormPaginationPrev",
|
|
apiPaginationPrevTest: ".t--apiFormPaginationPrevTest",
|
|
apiPaginationNextTest: ".t--apiFormPaginationNextTest",
|
|
apiPaginationTab:
|
|
".t--apiFormPaginationType label:contains('Paginate with response URL') input",
|
|
apiTab: ".react-tabs__tab-list li",
|
|
bodyType: ".t--apiFormPostBodyType",
|
|
bodyTypeSelected: "[data-testid=\"t--api-body-tab-switch\"] .rc-select-selection-item",
|
|
bodyTab: "Body",
|
|
headersTab: "Header",
|
|
jsonResponseTab: "[data-value='JSON']",
|
|
tableResponseTab: "[data-value='TABLE']",
|
|
rawResponseTab: "[data-value='RAW']",
|
|
httpDropDownOptions: ".rc-select-item",
|
|
codeEditorWrapper: ".t--code-editor-wrapper",
|
|
apiSearchHint: ".datasource-hint",
|
|
slashCommandButton: ".commands-button",
|
|
apiResponseObject: ".object-key",
|
|
apiDebuggerLink: ".debugger-entity-link",
|
|
};
|