├── .DS_Store ├── .eslintrc.json ├── .github └── workflows │ └── webpack.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── _redirects ├── api └── index.js ├── backend ├── controllers │ └── databaseController.js └── database.js ├── frontend ├── .DS_Store ├── App.jsx ├── apiSlice.js ├── assets │ ├── copy_icon.png │ ├── copy_icon_copied.png │ ├── dropdown_icon.png │ ├── dropdown_icon_white.png │ ├── favicon.png │ ├── info_icon.png │ ├── play_icon_black.png │ ├── play_icon_white.png │ ├── readmeScreenshots │ │ ├── erd_screenshot_readme.png │ │ ├── fullshot_screenshot_readme.png │ │ ├── hosted_connection_login_screenshot_readme.png │ │ ├── join_added_to_query_screenshot_readme.png │ │ ├── join_screenshot_readme.png │ │ ├── join_selection_screenshot_readme.png │ │ ├── landing_page_screenshot_readme.png │ │ ├── local_connection_login_screenshot_readme.png │ │ ├── query_result_table_screenshot_readme.png │ │ ├── query_results_screenshot_readme.png │ │ └── your_query_screenshot_readme.png │ ├── yesql_logo.png │ └── yesql_logo_2.png ├── index.js ├── querySlice.js ├── react │ ├── components │ │ ├── ClauseDropdown.jsx │ │ ├── DBFlow.jsx │ │ ├── DBForm.jsx │ │ ├── DBQuery.jsx │ │ ├── JoinModal.jsx │ │ ├── LandingPageText.jsx │ │ ├── Navbar.jsx │ │ ├── OnColumnsModal.jsx │ │ ├── TestResults.jsx │ │ └── TestResultsModal.jsx │ ├── containers │ │ ├── DBFlowContainer.jsx │ │ ├── FormPage.jsx │ │ ├── HostedFormPage.jsx │ │ └── Landing.jsx │ ├── customNode.js │ ├── dropdownData.jsx │ └── tableNode.js ├── store.js └── styles │ └── index.scss ├── index.html ├── package.json ├── vercel.json └── webpack.config.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/.DS_Store -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/webpack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/.github/workflows/webpack.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | .vercel 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/README.md -------------------------------------------------------------------------------- /_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/api/index.js -------------------------------------------------------------------------------- /backend/controllers/databaseController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/backend/controllers/databaseController.js -------------------------------------------------------------------------------- /backend/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/backend/database.js -------------------------------------------------------------------------------- /frontend/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/.DS_Store -------------------------------------------------------------------------------- /frontend/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/App.jsx -------------------------------------------------------------------------------- /frontend/apiSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/apiSlice.js -------------------------------------------------------------------------------- /frontend/assets/copy_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/assets/copy_icon.png -------------------------------------------------------------------------------- /frontend/assets/copy_icon_copied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/assets/copy_icon_copied.png -------------------------------------------------------------------------------- /frontend/assets/dropdown_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/assets/dropdown_icon.png -------------------------------------------------------------------------------- /frontend/assets/dropdown_icon_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/assets/dropdown_icon_white.png -------------------------------------------------------------------------------- /frontend/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/assets/favicon.png -------------------------------------------------------------------------------- /frontend/assets/info_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/assets/info_icon.png -------------------------------------------------------------------------------- /frontend/assets/play_icon_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/assets/play_icon_black.png -------------------------------------------------------------------------------- /frontend/assets/play_icon_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/assets/play_icon_white.png -------------------------------------------------------------------------------- /frontend/assets/readmeScreenshots/erd_screenshot_readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/assets/readmeScreenshots/erd_screenshot_readme.png -------------------------------------------------------------------------------- /frontend/assets/readmeScreenshots/fullshot_screenshot_readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/assets/readmeScreenshots/fullshot_screenshot_readme.png -------------------------------------------------------------------------------- /frontend/assets/readmeScreenshots/hosted_connection_login_screenshot_readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/assets/readmeScreenshots/hosted_connection_login_screenshot_readme.png -------------------------------------------------------------------------------- /frontend/assets/readmeScreenshots/join_added_to_query_screenshot_readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/assets/readmeScreenshots/join_added_to_query_screenshot_readme.png -------------------------------------------------------------------------------- /frontend/assets/readmeScreenshots/join_screenshot_readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/assets/readmeScreenshots/join_screenshot_readme.png -------------------------------------------------------------------------------- /frontend/assets/readmeScreenshots/join_selection_screenshot_readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/assets/readmeScreenshots/join_selection_screenshot_readme.png -------------------------------------------------------------------------------- /frontend/assets/readmeScreenshots/landing_page_screenshot_readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/assets/readmeScreenshots/landing_page_screenshot_readme.png -------------------------------------------------------------------------------- /frontend/assets/readmeScreenshots/local_connection_login_screenshot_readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/assets/readmeScreenshots/local_connection_login_screenshot_readme.png -------------------------------------------------------------------------------- /frontend/assets/readmeScreenshots/query_result_table_screenshot_readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/assets/readmeScreenshots/query_result_table_screenshot_readme.png -------------------------------------------------------------------------------- /frontend/assets/readmeScreenshots/query_results_screenshot_readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/assets/readmeScreenshots/query_results_screenshot_readme.png -------------------------------------------------------------------------------- /frontend/assets/readmeScreenshots/your_query_screenshot_readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/assets/readmeScreenshots/your_query_screenshot_readme.png -------------------------------------------------------------------------------- /frontend/assets/yesql_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/assets/yesql_logo.png -------------------------------------------------------------------------------- /frontend/assets/yesql_logo_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/assets/yesql_logo_2.png -------------------------------------------------------------------------------- /frontend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/index.js -------------------------------------------------------------------------------- /frontend/querySlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/querySlice.js -------------------------------------------------------------------------------- /frontend/react/components/ClauseDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/react/components/ClauseDropdown.jsx -------------------------------------------------------------------------------- /frontend/react/components/DBFlow.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/react/components/DBFlow.jsx -------------------------------------------------------------------------------- /frontend/react/components/DBForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/react/components/DBForm.jsx -------------------------------------------------------------------------------- /frontend/react/components/DBQuery.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/react/components/DBQuery.jsx -------------------------------------------------------------------------------- /frontend/react/components/JoinModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/react/components/JoinModal.jsx -------------------------------------------------------------------------------- /frontend/react/components/LandingPageText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/react/components/LandingPageText.jsx -------------------------------------------------------------------------------- /frontend/react/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/react/components/Navbar.jsx -------------------------------------------------------------------------------- /frontend/react/components/OnColumnsModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/react/components/OnColumnsModal.jsx -------------------------------------------------------------------------------- /frontend/react/components/TestResults.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/react/components/TestResults.jsx -------------------------------------------------------------------------------- /frontend/react/components/TestResultsModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/react/components/TestResultsModal.jsx -------------------------------------------------------------------------------- /frontend/react/containers/DBFlowContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/react/containers/DBFlowContainer.jsx -------------------------------------------------------------------------------- /frontend/react/containers/FormPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/react/containers/FormPage.jsx -------------------------------------------------------------------------------- /frontend/react/containers/HostedFormPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/react/containers/HostedFormPage.jsx -------------------------------------------------------------------------------- /frontend/react/containers/Landing.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/react/containers/Landing.jsx -------------------------------------------------------------------------------- /frontend/react/customNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/react/customNode.js -------------------------------------------------------------------------------- /frontend/react/dropdownData.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/react/dropdownData.jsx -------------------------------------------------------------------------------- /frontend/react/tableNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/react/tableNode.js -------------------------------------------------------------------------------- /frontend/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/store.js -------------------------------------------------------------------------------- /frontend/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/frontend/styles/index.scss -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/package.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/vercel.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oslabs-beta/YESQL/HEAD/webpack.config.js --------------------------------------------------------------------------------