├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package.json ├── public ├── cover.png └── vite.svg ├── src ├── App.tsx ├── assets │ └── react.svg ├── components │ ├── base │ │ ├── Loader.module.scss │ │ └── Loader.tsx │ ├── common │ │ ├── EditorTopBar.module.scss │ │ ├── EditorTopBar.tsx │ │ ├── ExplorerSearchBox.module.scss │ │ ├── ExplorerSearchBox.tsx │ │ ├── SideNavBar.module.scss │ │ └── SideNavBar.tsx │ ├── icons │ │ ├── APIDocIcon.tsx │ │ ├── APIDocsIcon.tsx │ │ ├── AddIcon.tsx │ │ ├── AppDrawerIcon.tsx │ │ ├── AppLogo.tsx │ │ ├── AppLogoIcon.tsx │ │ ├── ArrowRightIcon.tsx │ │ ├── ArrowUpDownIcon.tsx │ │ ├── BackIcon.tsx │ │ ├── Channelicon.tsx │ │ ├── CheckIcon.tsx │ │ ├── ChevronDownIcon.tsx │ │ ├── ChevronRightIcon.tsx │ │ ├── ClearIcon.tsx │ │ ├── CodeIcon.tsx │ │ ├── CollectionIcon.tsx │ │ ├── ColumnIcon.tsx │ │ ├── CommandIcon.tsx │ │ ├── CopyIcon.tsx │ │ ├── DatabaseIcon.tsx │ │ ├── Databases │ │ │ └── Postgres.tsx │ │ ├── DeleteIcon.tsx │ │ ├── DragHandlerIcon.tsx │ │ ├── EditIcon.tsx │ │ ├── EditorIcon.tsx │ │ ├── EnterIcon.tsx │ │ ├── HistoryIcon.tsx │ │ ├── KeywordIcon.tsx │ │ ├── KeywordTagIcon.tsx │ │ ├── LocationIcon.tsx │ │ ├── LockedIcon.tsx │ │ ├── Logo.tsx │ │ ├── LogoutIcon.tsx │ │ ├── MonitorIcon.tsx │ │ ├── MoreIcon.tsx │ │ ├── OpenIcon.tsx │ │ ├── OptionsIcon.tsx │ │ ├── PageIcon.tsx │ │ ├── PlayIcon.tsx │ │ ├── ProductIcon.tsx │ │ ├── ResetIcon.tsx │ │ ├── SaveIcon.tsx │ │ ├── SearchIcon.tsx │ │ ├── SendIcon.tsx │ │ ├── SettingsIcon.tsx │ │ ├── SiteIcon.tsx │ │ ├── StoreIcon.tsx │ │ ├── TableIcon.tsx │ │ ├── UnLockedIcon.tsx │ │ ├── WhatsappIcon.tsx │ │ ├── illustrations │ │ │ └── EmptyAPIsIcon.tsx │ │ └── integrations │ │ │ ├── AirtableIcon.tsx │ │ │ ├── AsanaIcon.tsx │ │ │ ├── ClickupIcon.tsx │ │ │ ├── DiscordIcon.tsx │ │ │ ├── EmailIcon.tsx │ │ │ ├── FigmaIcon.tsx │ │ │ ├── GitHubIcon.tsx │ │ │ ├── GoogleCalendarIcon.tsx │ │ │ ├── GoogleIcon.tsx │ │ │ ├── GoogleSheetsIcon.tsx │ │ │ ├── HackerNewsIcon.tsx │ │ │ ├── HubspotIcon.tsx │ │ │ ├── IntercomIcon.tsx │ │ │ ├── JiraIcon.tsx │ │ │ ├── LinearIcon.tsx │ │ │ ├── LinkedInIcon.tsx │ │ │ ├── MailChimpIcon.tsx │ │ │ ├── NotionIcon.tsx │ │ │ ├── PostgresIcon.tsx │ │ │ ├── RedditIcon.tsx │ │ │ ├── ShopifyIcon.tsx │ │ │ ├── SlackIcon.tsx │ │ │ ├── SpotifyIcon.tsx │ │ │ ├── TelegramIcon.tsx │ │ │ ├── WebflowIcon.tsx │ │ │ └── ZendeskIcon.tsx │ ├── layouts │ │ ├── AppLayout.module.scss │ │ ├── AppLayout.tsx │ │ ├── EditorLayout.module.scss │ │ └── EditorLayout.tsx │ ├── modules │ │ ├── Editor │ │ │ ├── Editor.module.scss │ │ │ ├── Editor.tsx │ │ │ └── theme.ts │ │ ├── EditorArea │ │ │ ├── EditorTab.tsx │ │ │ └── EditorView.tsx │ │ ├── Explorer │ │ │ ├── Explorer.module.scss │ │ │ ├── Explorer.tsx │ │ │ ├── Explorer.types.ts │ │ │ ├── History.module.scss │ │ │ ├── History.tsx │ │ │ ├── SavedQueries.module.scss │ │ │ ├── SavedQueries.tsx │ │ │ ├── TableRow.module.scss │ │ │ ├── TableRow.tsx │ │ │ ├── Tables.module.scss │ │ │ └── Tables.tsx │ │ └── ResultViewer │ │ │ ├── ErrorView.module.scss │ │ │ ├── ErrorView.tsx │ │ │ ├── ResultViewer.module.scss │ │ │ └── ResultViewer.tsx │ └── utils │ │ ├── constants.ts │ │ ├── queries.ts │ │ └── schema.ts ├── drivers │ ├── driver.ts │ ├── index.ts │ ├── pglite │ │ ├── index.ts │ │ └── queries.ts │ └── sqlite │ │ └── index.ts ├── main.tsx ├── modules │ ├── AI │ │ ├── client.ts │ │ └── index.ts │ └── sync │ │ ├── db.ts │ │ ├── index.ts │ │ ├── local.worker.ts │ │ ├── server.worker.ts │ │ ├── sync.types.ts │ │ └── syncDriver.ts ├── store │ ├── DB │ │ ├── Database.ts │ │ ├── Database.types.ts │ │ └── DatabaseUtils.ts │ ├── Editor.ts │ ├── History.ts │ └── SavedQueries.ts ├── styles │ ├── fonts │ │ ├── Borel │ │ │ └── Borel-Regular.ttf │ │ └── inter │ │ │ ├── Inter-Medium.ttf │ │ │ ├── Inter-Regular.ttf │ │ │ ├── Inter-SemiBold.ttf │ │ │ └── inter.ttf │ ├── globals.scss │ └── setup │ │ ├── _colors.scss │ │ ├── _icons.scss │ │ ├── _layout.scss │ │ ├── _mixins.scss │ │ ├── _normalize.scss │ │ ├── _reset.scss │ │ ├── _typography.scss │ │ └── _variables.scss ├── utils │ └── secrets.ts └── vite-env.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/package.json -------------------------------------------------------------------------------- /public/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/public/cover.png -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/base/Loader.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/base/Loader.module.scss -------------------------------------------------------------------------------- /src/components/base/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/base/Loader.tsx -------------------------------------------------------------------------------- /src/components/common/EditorTopBar.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/common/EditorTopBar.module.scss -------------------------------------------------------------------------------- /src/components/common/EditorTopBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/common/EditorTopBar.tsx -------------------------------------------------------------------------------- /src/components/common/ExplorerSearchBox.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/common/ExplorerSearchBox.module.scss -------------------------------------------------------------------------------- /src/components/common/ExplorerSearchBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/common/ExplorerSearchBox.tsx -------------------------------------------------------------------------------- /src/components/common/SideNavBar.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/common/SideNavBar.module.scss -------------------------------------------------------------------------------- /src/components/common/SideNavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/common/SideNavBar.tsx -------------------------------------------------------------------------------- /src/components/icons/APIDocIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/APIDocIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/APIDocsIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/APIDocsIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/AddIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/AddIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/AppDrawerIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/AppDrawerIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/AppLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/AppLogo.tsx -------------------------------------------------------------------------------- /src/components/icons/AppLogoIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/AppLogoIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/ArrowRightIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/ArrowRightIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/ArrowUpDownIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/ArrowUpDownIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/BackIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/BackIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/Channelicon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/Channelicon.tsx -------------------------------------------------------------------------------- /src/components/icons/CheckIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/CheckIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/ChevronDownIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/ChevronDownIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/ChevronRightIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/ChevronRightIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/ClearIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/ClearIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/CodeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/CodeIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/CollectionIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/CollectionIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/ColumnIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/ColumnIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/CommandIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/CommandIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/CopyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/CopyIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/DatabaseIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/DatabaseIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/Databases/Postgres.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/Databases/Postgres.tsx -------------------------------------------------------------------------------- /src/components/icons/DeleteIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/DeleteIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/DragHandlerIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/DragHandlerIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/EditIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/EditIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/EditorIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/EditorIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/EnterIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/EnterIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/HistoryIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/HistoryIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/KeywordIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/KeywordIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/KeywordTagIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/KeywordTagIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/LocationIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/LocationIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/LockedIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/LockedIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/Logo.tsx -------------------------------------------------------------------------------- /src/components/icons/LogoutIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/LogoutIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/MonitorIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/MonitorIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/MoreIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/MoreIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/OpenIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/OpenIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/OptionsIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/OptionsIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/PageIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/PageIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/PlayIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/PlayIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/ProductIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/ProductIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/ResetIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/ResetIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/SaveIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/SaveIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/SearchIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/SearchIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/SendIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/SendIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/SettingsIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/SettingsIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/SiteIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/SiteIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/StoreIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/StoreIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/TableIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/TableIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/UnLockedIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/UnLockedIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/WhatsappIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/WhatsappIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/illustrations/EmptyAPIsIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/illustrations/EmptyAPIsIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/AirtableIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/AirtableIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/AsanaIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/AsanaIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/ClickupIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/ClickupIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/DiscordIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/DiscordIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/EmailIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/EmailIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/FigmaIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/FigmaIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/GitHubIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/GitHubIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/GoogleCalendarIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/GoogleCalendarIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/GoogleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/GoogleIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/GoogleSheetsIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/GoogleSheetsIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/HackerNewsIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/HackerNewsIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/HubspotIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/HubspotIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/IntercomIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/IntercomIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/JiraIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/JiraIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/LinearIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/LinearIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/LinkedInIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/LinkedInIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/MailChimpIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/MailChimpIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/NotionIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/NotionIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/PostgresIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/PostgresIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/RedditIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/RedditIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/ShopifyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/ShopifyIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/SlackIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/SlackIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/SpotifyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/SpotifyIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/TelegramIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/TelegramIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/WebflowIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/WebflowIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/integrations/ZendeskIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/icons/integrations/ZendeskIcon.tsx -------------------------------------------------------------------------------- /src/components/layouts/AppLayout.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/layouts/AppLayout.module.scss -------------------------------------------------------------------------------- /src/components/layouts/AppLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/layouts/AppLayout.tsx -------------------------------------------------------------------------------- /src/components/layouts/EditorLayout.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/layouts/EditorLayout.module.scss -------------------------------------------------------------------------------- /src/components/layouts/EditorLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/layouts/EditorLayout.tsx -------------------------------------------------------------------------------- /src/components/modules/Editor/Editor.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/modules/Editor/Editor.module.scss -------------------------------------------------------------------------------- /src/components/modules/Editor/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/modules/Editor/Editor.tsx -------------------------------------------------------------------------------- /src/components/modules/Editor/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/modules/Editor/theme.ts -------------------------------------------------------------------------------- /src/components/modules/EditorArea/EditorTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/modules/EditorArea/EditorTab.tsx -------------------------------------------------------------------------------- /src/components/modules/EditorArea/EditorView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/modules/EditorArea/EditorView.tsx -------------------------------------------------------------------------------- /src/components/modules/Explorer/Explorer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/modules/Explorer/Explorer.module.scss -------------------------------------------------------------------------------- /src/components/modules/Explorer/Explorer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/modules/Explorer/Explorer.tsx -------------------------------------------------------------------------------- /src/components/modules/Explorer/Explorer.types.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/modules/Explorer/History.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/modules/Explorer/History.module.scss -------------------------------------------------------------------------------- /src/components/modules/Explorer/History.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/modules/Explorer/History.tsx -------------------------------------------------------------------------------- /src/components/modules/Explorer/SavedQueries.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/modules/Explorer/SavedQueries.module.scss -------------------------------------------------------------------------------- /src/components/modules/Explorer/SavedQueries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/modules/Explorer/SavedQueries.tsx -------------------------------------------------------------------------------- /src/components/modules/Explorer/TableRow.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/modules/Explorer/TableRow.module.scss -------------------------------------------------------------------------------- /src/components/modules/Explorer/TableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/modules/Explorer/TableRow.tsx -------------------------------------------------------------------------------- /src/components/modules/Explorer/Tables.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/modules/Explorer/Tables.module.scss -------------------------------------------------------------------------------- /src/components/modules/Explorer/Tables.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/modules/Explorer/Tables.tsx -------------------------------------------------------------------------------- /src/components/modules/ResultViewer/ErrorView.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/modules/ResultViewer/ErrorView.module.scss -------------------------------------------------------------------------------- /src/components/modules/ResultViewer/ErrorView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/modules/ResultViewer/ErrorView.tsx -------------------------------------------------------------------------------- /src/components/modules/ResultViewer/ResultViewer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/modules/ResultViewer/ResultViewer.module.scss -------------------------------------------------------------------------------- /src/components/modules/ResultViewer/ResultViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/modules/ResultViewer/ResultViewer.tsx -------------------------------------------------------------------------------- /src/components/utils/constants.ts: -------------------------------------------------------------------------------- 1 | export const LAST_RUN_QUERY_KEY = "last_run_query"; -------------------------------------------------------------------------------- /src/components/utils/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/utils/queries.ts -------------------------------------------------------------------------------- /src/components/utils/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/components/utils/schema.ts -------------------------------------------------------------------------------- /src/drivers/driver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/drivers/driver.ts -------------------------------------------------------------------------------- /src/drivers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/drivers/index.ts -------------------------------------------------------------------------------- /src/drivers/pglite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/drivers/pglite/index.ts -------------------------------------------------------------------------------- /src/drivers/pglite/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/drivers/pglite/queries.ts -------------------------------------------------------------------------------- /src/drivers/sqlite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/drivers/sqlite/index.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/modules/AI/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/modules/AI/client.ts -------------------------------------------------------------------------------- /src/modules/AI/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/modules/AI/index.ts -------------------------------------------------------------------------------- /src/modules/sync/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/modules/sync/db.ts -------------------------------------------------------------------------------- /src/modules/sync/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/modules/sync/index.ts -------------------------------------------------------------------------------- /src/modules/sync/local.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/modules/sync/local.worker.ts -------------------------------------------------------------------------------- /src/modules/sync/server.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/modules/sync/server.worker.ts -------------------------------------------------------------------------------- /src/modules/sync/sync.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/modules/sync/sync.types.ts -------------------------------------------------------------------------------- /src/modules/sync/syncDriver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/modules/sync/syncDriver.ts -------------------------------------------------------------------------------- /src/store/DB/Database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/store/DB/Database.ts -------------------------------------------------------------------------------- /src/store/DB/Database.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/store/DB/Database.types.ts -------------------------------------------------------------------------------- /src/store/DB/DatabaseUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/store/DB/DatabaseUtils.ts -------------------------------------------------------------------------------- /src/store/Editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/store/Editor.ts -------------------------------------------------------------------------------- /src/store/History.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/store/History.ts -------------------------------------------------------------------------------- /src/store/SavedQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/store/SavedQueries.ts -------------------------------------------------------------------------------- /src/styles/fonts/Borel/Borel-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/styles/fonts/Borel/Borel-Regular.ttf -------------------------------------------------------------------------------- /src/styles/fonts/inter/Inter-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/styles/fonts/inter/Inter-Medium.ttf -------------------------------------------------------------------------------- /src/styles/fonts/inter/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/styles/fonts/inter/Inter-Regular.ttf -------------------------------------------------------------------------------- /src/styles/fonts/inter/Inter-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/styles/fonts/inter/Inter-SemiBold.ttf -------------------------------------------------------------------------------- /src/styles/fonts/inter/inter.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/styles/fonts/inter/inter.ttf -------------------------------------------------------------------------------- /src/styles/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/styles/globals.scss -------------------------------------------------------------------------------- /src/styles/setup/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/styles/setup/_colors.scss -------------------------------------------------------------------------------- /src/styles/setup/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/styles/setup/_icons.scss -------------------------------------------------------------------------------- /src/styles/setup/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/styles/setup/_layout.scss -------------------------------------------------------------------------------- /src/styles/setup/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/styles/setup/_mixins.scss -------------------------------------------------------------------------------- /src/styles/setup/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/styles/setup/_normalize.scss -------------------------------------------------------------------------------- /src/styles/setup/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/styles/setup/_reset.scss -------------------------------------------------------------------------------- /src/styles/setup/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/styles/setup/_typography.scss -------------------------------------------------------------------------------- /src/styles/setup/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/styles/setup/_variables.scss -------------------------------------------------------------------------------- /src/utils/secrets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/src/utils/secrets.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sequelsh/pgsql/HEAD/vite.config.ts --------------------------------------------------------------------------------