├── .env.example ├── .eslintignore ├── .eslintrc.js ├── .github ├── README.md └── husky │ ├── commit-msg │ └── pre-commit ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── commitlint.config.js ├── custom-example ├── components │ └── elements │ │ └── header.tsx └── images │ └── custom-logo.png ├── deploy ├── meta-redirect-dev.html ├── meta-redirect-prod.html ├── meta-redirect-staging.html └── redirect.html ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-ssr.js ├── package.json ├── scripts ├── deploy.bash ├── install_husky.bash ├── publish.bash └── update_readme.bash ├── src ├── components │ ├── cell │ │ ├── editors │ │ │ └── foreignKey.tsx │ │ └── renderers │ │ │ ├── foreignKey.tsx │ │ │ └── primaryKey.tsx │ ├── common │ │ ├── addData.tsx │ │ ├── authError.tsx │ │ ├── authWrapper.tsx │ │ ├── breadcrumb.tsx │ │ ├── contextMenu │ │ │ ├── index.tsx │ │ │ ├── schemaMenuItem.tsx │ │ │ └── tableMenuItem.tsx │ │ ├── delayed.tsx │ │ ├── deleteModal.tsx │ │ ├── emptyModal │ │ │ ├── index.tsx │ │ │ └── noItem.tsx │ │ ├── filters │ │ │ ├── filterPane.tsx │ │ │ └── filterRow.tsx │ │ ├── inviteUserModal.tsx │ │ ├── linkForeignKey.tsx │ │ ├── members.tsx │ │ ├── redirect.tsx │ │ ├── rolePermissions.tsx │ │ ├── selectGrid.tsx │ │ ├── sidePanelForm │ │ │ ├── column.tsx │ │ │ ├── database.tsx │ │ │ ├── index.tsx │ │ │ ├── organization.tsx │ │ │ ├── placeholders.ts │ │ │ ├── row.tsx │ │ │ ├── table.tsx │ │ │ ├── token.tsx │ │ │ └── view.tsx │ │ ├── sidebar │ │ │ ├── databaseSettings.tsx │ │ │ ├── debugSettings.tsx │ │ │ └── orgs.tsx │ │ ├── viewButton.tsx │ │ └── viewForeignKeyData.tsx │ ├── dashboard │ │ ├── MyDatabases.tsx │ │ ├── createSchema.tsx │ │ ├── organizationDatabasesList.tsx │ │ └── schemaTablesList.tsx │ ├── elements │ │ ├── field.tsx │ │ ├── foreignKey.tsx │ │ ├── formMaker.tsx │ │ ├── header.tsx │ │ ├── headerMenu.tsx │ │ ├── modal.tsx │ │ ├── sidePanel.tsx │ │ ├── tabs.tsx │ │ └── userInput.tsx │ ├── graph.tsx │ ├── grid.tsx │ ├── layouts │ │ ├── layout.tsx │ │ ├── organizationLayout.tsx │ │ ├── schemaLayout.tsx │ │ └── tableLayout.tsx │ ├── loading.tsx │ ├── notFound.tsx │ ├── seo.tsx │ └── sidebar.tsx ├── graphql │ ├── mutations │ │ └── wb.ts │ └── queries │ │ ├── table.ts │ │ └── wb.ts ├── images │ ├── gatsby-astronaut.png │ ├── gatsby-icon.png │ ├── whitebrick-logo-square.svg │ └── whitebrick-logo.svg ├── pages │ ├── 404.tsx │ ├── [organizationName] │ │ ├── [databaseName] │ │ │ ├── [tableName].tsx │ │ │ └── index.tsx │ │ └── index.tsx │ ├── db │ │ └── [databaseName] │ │ │ ├── [tableName].tsx │ │ │ └── index.tsx │ ├── home.tsx │ ├── index.tsx │ ├── profile.tsx │ ├── redirect.tsx │ └── sign-up.tsx ├── state │ ├── actions │ │ └── index.ts │ ├── reducers │ │ └── gridReducers.ts │ ├── store │ │ └── index.ts │ └── types │ │ └── gridTypes.ts ├── styles │ ├── loading.css │ ├── sidebar.css │ └── style.css ├── types │ ├── index.ts │ ├── organization.ts │ ├── schema.ts │ └── table.ts └── utils │ ├── actions │ ├── column.ts │ ├── index.ts │ └── row.ts │ ├── checkPermission.ts │ ├── formatError.ts │ ├── objectEmpty.ts │ ├── queryParams.ts │ ├── resetPassword.ts │ ├── select.ts │ ├── setOrder.ts │ └── updateTableData.ts ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/.github/husky/commit-msg -------------------------------------------------------------------------------- /.github/husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-conventional'] }; 2 | -------------------------------------------------------------------------------- /custom-example/components/elements/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/custom-example/components/elements/header.tsx -------------------------------------------------------------------------------- /custom-example/images/custom-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/custom-example/images/custom-logo.png -------------------------------------------------------------------------------- /deploy/meta-redirect-dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/deploy/meta-redirect-dev.html -------------------------------------------------------------------------------- /deploy/meta-redirect-prod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/deploy/meta-redirect-prod.html -------------------------------------------------------------------------------- /deploy/meta-redirect-staging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/deploy/meta-redirect-staging.html -------------------------------------------------------------------------------- /deploy/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/deploy/redirect.html -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/gatsby-ssr.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/package.json -------------------------------------------------------------------------------- /scripts/deploy.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/scripts/deploy.bash -------------------------------------------------------------------------------- /scripts/install_husky.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/scripts/install_husky.bash -------------------------------------------------------------------------------- /scripts/publish.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/scripts/publish.bash -------------------------------------------------------------------------------- /scripts/update_readme.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/scripts/update_readme.bash -------------------------------------------------------------------------------- /src/components/cell/editors/foreignKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/cell/editors/foreignKey.tsx -------------------------------------------------------------------------------- /src/components/cell/renderers/foreignKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/cell/renderers/foreignKey.tsx -------------------------------------------------------------------------------- /src/components/cell/renderers/primaryKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/cell/renderers/primaryKey.tsx -------------------------------------------------------------------------------- /src/components/common/addData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/addData.tsx -------------------------------------------------------------------------------- /src/components/common/authError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/authError.tsx -------------------------------------------------------------------------------- /src/components/common/authWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/authWrapper.tsx -------------------------------------------------------------------------------- /src/components/common/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/common/contextMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/contextMenu/index.tsx -------------------------------------------------------------------------------- /src/components/common/contextMenu/schemaMenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/contextMenu/schemaMenuItem.tsx -------------------------------------------------------------------------------- /src/components/common/contextMenu/tableMenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/contextMenu/tableMenuItem.tsx -------------------------------------------------------------------------------- /src/components/common/delayed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/delayed.tsx -------------------------------------------------------------------------------- /src/components/common/deleteModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/deleteModal.tsx -------------------------------------------------------------------------------- /src/components/common/emptyModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/emptyModal/index.tsx -------------------------------------------------------------------------------- /src/components/common/emptyModal/noItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/emptyModal/noItem.tsx -------------------------------------------------------------------------------- /src/components/common/filters/filterPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/filters/filterPane.tsx -------------------------------------------------------------------------------- /src/components/common/filters/filterRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/filters/filterRow.tsx -------------------------------------------------------------------------------- /src/components/common/inviteUserModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/inviteUserModal.tsx -------------------------------------------------------------------------------- /src/components/common/linkForeignKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/linkForeignKey.tsx -------------------------------------------------------------------------------- /src/components/common/members.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/members.tsx -------------------------------------------------------------------------------- /src/components/common/redirect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/redirect.tsx -------------------------------------------------------------------------------- /src/components/common/rolePermissions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/rolePermissions.tsx -------------------------------------------------------------------------------- /src/components/common/selectGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/selectGrid.tsx -------------------------------------------------------------------------------- /src/components/common/sidePanelForm/column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/sidePanelForm/column.tsx -------------------------------------------------------------------------------- /src/components/common/sidePanelForm/database.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/sidePanelForm/database.tsx -------------------------------------------------------------------------------- /src/components/common/sidePanelForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/sidePanelForm/index.tsx -------------------------------------------------------------------------------- /src/components/common/sidePanelForm/organization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/sidePanelForm/organization.tsx -------------------------------------------------------------------------------- /src/components/common/sidePanelForm/placeholders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/sidePanelForm/placeholders.ts -------------------------------------------------------------------------------- /src/components/common/sidePanelForm/row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/sidePanelForm/row.tsx -------------------------------------------------------------------------------- /src/components/common/sidePanelForm/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/sidePanelForm/table.tsx -------------------------------------------------------------------------------- /src/components/common/sidePanelForm/token.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/sidePanelForm/token.tsx -------------------------------------------------------------------------------- /src/components/common/sidePanelForm/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/sidePanelForm/view.tsx -------------------------------------------------------------------------------- /src/components/common/sidebar/databaseSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/sidebar/databaseSettings.tsx -------------------------------------------------------------------------------- /src/components/common/sidebar/debugSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/sidebar/debugSettings.tsx -------------------------------------------------------------------------------- /src/components/common/sidebar/orgs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/sidebar/orgs.tsx -------------------------------------------------------------------------------- /src/components/common/viewButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/viewButton.tsx -------------------------------------------------------------------------------- /src/components/common/viewForeignKeyData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/common/viewForeignKeyData.tsx -------------------------------------------------------------------------------- /src/components/dashboard/MyDatabases.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/dashboard/MyDatabases.tsx -------------------------------------------------------------------------------- /src/components/dashboard/createSchema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/dashboard/createSchema.tsx -------------------------------------------------------------------------------- /src/components/dashboard/organizationDatabasesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/dashboard/organizationDatabasesList.tsx -------------------------------------------------------------------------------- /src/components/dashboard/schemaTablesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/dashboard/schemaTablesList.tsx -------------------------------------------------------------------------------- /src/components/elements/field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/elements/field.tsx -------------------------------------------------------------------------------- /src/components/elements/foreignKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/elements/foreignKey.tsx -------------------------------------------------------------------------------- /src/components/elements/formMaker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/elements/formMaker.tsx -------------------------------------------------------------------------------- /src/components/elements/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/elements/header.tsx -------------------------------------------------------------------------------- /src/components/elements/headerMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/elements/headerMenu.tsx -------------------------------------------------------------------------------- /src/components/elements/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/elements/modal.tsx -------------------------------------------------------------------------------- /src/components/elements/sidePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/elements/sidePanel.tsx -------------------------------------------------------------------------------- /src/components/elements/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/elements/tabs.tsx -------------------------------------------------------------------------------- /src/components/elements/userInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/elements/userInput.tsx -------------------------------------------------------------------------------- /src/components/graph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/graph.tsx -------------------------------------------------------------------------------- /src/components/grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/grid.tsx -------------------------------------------------------------------------------- /src/components/layouts/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/layouts/layout.tsx -------------------------------------------------------------------------------- /src/components/layouts/organizationLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/layouts/organizationLayout.tsx -------------------------------------------------------------------------------- /src/components/layouts/schemaLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/layouts/schemaLayout.tsx -------------------------------------------------------------------------------- /src/components/layouts/tableLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/layouts/tableLayout.tsx -------------------------------------------------------------------------------- /src/components/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/loading.tsx -------------------------------------------------------------------------------- /src/components/notFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/notFound.tsx -------------------------------------------------------------------------------- /src/components/seo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/seo.tsx -------------------------------------------------------------------------------- /src/components/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/components/sidebar.tsx -------------------------------------------------------------------------------- /src/graphql/mutations/wb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/graphql/mutations/wb.ts -------------------------------------------------------------------------------- /src/graphql/queries/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/graphql/queries/table.ts -------------------------------------------------------------------------------- /src/graphql/queries/wb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/graphql/queries/wb.ts -------------------------------------------------------------------------------- /src/images/gatsby-astronaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/images/gatsby-astronaut.png -------------------------------------------------------------------------------- /src/images/gatsby-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/images/gatsby-icon.png -------------------------------------------------------------------------------- /src/images/whitebrick-logo-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/images/whitebrick-logo-square.svg -------------------------------------------------------------------------------- /src/images/whitebrick-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/images/whitebrick-logo.svg -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/[organizationName]/[databaseName]/[tableName].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/pages/[organizationName]/[databaseName]/[tableName].tsx -------------------------------------------------------------------------------- /src/pages/[organizationName]/[databaseName]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/pages/[organizationName]/[databaseName]/index.tsx -------------------------------------------------------------------------------- /src/pages/[organizationName]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/pages/[organizationName]/index.tsx -------------------------------------------------------------------------------- /src/pages/db/[databaseName]/[tableName].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/pages/db/[databaseName]/[tableName].tsx -------------------------------------------------------------------------------- /src/pages/db/[databaseName]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/pages/db/[databaseName]/index.tsx -------------------------------------------------------------------------------- /src/pages/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/pages/home.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/pages/profile.tsx -------------------------------------------------------------------------------- /src/pages/redirect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/pages/redirect.tsx -------------------------------------------------------------------------------- /src/pages/sign-up.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/pages/sign-up.tsx -------------------------------------------------------------------------------- /src/state/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/state/actions/index.ts -------------------------------------------------------------------------------- /src/state/reducers/gridReducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/state/reducers/gridReducers.ts -------------------------------------------------------------------------------- /src/state/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/state/store/index.ts -------------------------------------------------------------------------------- /src/state/types/gridTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/state/types/gridTypes.ts -------------------------------------------------------------------------------- /src/styles/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/styles/loading.css -------------------------------------------------------------------------------- /src/styles/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/styles/sidebar.css -------------------------------------------------------------------------------- /src/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/styles/style.css -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/organization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/types/organization.ts -------------------------------------------------------------------------------- /src/types/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/types/schema.ts -------------------------------------------------------------------------------- /src/types/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/types/table.ts -------------------------------------------------------------------------------- /src/utils/actions/column.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/utils/actions/column.ts -------------------------------------------------------------------------------- /src/utils/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/utils/actions/index.ts -------------------------------------------------------------------------------- /src/utils/actions/row.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/utils/actions/row.ts -------------------------------------------------------------------------------- /src/utils/checkPermission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/utils/checkPermission.ts -------------------------------------------------------------------------------- /src/utils/formatError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/utils/formatError.ts -------------------------------------------------------------------------------- /src/utils/objectEmpty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/utils/objectEmpty.ts -------------------------------------------------------------------------------- /src/utils/queryParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/utils/queryParams.ts -------------------------------------------------------------------------------- /src/utils/resetPassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/utils/resetPassword.ts -------------------------------------------------------------------------------- /src/utils/select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/utils/select.ts -------------------------------------------------------------------------------- /src/utils/setOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/utils/setOrder.ts -------------------------------------------------------------------------------- /src/utils/updateTableData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/src/utils/updateTableData.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitebrick/whitebrick-client/HEAD/yarn.lock --------------------------------------------------------------------------------