├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── resources ├── docs │ └── app-arch.png ├── img │ ├── icon.png │ ├── index.d.ts │ ├── logo-md.png │ ├── logo-sm.png │ ├── sc-model-editor.png │ ├── sc-process-editor.png │ └── sc-ui-editor.png └── scripts │ ├── development │ ├── react-dom.js │ └── react.js │ └── production │ ├── react-dom.js │ └── react.js ├── src ├── components │ ├── ConfirmPopover │ │ ├── ConfirmPopover.tsx │ │ └── index.ts │ ├── ConfirmationDialog │ │ ├── ConfirmationDialog.tsx │ │ └── index.ts │ ├── DialogForm │ │ ├── DialogForm.tsx │ │ └── index.ts │ ├── ErrorBoundary │ │ ├── ErrorBoundary.tsx │ │ └── index.ts │ ├── Toast │ │ ├── Toast.tsx │ │ └── index.ts │ └── interface.ts ├── constants │ ├── data.ts │ ├── editor.ts │ ├── index.ts │ ├── starter.ts │ └── styles.ts ├── containers │ ├── editorWindow │ │ ├── EditorContainer.tsx │ │ ├── FileBrowser │ │ │ ├── CodeEditor │ │ │ │ ├── CodeEditor.tsx │ │ │ │ └── index.ts │ │ │ ├── FileBrowser.tsx │ │ │ ├── FileTreeView │ │ │ │ ├── FileTreeView.tsx │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── MVCEditor │ │ │ ├── HeaderView │ │ │ │ ├── HeaderView.tsx │ │ │ │ ├── NotificationListView │ │ │ │ │ ├── NotificationListView.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── RevisionListView │ │ │ │ │ ├── RevisionListView.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── WidgetUpdateDialog │ │ │ │ │ ├── WidgetUpdateDialog.tsx │ │ │ │ │ └── index.ts │ │ │ ├── MVCEditor.tsx │ │ │ ├── ModelEditorView │ │ │ │ ├── BlockEditDialog │ │ │ │ │ ├── BlockEditDialog.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ModelEditorView.tsx │ │ │ │ ├── ModelListView │ │ │ │ │ ├── ModelListView.tsx │ │ │ │ │ ├── definition.ts │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── ProcessEditorView │ │ │ │ ├── EditView │ │ │ │ │ ├── EditView.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ProcessEditorView.tsx │ │ │ │ ├── ProcessListView │ │ │ │ │ ├── ProcessListView.tsx │ │ │ │ │ ├── definition.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── StepEditDialog │ │ │ │ │ ├── CodeBlockPane │ │ │ │ │ │ ├── CodeBlockPane.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── executeFunc.txt │ │ │ │ │ │ │ ├── templateMap.ts │ │ │ │ │ │ │ └── triggerFunc.txt │ │ │ │ │ ├── ManualPane │ │ │ │ │ │ ├── ManualPane.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── StepAttributePane │ │ │ │ │ │ ├── StepAttributePane.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── StepEditDialog.tsx │ │ │ │ │ ├── StepOutputsPane │ │ │ │ │ │ ├── StepOutputsPane.tsx │ │ │ │ │ │ ├── formDefinition.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── TriggerPane │ │ │ │ │ │ ├── TriggerPane.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── interface.ts │ │ │ │ ├── index.ts │ │ │ │ └── stepOptions.tsx │ │ │ ├── SettingsView │ │ │ │ ├── LibraryPane │ │ │ │ │ ├── LibraryPane.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── SettingsView.tsx │ │ │ │ └── index.ts │ │ │ ├── UIEditorView │ │ │ │ ├── AddLibraryDialog │ │ │ │ │ ├── AddLibraryDialog.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── AddWidgetDialog │ │ │ │ │ ├── AddWidgetDialog.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── UIEditorView.tsx │ │ │ │ └── index.ts │ │ │ ├── exampleData.ts │ │ │ └── index.ts │ │ └── NavigationSidebar │ │ │ ├── NavigationSidebar.tsx │ │ │ └── index.ts │ └── starterWindow │ │ ├── ActionView │ │ ├── ActionView.tsx │ │ └── index.ts │ │ ├── CreateProjectDialog │ │ ├── CreateProjectDialog.tsx │ │ ├── ParamForm.tsx │ │ └── index.ts │ │ ├── ProjectListView │ │ ├── ProjectListView.tsx │ │ └── index.ts │ │ ├── StarterContainer.tsx │ │ └── ValidationDialog │ │ ├── ValidationDialog.tsx │ │ └── index.ts ├── controllers │ ├── files │ │ ├── __test__ │ │ │ └── sourceFileManager.test.ts │ │ └── sourceFileManager.ts │ ├── localStoreManager.ts │ ├── mainProcessCommunicator.ts │ ├── model │ │ ├── README.md │ │ ├── __test__ │ │ │ └── specGenerator.test.ts │ │ ├── dataConverter.ts │ │ ├── modelManager.ts │ │ ├── sourceFileGenerator.ts │ │ ├── specGenerator.ts │ │ └── templates │ │ │ └── crd.yaml │ ├── pluginFileManager.ts │ ├── process │ │ ├── processDataHandler.ts │ │ ├── processManager.ts │ │ ├── sourceFileGenerator.ts │ │ └── templates │ │ │ ├── config-go.txt │ │ │ ├── definition-go.txt │ │ │ ├── executors │ │ │ └── python │ │ │ │ ├── app-py.txt │ │ │ │ ├── init-py.txt │ │ │ │ ├── manage-sh.txt │ │ │ │ └── requirements.txt │ │ │ ├── go-mod.txt │ │ │ ├── init-go.txt │ │ │ ├── main-go.txt │ │ │ └── manage-sh.txt │ ├── project │ │ └── projectManager.ts │ ├── runtime │ │ ├── sourceFileGenerator.ts │ │ └── templates │ │ │ └── docker-compose-yaml.txt │ ├── ui │ │ ├── reactCodeFormatter.ts │ │ ├── sourceFileGenerator.ts │ │ ├── templates │ │ │ ├── action-index-js.txt │ │ │ ├── actions-root-index-js.txt │ │ │ ├── babelrc.txt │ │ │ ├── component-with-children.txt │ │ │ ├── component-without-children.txt │ │ │ ├── index-html.txt │ │ │ ├── index-jsx.txt │ │ │ ├── npmrc.txt │ │ │ ├── package-json.txt │ │ │ ├── react-code.txt │ │ │ ├── redux-actions-js.txt │ │ │ ├── redux-reducer-js.txt │ │ │ ├── redux-store-js.txt │ │ │ ├── redux-types-js.txt │ │ │ ├── repeat-component.txt │ │ │ ├── server-js.txt │ │ │ └── webpack-config.txt │ │ ├── uiActionHandler.ts │ │ ├── uiDataManager.ts │ │ ├── widgetLibraryWrapper.ts │ │ └── widgetManager.ts │ └── utils │ │ ├── datetimeHelper.ts │ │ ├── fsHelper.ts │ │ └── githubHelper.ts ├── electron │ ├── main.ts │ ├── utils │ │ ├── autoUpdater.ts │ │ ├── debugHelper.ts │ │ ├── dev-app-update.yml │ │ ├── gitHelper.ts │ │ ├── menuBuilder.ts │ │ ├── startDebugging.ts │ │ └── starterMenuBuilder.ts │ └── views │ │ ├── editor.html │ │ └── starter.html ├── entries │ ├── Editor.tsx │ └── Starter.tsx ├── interface.ts ├── migrations │ ├── migrationHandler.ts │ └── ui │ │ ├── revise.ts │ │ └── v2.ts ├── redux │ ├── modules │ │ ├── components │ │ │ ├── actions.ts │ │ │ ├── reducer.ts │ │ │ └── types.ts │ │ ├── config │ │ │ ├── actions.ts │ │ │ ├── reducer.ts │ │ │ └── types.ts │ │ ├── editor │ │ │ ├── actions.ts │ │ │ ├── modelEditor │ │ │ │ ├── actions.ts │ │ │ │ ├── reducer.ts │ │ │ │ └── types.ts │ │ │ ├── navigation │ │ │ │ ├── actions.ts │ │ │ │ ├── reducer.ts │ │ │ │ └── types.ts │ │ │ ├── processEditor │ │ │ │ ├── actions.ts │ │ │ │ ├── reducer.ts │ │ │ │ └── types.ts │ │ │ ├── reducer.ts │ │ │ ├── settings │ │ │ │ ├── actions.ts │ │ │ │ ├── reducer.ts │ │ │ │ └── types.ts │ │ │ ├── types.ts │ │ │ └── uiEditor │ │ │ │ ├── actions.ts │ │ │ │ ├── reducer.ts │ │ │ │ └── types.ts │ │ ├── files │ │ │ ├── actions.ts │ │ │ ├── reducer.ts │ │ │ └── types.ts │ │ └── starter │ │ │ ├── actions.ts │ │ │ ├── reducer.ts │ │ │ └── types.ts │ ├── reducer.ts │ ├── state.ts │ └── store.ts └── typings.d.ts ├── tsconfig.json ├── tslint.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/.npmrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/package.json -------------------------------------------------------------------------------- /resources/docs/app-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/resources/docs/app-arch.png -------------------------------------------------------------------------------- /resources/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/resources/img/icon.png -------------------------------------------------------------------------------- /resources/img/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.png'; 2 | -------------------------------------------------------------------------------- /resources/img/logo-md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/resources/img/logo-md.png -------------------------------------------------------------------------------- /resources/img/logo-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/resources/img/logo-sm.png -------------------------------------------------------------------------------- /resources/img/sc-model-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/resources/img/sc-model-editor.png -------------------------------------------------------------------------------- /resources/img/sc-process-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/resources/img/sc-process-editor.png -------------------------------------------------------------------------------- /resources/img/sc-ui-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/resources/img/sc-ui-editor.png -------------------------------------------------------------------------------- /resources/scripts/development/react-dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/resources/scripts/development/react-dom.js -------------------------------------------------------------------------------- /resources/scripts/development/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/resources/scripts/development/react.js -------------------------------------------------------------------------------- /resources/scripts/production/react-dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/resources/scripts/production/react-dom.js -------------------------------------------------------------------------------- /resources/scripts/production/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/resources/scripts/production/react.js -------------------------------------------------------------------------------- /src/components/ConfirmPopover/ConfirmPopover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/components/ConfirmPopover/ConfirmPopover.tsx -------------------------------------------------------------------------------- /src/components/ConfirmPopover/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ConfirmPopover'; -------------------------------------------------------------------------------- /src/components/ConfirmationDialog/ConfirmationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/components/ConfirmationDialog/ConfirmationDialog.tsx -------------------------------------------------------------------------------- /src/components/ConfirmationDialog/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ConfirmationDialog'; -------------------------------------------------------------------------------- /src/components/DialogForm/DialogForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/components/DialogForm/DialogForm.tsx -------------------------------------------------------------------------------- /src/components/DialogForm/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './DialogForm'; -------------------------------------------------------------------------------- /src/components/ErrorBoundary/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/components/ErrorBoundary/ErrorBoundary.tsx -------------------------------------------------------------------------------- /src/components/ErrorBoundary/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ErrorBoundary'; -------------------------------------------------------------------------------- /src/components/Toast/Toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/components/Toast/Toast.tsx -------------------------------------------------------------------------------- /src/components/Toast/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Toast'; -------------------------------------------------------------------------------- /src/components/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/components/interface.ts -------------------------------------------------------------------------------- /src/constants/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/constants/data.ts -------------------------------------------------------------------------------- /src/constants/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/constants/editor.ts -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/constants/starter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/constants/starter.ts -------------------------------------------------------------------------------- /src/constants/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/constants/styles.ts -------------------------------------------------------------------------------- /src/containers/editorWindow/EditorContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/EditorContainer.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/FileBrowser/CodeEditor/CodeEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/FileBrowser/CodeEditor/CodeEditor.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/FileBrowser/CodeEditor/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CodeEditor'; -------------------------------------------------------------------------------- /src/containers/editorWindow/FileBrowser/FileBrowser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/FileBrowser/FileBrowser.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/FileBrowser/FileTreeView/FileTreeView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/FileBrowser/FileTreeView/FileTreeView.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/FileBrowser/FileTreeView/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FileTreeView'; -------------------------------------------------------------------------------- /src/containers/editorWindow/FileBrowser/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FileBrowser'; -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/HeaderView/HeaderView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/HeaderView/HeaderView.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/HeaderView/NotificationListView/NotificationListView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/HeaderView/NotificationListView/NotificationListView.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/HeaderView/NotificationListView/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './NotificationListView'; -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/HeaderView/RevisionListView/RevisionListView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/HeaderView/RevisionListView/RevisionListView.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/HeaderView/RevisionListView/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './RevisionListView'; -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/HeaderView/WidgetUpdateDialog/WidgetUpdateDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/HeaderView/WidgetUpdateDialog/WidgetUpdateDialog.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/HeaderView/WidgetUpdateDialog/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './WidgetUpdateDialog'; -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/MVCEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/MVCEditor.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ModelEditorView/BlockEditDialog/BlockEditDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/ModelEditorView/BlockEditDialog/BlockEditDialog.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ModelEditorView/BlockEditDialog/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './BlockEditDialog'; -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ModelEditorView/ModelEditorView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/ModelEditorView/ModelEditorView.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ModelEditorView/ModelListView/ModelListView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/ModelEditorView/ModelListView/ModelListView.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ModelEditorView/ModelListView/definition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/ModelEditorView/ModelListView/definition.ts -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ModelEditorView/ModelListView/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ModelListView'; -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ModelEditorView/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ModelEditorView'; -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/EditView/EditView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/ProcessEditorView/EditView/EditView.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/EditView/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './EditView'; -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/ProcessEditorView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/ProcessEditorView/ProcessEditorView.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/ProcessListView/ProcessListView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/ProcessEditorView/ProcessListView/ProcessListView.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/ProcessListView/definition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/ProcessEditorView/ProcessListView/definition.ts -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/ProcessListView/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ProcessListView'; -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/CodeBlockPane/CodeBlockPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/CodeBlockPane/CodeBlockPane.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/CodeBlockPane/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CodeBlockPane'; -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/CodeBlockPane/templates/executeFunc.txt: -------------------------------------------------------------------------------- 1 | def execute(handler): 2 | pass -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/CodeBlockPane/templates/templateMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/CodeBlockPane/templates/templateMap.ts -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/CodeBlockPane/templates/triggerFunc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/CodeBlockPane/templates/triggerFunc.txt -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/ManualPane/ManualPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/ManualPane/ManualPane.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/ManualPane/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ManualPane'; -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/StepAttributePane/StepAttributePane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/StepAttributePane/StepAttributePane.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/StepAttributePane/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/StepEditDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/StepEditDialog.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/StepOutputsPane/StepOutputsPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/StepOutputsPane/StepOutputsPane.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/StepOutputsPane/formDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/StepOutputsPane/formDefinition.ts -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/StepOutputsPane/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './StepOutputsPane'; -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/TriggerPane/TriggerPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/TriggerPane/TriggerPane.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/TriggerPane/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TriggerPane'; -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './StepEditDialog'; -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/ProcessEditorView/StepEditDialog/interface.ts -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ProcessEditorView'; -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/ProcessEditorView/stepOptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/ProcessEditorView/stepOptions.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/SettingsView/LibraryPane/LibraryPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/SettingsView/LibraryPane/LibraryPane.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/SettingsView/LibraryPane/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './LibraryPane'; -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/SettingsView/SettingsView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/SettingsView/SettingsView.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/SettingsView/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SettingsView'; -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/UIEditorView/AddLibraryDialog/AddLibraryDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/UIEditorView/AddLibraryDialog/AddLibraryDialog.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/UIEditorView/AddLibraryDialog/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AddLibraryDialog'; -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/UIEditorView/AddWidgetDialog/AddWidgetDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/UIEditorView/AddWidgetDialog/AddWidgetDialog.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/UIEditorView/AddWidgetDialog/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AddWidgetDialog'; -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/UIEditorView/UIEditorView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/UIEditorView/UIEditorView.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/UIEditorView/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './UIEditorView'; -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/exampleData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/MVCEditor/exampleData.ts -------------------------------------------------------------------------------- /src/containers/editorWindow/MVCEditor/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './MVCEditor'; -------------------------------------------------------------------------------- /src/containers/editorWindow/NavigationSidebar/NavigationSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/editorWindow/NavigationSidebar/NavigationSidebar.tsx -------------------------------------------------------------------------------- /src/containers/editorWindow/NavigationSidebar/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './NavigationSidebar'; -------------------------------------------------------------------------------- /src/containers/starterWindow/ActionView/ActionView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/starterWindow/ActionView/ActionView.tsx -------------------------------------------------------------------------------- /src/containers/starterWindow/ActionView/index.ts: -------------------------------------------------------------------------------- 1 | export {default} from './ActionView'; -------------------------------------------------------------------------------- /src/containers/starterWindow/CreateProjectDialog/CreateProjectDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/starterWindow/CreateProjectDialog/CreateProjectDialog.tsx -------------------------------------------------------------------------------- /src/containers/starterWindow/CreateProjectDialog/ParamForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/starterWindow/CreateProjectDialog/ParamForm.tsx -------------------------------------------------------------------------------- /src/containers/starterWindow/CreateProjectDialog/index.ts: -------------------------------------------------------------------------------- 1 | export {default} from './CreateProjectDialog'; -------------------------------------------------------------------------------- /src/containers/starterWindow/ProjectListView/ProjectListView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/starterWindow/ProjectListView/ProjectListView.tsx -------------------------------------------------------------------------------- /src/containers/starterWindow/ProjectListView/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ProjectListView'; -------------------------------------------------------------------------------- /src/containers/starterWindow/StarterContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/starterWindow/StarterContainer.tsx -------------------------------------------------------------------------------- /src/containers/starterWindow/ValidationDialog/ValidationDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/containers/starterWindow/ValidationDialog/ValidationDialog.tsx -------------------------------------------------------------------------------- /src/containers/starterWindow/ValidationDialog/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/controllers/files/__test__/sourceFileManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/files/__test__/sourceFileManager.test.ts -------------------------------------------------------------------------------- /src/controllers/files/sourceFileManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/files/sourceFileManager.ts -------------------------------------------------------------------------------- /src/controllers/localStoreManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/localStoreManager.ts -------------------------------------------------------------------------------- /src/controllers/mainProcessCommunicator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/mainProcessCommunicator.ts -------------------------------------------------------------------------------- /src/controllers/model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/model/README.md -------------------------------------------------------------------------------- /src/controllers/model/__test__/specGenerator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/model/__test__/specGenerator.test.ts -------------------------------------------------------------------------------- /src/controllers/model/dataConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/model/dataConverter.ts -------------------------------------------------------------------------------- /src/controllers/model/modelManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/model/modelManager.ts -------------------------------------------------------------------------------- /src/controllers/model/sourceFileGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/model/sourceFileGenerator.ts -------------------------------------------------------------------------------- /src/controllers/model/specGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/model/specGenerator.ts -------------------------------------------------------------------------------- /src/controllers/model/templates/crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/model/templates/crd.yaml -------------------------------------------------------------------------------- /src/controllers/pluginFileManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/pluginFileManager.ts -------------------------------------------------------------------------------- /src/controllers/process/processDataHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/process/processDataHandler.ts -------------------------------------------------------------------------------- /src/controllers/process/processManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/process/processManager.ts -------------------------------------------------------------------------------- /src/controllers/process/sourceFileGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/process/sourceFileGenerator.ts -------------------------------------------------------------------------------- /src/controllers/process/templates/config-go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/process/templates/config-go.txt -------------------------------------------------------------------------------- /src/controllers/process/templates/definition-go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/process/templates/definition-go.txt -------------------------------------------------------------------------------- /src/controllers/process/templates/executors/python/app-py.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/process/templates/executors/python/app-py.txt -------------------------------------------------------------------------------- /src/controllers/process/templates/executors/python/init-py.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/process/templates/executors/python/init-py.txt -------------------------------------------------------------------------------- /src/controllers/process/templates/executors/python/manage-sh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/process/templates/executors/python/manage-sh.txt -------------------------------------------------------------------------------- /src/controllers/process/templates/executors/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/process/templates/executors/python/requirements.txt -------------------------------------------------------------------------------- /src/controllers/process/templates/go-mod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/process/templates/go-mod.txt -------------------------------------------------------------------------------- /src/controllers/process/templates/init-go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/process/templates/init-go.txt -------------------------------------------------------------------------------- /src/controllers/process/templates/main-go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/process/templates/main-go.txt -------------------------------------------------------------------------------- /src/controllers/process/templates/manage-sh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/process/templates/manage-sh.txt -------------------------------------------------------------------------------- /src/controllers/project/projectManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/project/projectManager.ts -------------------------------------------------------------------------------- /src/controllers/runtime/sourceFileGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/runtime/sourceFileGenerator.ts -------------------------------------------------------------------------------- /src/controllers/runtime/templates/docker-compose-yaml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/runtime/templates/docker-compose-yaml.txt -------------------------------------------------------------------------------- /src/controllers/ui/reactCodeFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/ui/reactCodeFormatter.ts -------------------------------------------------------------------------------- /src/controllers/ui/sourceFileGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/ui/sourceFileGenerator.ts -------------------------------------------------------------------------------- /src/controllers/ui/templates/action-index-js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/ui/templates/action-index-js.txt -------------------------------------------------------------------------------- /src/controllers/ui/templates/actions-root-index-js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/ui/templates/actions-root-index-js.txt -------------------------------------------------------------------------------- /src/controllers/ui/templates/babelrc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/ui/templates/babelrc.txt -------------------------------------------------------------------------------- /src/controllers/ui/templates/component-with-children.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/ui/templates/component-with-children.txt -------------------------------------------------------------------------------- /src/controllers/ui/templates/component-without-children.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/ui/templates/component-without-children.txt -------------------------------------------------------------------------------- /src/controllers/ui/templates/index-html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/ui/templates/index-html.txt -------------------------------------------------------------------------------- /src/controllers/ui/templates/index-jsx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/ui/templates/index-jsx.txt -------------------------------------------------------------------------------- /src/controllers/ui/templates/npmrc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/ui/templates/npmrc.txt -------------------------------------------------------------------------------- /src/controllers/ui/templates/package-json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/ui/templates/package-json.txt -------------------------------------------------------------------------------- /src/controllers/ui/templates/react-code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/ui/templates/react-code.txt -------------------------------------------------------------------------------- /src/controllers/ui/templates/redux-actions-js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/ui/templates/redux-actions-js.txt -------------------------------------------------------------------------------- /src/controllers/ui/templates/redux-reducer-js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/ui/templates/redux-reducer-js.txt -------------------------------------------------------------------------------- /src/controllers/ui/templates/redux-store-js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/ui/templates/redux-store-js.txt -------------------------------------------------------------------------------- /src/controllers/ui/templates/redux-types-js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/ui/templates/redux-types-js.txt -------------------------------------------------------------------------------- /src/controllers/ui/templates/repeat-component.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/ui/templates/repeat-component.txt -------------------------------------------------------------------------------- /src/controllers/ui/templates/server-js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/ui/templates/server-js.txt -------------------------------------------------------------------------------- /src/controllers/ui/templates/webpack-config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/ui/templates/webpack-config.txt -------------------------------------------------------------------------------- /src/controllers/ui/uiActionHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/ui/uiActionHandler.ts -------------------------------------------------------------------------------- /src/controllers/ui/uiDataManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/ui/uiDataManager.ts -------------------------------------------------------------------------------- /src/controllers/ui/widgetLibraryWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/ui/widgetLibraryWrapper.ts -------------------------------------------------------------------------------- /src/controllers/ui/widgetManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/ui/widgetManager.ts -------------------------------------------------------------------------------- /src/controllers/utils/datetimeHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/utils/datetimeHelper.ts -------------------------------------------------------------------------------- /src/controllers/utils/fsHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/utils/fsHelper.ts -------------------------------------------------------------------------------- /src/controllers/utils/githubHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/controllers/utils/githubHelper.ts -------------------------------------------------------------------------------- /src/electron/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/electron/main.ts -------------------------------------------------------------------------------- /src/electron/utils/autoUpdater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/electron/utils/autoUpdater.ts -------------------------------------------------------------------------------- /src/electron/utils/debugHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/electron/utils/debugHelper.ts -------------------------------------------------------------------------------- /src/electron/utils/dev-app-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/electron/utils/dev-app-update.yml -------------------------------------------------------------------------------- /src/electron/utils/gitHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/electron/utils/gitHelper.ts -------------------------------------------------------------------------------- /src/electron/utils/menuBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/electron/utils/menuBuilder.ts -------------------------------------------------------------------------------- /src/electron/utils/startDebugging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/electron/utils/startDebugging.ts -------------------------------------------------------------------------------- /src/electron/utils/starterMenuBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/electron/utils/starterMenuBuilder.ts -------------------------------------------------------------------------------- /src/electron/views/editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/electron/views/editor.html -------------------------------------------------------------------------------- /src/electron/views/starter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/electron/views/starter.html -------------------------------------------------------------------------------- /src/entries/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/entries/Editor.tsx -------------------------------------------------------------------------------- /src/entries/Starter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/entries/Starter.tsx -------------------------------------------------------------------------------- /src/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/interface.ts -------------------------------------------------------------------------------- /src/migrations/migrationHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/migrations/migrationHandler.ts -------------------------------------------------------------------------------- /src/migrations/ui/revise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/migrations/ui/revise.ts -------------------------------------------------------------------------------- /src/migrations/ui/v2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/migrations/ui/v2.ts -------------------------------------------------------------------------------- /src/redux/modules/components/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/components/actions.ts -------------------------------------------------------------------------------- /src/redux/modules/components/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/components/reducer.ts -------------------------------------------------------------------------------- /src/redux/modules/components/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/components/types.ts -------------------------------------------------------------------------------- /src/redux/modules/config/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/config/actions.ts -------------------------------------------------------------------------------- /src/redux/modules/config/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/config/reducer.ts -------------------------------------------------------------------------------- /src/redux/modules/config/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/config/types.ts -------------------------------------------------------------------------------- /src/redux/modules/editor/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/editor/actions.ts -------------------------------------------------------------------------------- /src/redux/modules/editor/modelEditor/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/editor/modelEditor/actions.ts -------------------------------------------------------------------------------- /src/redux/modules/editor/modelEditor/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/editor/modelEditor/reducer.ts -------------------------------------------------------------------------------- /src/redux/modules/editor/modelEditor/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/editor/modelEditor/types.ts -------------------------------------------------------------------------------- /src/redux/modules/editor/navigation/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/editor/navigation/actions.ts -------------------------------------------------------------------------------- /src/redux/modules/editor/navigation/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/editor/navigation/reducer.ts -------------------------------------------------------------------------------- /src/redux/modules/editor/navigation/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/editor/navigation/types.ts -------------------------------------------------------------------------------- /src/redux/modules/editor/processEditor/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/editor/processEditor/actions.ts -------------------------------------------------------------------------------- /src/redux/modules/editor/processEditor/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/editor/processEditor/reducer.ts -------------------------------------------------------------------------------- /src/redux/modules/editor/processEditor/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/editor/processEditor/types.ts -------------------------------------------------------------------------------- /src/redux/modules/editor/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/editor/reducer.ts -------------------------------------------------------------------------------- /src/redux/modules/editor/settings/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/editor/settings/actions.ts -------------------------------------------------------------------------------- /src/redux/modules/editor/settings/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/editor/settings/reducer.ts -------------------------------------------------------------------------------- /src/redux/modules/editor/settings/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/editor/settings/types.ts -------------------------------------------------------------------------------- /src/redux/modules/editor/types.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/redux/modules/editor/uiEditor/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/editor/uiEditor/actions.ts -------------------------------------------------------------------------------- /src/redux/modules/editor/uiEditor/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/editor/uiEditor/reducer.ts -------------------------------------------------------------------------------- /src/redux/modules/editor/uiEditor/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/editor/uiEditor/types.ts -------------------------------------------------------------------------------- /src/redux/modules/files/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/files/actions.ts -------------------------------------------------------------------------------- /src/redux/modules/files/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/files/reducer.ts -------------------------------------------------------------------------------- /src/redux/modules/files/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/files/types.ts -------------------------------------------------------------------------------- /src/redux/modules/starter/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/starter/actions.ts -------------------------------------------------------------------------------- /src/redux/modules/starter/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/starter/reducer.ts -------------------------------------------------------------------------------- /src/redux/modules/starter/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/modules/starter/types.ts -------------------------------------------------------------------------------- /src/redux/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/reducer.ts -------------------------------------------------------------------------------- /src/redux/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/state.ts -------------------------------------------------------------------------------- /src/redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/redux/store.ts -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flintdev/flint/HEAD/webpack.config.js --------------------------------------------------------------------------------