├── .editorconfig ├── .env.example ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml └── semantic.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── assets └── recording.gif ├── biome.json ├── index.html ├── package.json ├── public └── favicon.ico ├── src ├── editor │ ├── charts │ │ ├── components │ │ │ ├── ChartListItem.tsx │ │ │ ├── ChartTypeSelector.tsx │ │ │ ├── ModalChartDelete.tsx │ │ │ ├── ModalChartEditor.tsx │ │ │ ├── ModalChartViewer.tsx │ │ │ └── charttypes │ │ │ │ ├── Bar │ │ │ │ ├── assets.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── utils.ts │ │ │ │ ├── Heatmap │ │ │ │ ├── assets.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── utils.ts │ │ │ │ ├── Line │ │ │ │ ├── assets.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── utils.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ ├── design.css │ │ ├── index.tsx │ │ └── types.ts │ ├── constants │ │ ├── localization.ts │ │ └── state.ts │ ├── design.css │ ├── factories │ │ ├── CustomMapControlFactory │ │ │ ├── ChartsPanelControlFactory.tsx │ │ │ ├── SqlPanelControlFactory.tsx │ │ │ └── index.tsx │ │ └── CustomPanelHeaderFactory │ │ │ ├── CustomLogo.tsx │ │ │ ├── design.css │ │ │ └── index.tsx │ └── index.tsx └── root.tsx ├── tsconfig.json └── vite.config.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | KEPLERGL_THEME=dark 2 | MAPTILER_API_KEY=x5wP2trTr5pNE3jSUqEH 3 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://mountaya.com/pricing"] 2 | -------------------------------------------------------------------------------- /.github/semantic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/.github/semantic.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/README.md -------------------------------------------------------------------------------- /assets/recording.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/assets/recording.gif -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/biome.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/editor/charts/components/ChartListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/charts/components/ChartListItem.tsx -------------------------------------------------------------------------------- /src/editor/charts/components/ChartTypeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/charts/components/ChartTypeSelector.tsx -------------------------------------------------------------------------------- /src/editor/charts/components/ModalChartDelete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/charts/components/ModalChartDelete.tsx -------------------------------------------------------------------------------- /src/editor/charts/components/ModalChartEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/charts/components/ModalChartEditor.tsx -------------------------------------------------------------------------------- /src/editor/charts/components/ModalChartViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/charts/components/ModalChartViewer.tsx -------------------------------------------------------------------------------- /src/editor/charts/components/charttypes/Bar/assets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/charts/components/charttypes/Bar/assets.tsx -------------------------------------------------------------------------------- /src/editor/charts/components/charttypes/Bar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/charts/components/charttypes/Bar/index.tsx -------------------------------------------------------------------------------- /src/editor/charts/components/charttypes/Bar/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/charts/components/charttypes/Bar/utils.ts -------------------------------------------------------------------------------- /src/editor/charts/components/charttypes/Heatmap/assets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/charts/components/charttypes/Heatmap/assets.tsx -------------------------------------------------------------------------------- /src/editor/charts/components/charttypes/Heatmap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/charts/components/charttypes/Heatmap/index.tsx -------------------------------------------------------------------------------- /src/editor/charts/components/charttypes/Heatmap/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/charts/components/charttypes/Heatmap/utils.ts -------------------------------------------------------------------------------- /src/editor/charts/components/charttypes/Line/assets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/charts/components/charttypes/Line/assets.tsx -------------------------------------------------------------------------------- /src/editor/charts/components/charttypes/Line/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/charts/components/charttypes/Line/index.tsx -------------------------------------------------------------------------------- /src/editor/charts/components/charttypes/Line/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/charts/components/charttypes/Line/utils.ts -------------------------------------------------------------------------------- /src/editor/charts/components/charttypes/types.ts: -------------------------------------------------------------------------------- 1 | export type SVGProps = { 2 | isActive: boolean; 3 | }; 4 | -------------------------------------------------------------------------------- /src/editor/charts/components/charttypes/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/charts/components/charttypes/utils.ts -------------------------------------------------------------------------------- /src/editor/charts/design.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/charts/design.css -------------------------------------------------------------------------------- /src/editor/charts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/charts/index.tsx -------------------------------------------------------------------------------- /src/editor/charts/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/charts/types.ts -------------------------------------------------------------------------------- /src/editor/constants/localization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/constants/localization.ts -------------------------------------------------------------------------------- /src/editor/constants/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/constants/state.ts -------------------------------------------------------------------------------- /src/editor/design.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/design.css -------------------------------------------------------------------------------- /src/editor/factories/CustomMapControlFactory/ChartsPanelControlFactory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/factories/CustomMapControlFactory/ChartsPanelControlFactory.tsx -------------------------------------------------------------------------------- /src/editor/factories/CustomMapControlFactory/SqlPanelControlFactory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/factories/CustomMapControlFactory/SqlPanelControlFactory.tsx -------------------------------------------------------------------------------- /src/editor/factories/CustomMapControlFactory/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/factories/CustomMapControlFactory/index.tsx -------------------------------------------------------------------------------- /src/editor/factories/CustomPanelHeaderFactory/CustomLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/factories/CustomPanelHeaderFactory/CustomLogo.tsx -------------------------------------------------------------------------------- /src/editor/factories/CustomPanelHeaderFactory/design.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/factories/CustomPanelHeaderFactory/design.css -------------------------------------------------------------------------------- /src/editor/factories/CustomPanelHeaderFactory/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/factories/CustomPanelHeaderFactory/index.tsx -------------------------------------------------------------------------------- /src/editor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/editor/index.tsx -------------------------------------------------------------------------------- /src/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/src/root.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mountayaapp/insight-editor/HEAD/vite.config.ts --------------------------------------------------------------------------------