* improve some types * improve further * clean up a bit more * refactor loading state * move loading state up * remove isLoading references * remove unused props and make fetch connector error work * remove special component for name * remove top level state for unifinished flows * start removing uiwidget * Update airbyte-webapp/src/views/Connector/ConnectorCard/ConnectorCard.module.scss Co-authored-by: Tim Roes <tim@airbyte.io> * remove undefined option for selected id * remove unused prop * fix types * remove uiwidget state * clean up * adjust comment * handle errors in a nice way * do not respect default on oneOf fields * rename to formblock * reduce re-renders * pass error to secure inputs * simplify and improve styling * align top * code review * remove comment * review comments * rename file * be strict about boolean values * add example * track form error in error boundary * review comments * handle unexpected cases better * enrich error with connector id * 🪟🎉 Add copy stream button (#20577) * add copy stream button * review comments * rename prop * 🪟🎉 Connector builder: Integrate connector form for test input (#20385) * move connector builder components into the same shared components/connectorBuilder directory * move diff over from poc branch * save current progress * add modal for adding streams * focus stream after adding and reset button style * add reset confirm modal and select view on add * style global config and streams buttons * styling improvements * handle long stream names better * pull in connector manifest schema directly * add box shadows to resizable panels * upgrade orval and use connector manifest schema directly * remove airbyte protocol from connector builder api spec * generate python models from openapi change * fix position of yaml toggle * handle no stream case with better looking message * group global fields into single object and fix console error * confirmation modal on toggling dirty form + cleanup * fix connector name display * undo change to manifest schema * remove commented code * remove unnecessary change * fix spacing * use shadow mixin for connector img * add comment about connector img * change onSubmit to no-op * remove console log * clean up styling * simplify sidebar to remove StreamSelectButton component * swap colors of toggle * move FormikPatch to src/core/form * move types up to connectorBuilder/ level * use grid display for ui yaml toggle button * use spread instead of setting array index directly * add intl in missing places * pull connector manifest schema in through separate openapi spec * use correct intl string id * throttle setting json manifest in yaml editor * use button prop instead of manually styling * consolidate AddStreamButton styles * fix sidebar flex styles * use specific flex properties instead of flex * clean up download and reset button styles * use row-reverse for yaml editor download button * fix stream selector styles to remove margins * give connector setup guide panel same corner and shadow styles * remove blur from page display * set view to stream when selected in test panel * add placeholder when stream name is empty * switch to index-based stream selection to preserve testing panel selected stream on rename * handle empty name in stream selector * make connector form work in connector builder * fix small stuff * add warning label * review comments * adjust translation Co-authored-by: lmossman <lake@airbyte.io> * use request_body_json instead of request_body_data * 🪟 🎨 Move `Add` button into the line of Connector Builder key value list fields (#20699) * move add button into line * add stories for empty with control, and content + control * change button name to Control * 🪟🎉 Connector builder: Allow defining inputs (#20431) * move connector builder components into the same shared components/connectorBuilder directory * move diff over from poc branch * save current progress * add modal for adding streams * focus stream after adding and reset button style * add reset confirm modal and select view on add * style global config and streams buttons * styling improvements * handle long stream names better * pull in connector manifest schema directly * add box shadows to resizable panels * upgrade orval and use connector manifest schema directly * remove airbyte protocol from connector builder api spec * generate python models from openapi change * fix position of yaml toggle * handle no stream case with better looking message * group global fields into single object and fix console error * confirmation modal on toggling dirty form + cleanup * fix connector name display * undo change to manifest schema * remove commented code * remove unnecessary change * fix spacing * use shadow mixin for connector img * add comment about connector img * change onSubmit to no-op * remove console log * clean up styling * simplify sidebar to remove StreamSelectButton component * swap colors of toggle * move FormikPatch to src/core/form * move types up to connectorBuilder/ level * use grid display for ui yaml toggle button * use spread instead of setting array index directly * add intl in missing places * pull connector manifest schema in through separate openapi spec * use correct intl string id * throttle setting json manifest in yaml editor * use button prop instead of manually styling * consolidate AddStreamButton styles * fix sidebar flex styles * use specific flex properties instead of flex * clean up download and reset button styles * use row-reverse for yaml editor download button * fix stream selector styles to remove margins * give connector setup guide panel same corner and shadow styles * remove blur from page display * set view to stream when selected in test panel * add placeholder when stream name is empty * switch to index-based stream selection to preserve testing panel selected stream on rename * handle empty name in stream selector * make connector form work in connector builder * wip * fix small stuff * add basic input UI * user inputs * make most of inputs configuration work * fix a bunch of stuff * handle unknown config types * add warning label * fix label * fix some styling * review comments * improve state management and error handling * handle stored form values that don't contain new fields properly * Update airbyte-webapp/src/locales/en.json Co-authored-by: Lake Mossman <lake@airbyte.io> * Update airbyte-webapp/src/components/connectorBuilder/Builder/InputsView.tsx Co-authored-by: Lake Mossman <lake@airbyte.io> * inputs editing weirdness * input form reset * using the Label component * 🪟🎉 Connector builder authentication (#20645) * allow auth configuration * check for conflicts with the inferred inputs * fix invisible inputs * reduce redundancy and hide advanced input options for inferred inputs * unnecessary validation * typo * unnecessary effect hook * build spec even for invalid forms but do not update stream list * fix keys * 🪟🎉 Connector builder: Session token and oauth authentication (#20712) * session token and oauth authentication * fill in session token variable * typos * make sure validation error does not go away * 🪟🎉 Connector builder: Always validate inputs form (#20664) * validate user input outside of form * review comments Co-authored-by: lmossman <lake@airbyte.io> Co-authored-by: lmossman <lake@airbyte.io> * fix merge conflict with dropdown prop being renamed to control * [Connector Builder] Add paginator (#20698) * move connector builder components into the same shared components/connectorBuilder directory * move diff over from poc branch * save current progress * add modal for adding streams * focus stream after adding and reset button style * add reset confirm modal and select view on add * style global config and streams buttons * styling improvements * handle long stream names better * pull in connector manifest schema directly * add box shadows to resizable panels * upgrade orval and use connector manifest schema directly * remove airbyte protocol from connector builder api spec * generate python models from openapi change * fix position of yaml toggle * handle no stream case with better looking message * group global fields into single object and fix console error * confirmation modal on toggling dirty form + cleanup * fix connector name display * undo change to manifest schema * remove commented code * remove unnecessary change * fix spacing * use shadow mixin for connector img * add comment about connector img * change onSubmit to no-op * remove console log * clean up styling * simplify sidebar to remove StreamSelectButton component * swap colors of toggle * move FormikPatch to src/core/form * move types up to connectorBuilder/ level * use grid display for ui yaml toggle button * use spread instead of setting array index directly * add intl in missing places * pull connector manifest schema in through separate openapi spec * use correct intl string id * throttle setting json manifest in yaml editor * use button prop instead of manually styling * consolidate AddStreamButton styles * fix sidebar flex styles * use specific flex properties instead of flex * clean up download and reset button styles * use row-reverse for yaml editor download button * fix stream selector styles to remove margins * give connector setup guide panel same corner and shadow styles * remove blur from page display * set view to stream when selected in test panel * add placeholder when stream name is empty * switch to index-based stream selection to preserve testing panel selected stream on rename * handle empty name in stream selector * make connector form work in connector builder * wip * fix small stuff * add basic input UI * user inputs * make most of inputs configuration work * fix a bunch of stuff * handle unknown config types * add warning label * fix label * fix some styling * review comments * improve state management and error handling * allow auth configuration * check for conflicts with the inferred inputs * fix invisible inputs * handle stored form values that don't contain new fields properly * session token and oauth authentication * fill in session token variable * fix merge of default values * add primaryKey and cursorField to builder types, and consolidate default valeues to types.ts * add cursor and primary key fields to ui * save * add page size and token option inputs * fixes after rebase * add pagination * fix pagination types * handle empty field_name better * Update airbyte-webapp/src/locales/en.json Co-authored-by: Lake Mossman <lake@airbyte.io> * Update airbyte-webapp/src/components/connectorBuilder/Builder/InputsView.tsx Co-authored-by: Lake Mossman <lake@airbyte.io> * inputs editing weirdness * input form reset * using the Label component * reduce redundancy and hide advanced input options for inferred inputs * unnecessary validation * typo * unnecessary effect hook * build spec even for invalid forms but do not update stream list * typos * make sure validation error does not go away * make primary key and cursor optional, and reorder * save toggle group progress * fix style of toggle label * handle empty values better * fix page size/token option field validation and rendering * handle cursor pagination page size option correctly Co-authored-by: Joe Reuter <joe@airbyte.io> * [Connector Builder] Add stream slicer (#20748) * move connector builder components into the same shared components/connectorBuilder directory * move diff over from poc branch * save current progress * add modal for adding streams * focus stream after adding and reset button style * add reset confirm modal and select view on add * style global config and streams buttons * styling improvements * handle long stream names better * pull in connector manifest schema directly * add box shadows to resizable panels * upgrade orval and use connector manifest schema directly * remove airbyte protocol from connector builder api spec * generate python models from openapi change * fix position of yaml toggle * handle no stream case with better looking message * group global fields into single object and fix console error * confirmation modal on toggling dirty form + cleanup * fix connector name display * undo change to manifest schema * remove commented code * remove unnecessary change * fix spacing * use shadow mixin for connector img * add comment about connector img * change onSubmit to no-op * remove console log * clean up styling * simplify sidebar to remove StreamSelectButton component * swap colors of toggle * move FormikPatch to src/core/form * move types up to connectorBuilder/ level * use grid display for ui yaml toggle button * use spread instead of setting array index directly * add intl in missing places * pull connector manifest schema in through separate openapi spec * use correct intl string id * throttle setting json manifest in yaml editor * use button prop instead of manually styling * consolidate AddStreamButton styles * fix sidebar flex styles * use specific flex properties instead of flex * clean up download and reset button styles * use row-reverse for yaml editor download button * fix stream selector styles to remove margins * give connector setup guide panel same corner and shadow styles * remove blur from page display * set view to stream when selected in test panel * add placeholder when stream name is empty * switch to index-based stream selection to preserve testing panel selected stream on rename * handle empty name in stream selector * make connector form work in connector builder * wip * fix small stuff * add basic input UI * user inputs * make most of inputs configuration work * fix a bunch of stuff * handle unknown config types * add warning label * fix label * fix some styling * review comments * improve state management and error handling * allow auth configuration * check for conflicts with the inferred inputs * fix invisible inputs * handle stored form values that don't contain new fields properly * session token and oauth authentication * fill in session token variable * fix merge of default values * add primaryKey and cursorField to builder types, and consolidate default valeues to types.ts * add cursor and primary key fields to ui * save * add page size and token option inputs * fixes after rebase * add pagination * fix pagination types * handle empty field_name better * Update airbyte-webapp/src/locales/en.json Co-authored-by: Lake Mossman <lake@airbyte.io> * Update airbyte-webapp/src/components/connectorBuilder/Builder/InputsView.tsx Co-authored-by: Lake Mossman <lake@airbyte.io> * inputs editing weirdness * input form reset * using the Label component * reduce redundancy and hide advanced input options for inferred inputs * unnecessary validation * typo * unnecessary effect hook * build spec even for invalid forms but do not update stream list * typos * make sure validation error does not go away * make primary key and cursor optional, and reorder * save toggle group progress * fix style of toggle label * handle empty values better * fix page size/token option field validation and rendering * handle cursor pagination page size option correctly * save stream slicer progress * finish stream slicer * fix stream slicer fields and validation Co-authored-by: Joe Reuter <joe@airbyte.io> * debounce form builder values update to reduce load * 🪟🔧 Connector builder: use new lowcode manifest (#20715) * use new manifest yaml * Update airbyte-webapp/src/components/connectorBuilder/types.ts Co-authored-by: Lake Mossman <lake@airbyte.io> * use updated manifest types Co-authored-by: Lake Mossman <lake@airbyte.io> * add substream slicer * add substream and cartesian slicer * debounce validation as well * akways show stream test button in error state if there are errors * fix type of oauth input * add validation schema for add stream form * validate all views on test click * add type to prevent console warning * do not allow path for substream slicer request option * do not show request option for substream slicer * rewrite stream slice field tooltip Co-authored-by: Tim Roes <tim@airbyte.io> Co-authored-by: lmossman <lake@airbyte.io>
187 lines
5.9 KiB
JSON
187 lines
5.9 KiB
JSON
{
|
|
"name": "airbyte-webapp",
|
|
"version": "0.40.26",
|
|
"private": true,
|
|
"engines": {
|
|
"node": "16.18.1"
|
|
},
|
|
"scripts": {
|
|
"prepare": "cd .. && husky install airbyte-webapp/.husky",
|
|
"prestart": "npm run generate-client",
|
|
"start": "craco start",
|
|
"prestart:cloud": "npm run generate-client",
|
|
"start:cloud": "AB_ENV=${AB_ENV-frontend-dev} node -r ./scripts/environment.js ./node_modules/.bin/craco start",
|
|
"prebuild": "npm run generate-client",
|
|
"build": "BUILD_PATH='./build/app' craco build",
|
|
"pretest": "npm run generate-client",
|
|
"test": "craco test",
|
|
"test:coverage": "npm test -- --coverage --watchAll=false",
|
|
"format": "prettier --write 'src/**/*.{ts,tsx}'",
|
|
"storybook": "start-storybook -p 9009 --quiet",
|
|
"build:storybook": "build-storybook -o 'build/storybook'",
|
|
"lint": "eslint --ext js,ts,tsx src",
|
|
"stylelint": "stylelint \"**/*.{css,scss}\"",
|
|
"stylelint-check": "stylelint-config-prettier-scss-check",
|
|
"license-check": "node ./scripts/license-check.js",
|
|
"generate-client": "orval",
|
|
"validate-links": "ts-node --skip-project ./scripts/validate-links.ts"
|
|
},
|
|
"dependencies": {
|
|
"@datadog/browser-rum": "^4.21.2",
|
|
"@floating-ui/react-dom": "^1.0.0",
|
|
"@fortawesome/fontawesome-svg-core": "^6.1.1",
|
|
"@fortawesome/free-brands-svg-icons": "^6.1.1",
|
|
"@fortawesome/free-regular-svg-icons": "^6.1.1",
|
|
"@fortawesome/free-solid-svg-icons": "^6.1.1",
|
|
"@fortawesome/react-fontawesome": "^0.1.18",
|
|
"@headlessui/react": "^1.6.5",
|
|
"@monaco-editor/react": "^4.4.5",
|
|
"@sentry/react": "^6.19.6",
|
|
"@sentry/tracing": "^6.19.6",
|
|
"@tanstack/react-table": "^8.7.0",
|
|
"@types/segment-analytics": "^0.0.34",
|
|
"@types/uuid": "^9.0.0",
|
|
"classnames": "^2.3.1",
|
|
"dayjs": "^1.11.3",
|
|
"firebase": "^9.8.2",
|
|
"flat": "^5.0.2",
|
|
"formik": "^2.2.9",
|
|
"framer-motion": "^6.3.11",
|
|
"js-yaml": "^4.1.0",
|
|
"launchdarkly-js-client-sdk": "^2.22.1",
|
|
"lodash": "^4.17.21",
|
|
"mdast": "^3.0.0",
|
|
"query-string": "^6.13.1",
|
|
"react": "^17.0.2",
|
|
"react-datepicker": "^4.8.0",
|
|
"react-dom": "^17.0.2",
|
|
"react-helmet-async": "^1.3.0",
|
|
"react-intl": "^6.1.1",
|
|
"react-lazylog": "^4.5.3",
|
|
"react-markdown": "^7.0.1",
|
|
"react-paginate": "^8.1.3",
|
|
"react-query": "^3.39.1",
|
|
"react-reflex": "^4.0.9",
|
|
"react-router-dom": "^6.3.0",
|
|
"react-select": "^5.4.0",
|
|
"react-slick": "^0.29.0",
|
|
"react-table": "^7.8.0",
|
|
"react-use": "^17.4.0",
|
|
"react-use-intercom": "^1.5.2",
|
|
"react-widgets": "^4.6.1",
|
|
"recharts": "^2.1.13",
|
|
"rehype-slug": "^5.0.1",
|
|
"rehype-urls": "^1.1.1",
|
|
"remark-directive": "^2.0.1",
|
|
"remark-frontmatter": "^4.0.1",
|
|
"remark-gfm": "^3.0.0",
|
|
"rxjs": "^7.5.5",
|
|
"sanitize-html": "^2.7.1",
|
|
"sass": "^1.52.2",
|
|
"styled-components": "^5.3.5",
|
|
"typesafe-actions": "^5.1.0",
|
|
"unist-util-visit": "^4.1.0",
|
|
"uuid": "^9.0.0",
|
|
"yup": "^0.32.11"
|
|
},
|
|
"devDependencies": {
|
|
"@airbyte/eslint-plugin": "file:./packages/eslint-plugin",
|
|
"@craco/craco": "^7.0.0-alpha.7",
|
|
"@storybook/addon-essentials": "^6.5.7",
|
|
"@storybook/builder-webpack5": "^6.5.7",
|
|
"@storybook/manager-webpack5": "^6.5.7",
|
|
"@storybook/preset-create-react-app": "^4.1.2",
|
|
"@storybook/react": "^6.5.7",
|
|
"@storybook/theming": "^6.5.7",
|
|
"@testing-library/jest-dom": "^5.16.4",
|
|
"@testing-library/react": "^12.1.3",
|
|
"@testing-library/react-hooks": "^7.0.2",
|
|
"@testing-library/user-event": "^13.5.0",
|
|
"@types/flat": "^5.0.2",
|
|
"@types/jest": "^27.4.1",
|
|
"@types/js-yaml": "^4.0.5",
|
|
"@types/json-schema": "^7.0.11",
|
|
"@types/lodash": "^4.14.182",
|
|
"@types/node": "^17.0.40",
|
|
"@types/query-string": "^6.3.0",
|
|
"@types/react": "^17.0.39",
|
|
"@types/react-datepicker": "^4.8.0",
|
|
"@types/react-dom": "^17.0.11",
|
|
"@types/react-helmet": "^6.1.5",
|
|
"@types/react-lazylog": "^4.5.1",
|
|
"@types/react-paginate": "^7.1.1",
|
|
"@types/react-slick": "^0.23.10",
|
|
"@types/react-table": "^7.7.12",
|
|
"@types/react-widgets": "^4.4.7",
|
|
"@types/sanitize-html": "^2.6.2",
|
|
"@types/styled-components": "^5.1.25",
|
|
"@types/unist": "^2.0.5",
|
|
"@typescript-eslint/eslint-plugin": "^5.27.1",
|
|
"@typescript-eslint/parser": "^5.27.1",
|
|
"dotenv": "^16.0.3",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-config-react-app": "^7.0.1",
|
|
"eslint-plugin-css-modules": "^2.11.0",
|
|
"eslint-plugin-jest": "^26.5.3",
|
|
"eslint-plugin-jsx-a11y": "^6.6.1",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"eslint-plugin-unused-imports": "^2.0.0",
|
|
"express": "^4.18.1",
|
|
"husky": "^8.0.1",
|
|
"license-checker": "^25.0.1",
|
|
"lint-staged": "^12.3.7",
|
|
"mini-css-extract-plugin": "^2.6.1",
|
|
"node-fetch": "^2.6.7",
|
|
"orval": "^6.11.0-alpha.10",
|
|
"prettier": "^2.6.2",
|
|
"react-scripts": "^5.0.1",
|
|
"react-select-event": "^5.5.0",
|
|
"storybook-addon-mock": "^2.4.1",
|
|
"stylelint": "^14.9.1",
|
|
"stylelint-config-css-modules": "^4.1.0",
|
|
"stylelint-config-prettier-scss": "^0.0.1",
|
|
"stylelint-config-standard": "^26.0.0",
|
|
"stylelint-config-standard-scss": "^5.0.0",
|
|
"tar": "^6.1.11",
|
|
"timezone-mock": "^1.3.4",
|
|
"tmpl": "^1.0.5",
|
|
"ts-node": "^10.8.1",
|
|
"typescript": "^4.7.3"
|
|
},
|
|
"overrides": {
|
|
"minimatch": "^3.0.5"
|
|
},
|
|
"lint-staged": {
|
|
"src/**/*.{js,jsx,ts,tsx}": [
|
|
"eslint --fix"
|
|
],
|
|
"src/**/*.{css,scss,md,json}": [
|
|
"prettier --write"
|
|
],
|
|
"{public,src}/**/*.{css,scss}": [
|
|
"stylelint --fix"
|
|
]
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"jest": {
|
|
"transformIgnorePatterns": [],
|
|
"snapshotSerializers": [
|
|
"./scripts/classname-serializer.js"
|
|
],
|
|
"coveragePathIgnorePatterns": [
|
|
".stories.tsx"
|
|
]
|
|
}
|
|
}
|