├── .gitignore ├── .nvmrc ├── BUILDING.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── craco.config.js ├── package.json ├── public ├── braintree.icns ├── braintree.ico ├── electron.js ├── index.html ├── manifest.json ├── preload.js └── robots.txt ├── screenshots ├── app.png ├── code_blocks.png ├── connections.png ├── math.png ├── rich_text.png └── tables.png ├── src ├── App.tsx ├── components │ ├── Button │ │ ├── Button.tsx │ │ └── index.ts │ ├── Checkbox │ │ ├── Checkbox.tsx │ │ └── index.ts │ ├── Connectionbar │ │ ├── Connectionbar.tsx │ │ └── index.ts │ ├── Dialog │ │ ├── AddFileDialog.tsx │ │ ├── Dialog.tsx │ │ └── index.ts │ ├── Editor │ │ ├── Editor.tsx │ │ └── index.ts │ ├── EditorWrapper │ │ ├── EditorWrapper.tsx │ │ └── index.ts │ ├── Graph │ │ ├── Graph.tsx │ │ └── index.ts │ ├── GraphWrapper │ │ ├── GraphWrapper.tsx │ │ └── index.ts │ ├── MainWrapper │ │ ├── MainWrapper.tsx │ │ └── index.ts │ ├── Sidebar │ │ ├── Sidebar.tsx │ │ └── index.ts │ ├── SidebarWrapper │ │ ├── SidebarWrapper.tsx │ │ └── index.ts │ ├── WrapperDiv │ │ ├── WrapperDiv.tsx │ │ └── index.ts │ └── index.ts ├── config │ └── graphConfig.ts ├── index.css ├── index.tsx ├── react-app-env.d.ts ├── stores │ ├── dialogState.ts │ ├── editorState.ts │ ├── graphState.ts │ └── index.ts ├── styles │ ├── export.css │ ├── fonts.scss │ ├── fonts │ │ ├── FiraCode-Bold.woff2 │ │ ├── FiraCode-Light.woff2 │ │ ├── FiraCode-Medium.woff2 │ │ ├── FiraCode-Regular.woff2 │ │ ├── FiraCode-SemiBold.woff2 │ │ └── FiraCode-VF.woff2 │ ├── links.scss │ ├── prism.scss │ └── tables.scss ├── types │ ├── graph.ts │ ├── metadata.ts │ ├── payload.ts │ └── rehypePrism.d.ts └── utils │ └── path.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14.9.0 -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/README.md -------------------------------------------------------------------------------- /craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/craco.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/package.json -------------------------------------------------------------------------------- /public/braintree.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/public/braintree.icns -------------------------------------------------------------------------------- /public/braintree.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/public/braintree.ico -------------------------------------------------------------------------------- /public/electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/public/electron.js -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/public/preload.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/public/robots.txt -------------------------------------------------------------------------------- /screenshots/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/screenshots/app.png -------------------------------------------------------------------------------- /screenshots/code_blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/screenshots/code_blocks.png -------------------------------------------------------------------------------- /screenshots/connections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/screenshots/connections.png -------------------------------------------------------------------------------- /screenshots/math.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/screenshots/math.png -------------------------------------------------------------------------------- /screenshots/rich_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/screenshots/rich_text.png -------------------------------------------------------------------------------- /screenshots/tables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/screenshots/tables.png -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/Button/Button.tsx -------------------------------------------------------------------------------- /src/components/Button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/Button/index.ts -------------------------------------------------------------------------------- /src/components/Checkbox/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/Checkbox/Checkbox.tsx -------------------------------------------------------------------------------- /src/components/Checkbox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/Checkbox/index.ts -------------------------------------------------------------------------------- /src/components/Connectionbar/Connectionbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/Connectionbar/Connectionbar.tsx -------------------------------------------------------------------------------- /src/components/Connectionbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/Connectionbar/index.ts -------------------------------------------------------------------------------- /src/components/Dialog/AddFileDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/Dialog/AddFileDialog.tsx -------------------------------------------------------------------------------- /src/components/Dialog/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/Dialog/Dialog.tsx -------------------------------------------------------------------------------- /src/components/Dialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/Dialog/index.ts -------------------------------------------------------------------------------- /src/components/Editor/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/Editor/Editor.tsx -------------------------------------------------------------------------------- /src/components/Editor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/Editor/index.ts -------------------------------------------------------------------------------- /src/components/EditorWrapper/EditorWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/EditorWrapper/EditorWrapper.tsx -------------------------------------------------------------------------------- /src/components/EditorWrapper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/EditorWrapper/index.ts -------------------------------------------------------------------------------- /src/components/Graph/Graph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/Graph/Graph.tsx -------------------------------------------------------------------------------- /src/components/Graph/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/Graph/index.ts -------------------------------------------------------------------------------- /src/components/GraphWrapper/GraphWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/GraphWrapper/GraphWrapper.tsx -------------------------------------------------------------------------------- /src/components/GraphWrapper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/GraphWrapper/index.ts -------------------------------------------------------------------------------- /src/components/MainWrapper/MainWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/MainWrapper/MainWrapper.tsx -------------------------------------------------------------------------------- /src/components/MainWrapper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/MainWrapper/index.ts -------------------------------------------------------------------------------- /src/components/Sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/Sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/Sidebar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/Sidebar/index.ts -------------------------------------------------------------------------------- /src/components/SidebarWrapper/SidebarWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/SidebarWrapper/SidebarWrapper.tsx -------------------------------------------------------------------------------- /src/components/SidebarWrapper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/SidebarWrapper/index.ts -------------------------------------------------------------------------------- /src/components/WrapperDiv/WrapperDiv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/WrapperDiv/WrapperDiv.tsx -------------------------------------------------------------------------------- /src/components/WrapperDiv/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/WrapperDiv/index.ts -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/config/graphConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/config/graphConfig.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/stores/dialogState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/stores/dialogState.ts -------------------------------------------------------------------------------- /src/stores/editorState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/stores/editorState.ts -------------------------------------------------------------------------------- /src/stores/graphState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/stores/graphState.ts -------------------------------------------------------------------------------- /src/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/stores/index.ts -------------------------------------------------------------------------------- /src/styles/export.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/styles/export.css -------------------------------------------------------------------------------- /src/styles/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/styles/fonts.scss -------------------------------------------------------------------------------- /src/styles/fonts/FiraCode-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/styles/fonts/FiraCode-Bold.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/FiraCode-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/styles/fonts/FiraCode-Light.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/FiraCode-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/styles/fonts/FiraCode-Medium.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/FiraCode-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/styles/fonts/FiraCode-Regular.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/FiraCode-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/styles/fonts/FiraCode-SemiBold.woff2 -------------------------------------------------------------------------------- /src/styles/fonts/FiraCode-VF.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/styles/fonts/FiraCode-VF.woff2 -------------------------------------------------------------------------------- /src/styles/links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/styles/links.scss -------------------------------------------------------------------------------- /src/styles/prism.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/styles/prism.scss -------------------------------------------------------------------------------- /src/styles/tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/styles/tables.scss -------------------------------------------------------------------------------- /src/types/graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/types/graph.ts -------------------------------------------------------------------------------- /src/types/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/types/metadata.ts -------------------------------------------------------------------------------- /src/types/payload.ts: -------------------------------------------------------------------------------- 1 | export interface Payload { 2 | fileName: string; 3 | } 4 | -------------------------------------------------------------------------------- /src/types/rehypePrism.d.ts: -------------------------------------------------------------------------------- 1 | declare module "@mapbox/rehype-prism" { 2 | export = any; 3 | } 4 | -------------------------------------------------------------------------------- /src/utils/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/src/utils/path.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargakshit/braintree/HEAD/yarn.lock --------------------------------------------------------------------------------