├── .gitignore ├── src ├── session-src │ ├── .gitignore │ ├── package-lock.json │ ├── index.js │ ├── package.json │ └── src │ │ ├── managers │ │ ├── DataManagers.js │ │ └── LogManager.js │ │ ├── ScriptLoader.js │ │ └── Session.js ├── client-src │ ├── assets │ │ ├── css │ │ │ └── style.css │ │ └── fonts │ │ │ ├── typeface-roboto │ │ │ ├── files-hash.json │ │ │ ├── files │ │ │ │ ├── roboto-latin-300.woff │ │ │ │ ├── roboto-latin-300.woff2 │ │ │ │ ├── roboto-latin-400.woff │ │ │ │ ├── roboto-latin-400.woff2 │ │ │ │ ├── roboto-latin-500.woff │ │ │ │ └── roboto-latin-500.woff2 │ │ │ ├── README.md │ │ │ ├── index.css │ │ │ └── package.json │ │ │ └── material-icons │ │ │ ├── files │ │ │ └── icons.woff2 │ │ │ └── index.css │ ├── index.server.template.html │ ├── readme.md │ ├── comps │ │ ├── Upload.jsx │ │ ├── Config.jsx │ │ ├── Hideable.jsx │ │ ├── Debug.jsx │ │ ├── PluginItem.jsx │ │ ├── Navigator.jsx │ │ ├── BrowseItem.jsx │ │ └── Home.jsx │ ├── comps-bootstrap │ │ ├── Config.jsx │ │ ├── Upload.jsx │ │ ├── Debug.jsx │ │ ├── backup │ │ │ ├── css │ │ │ │ ├── style.css │ │ │ │ ├── bootstrap-4.1.3-dist │ │ │ │ │ └── css │ │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ │ └── bootstrap-grid.min.css │ │ │ │ └── popper.min.js │ │ │ └── index.html │ │ ├── Decal.jsx │ │ ├── AppBS.jsx │ │ ├── PluginItem.jsx │ │ ├── BrowseItem.jsx │ │ ├── Navigator.jsx │ │ └── Home.jsx │ ├── index.js │ ├── controller.js │ └── App.jsx ├── index.template.html ├── index.html ├── host │ ├── main.jsx │ ├── index.jsx │ └── JSON.jsx └── libs │ └── CSInterface.js ├── kap.gif ├── .babelrc ├── assets ├── icons │ └── favicon.ico └── templates │ ├── .debug.template.js │ └── manifest.template.xml.js ├── pluginrc.js ├── package.json ├── readme.md └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | /dist/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /src/session-src/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /kap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HendrixString/adobe-cep-react-create/HEAD/kap.gif -------------------------------------------------------------------------------- /src/client-src/assets/css/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0px; 3 | overflow: hidden 4 | } 5 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "env", 4 | "react", 5 | "stage-2" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /assets/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HendrixString/adobe-cep-react-create/HEAD/assets/icons/favicon.ico -------------------------------------------------------------------------------- /src/session-src/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "session", 3 | "version": "1.0.0", 4 | "lockfileVersion": 1 5 | } 6 | -------------------------------------------------------------------------------- /src/client-src/assets/fonts/typeface-roboto/files-hash.json: -------------------------------------------------------------------------------- 1 | {"hash":"5da83aae9cc1b95ba5433e6a414145c8","updatedAt":"2018-01-24T02:15:56.414Z"} -------------------------------------------------------------------------------- /src/session-src/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @author Tomer Riko Shalev 3 | */ 4 | 5 | import session from './src/Session.js' 6 | 7 | window.session = session 8 | -------------------------------------------------------------------------------- /src/client-src/assets/fonts/material-icons/files/icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HendrixString/adobe-cep-react-create/HEAD/src/client-src/assets/fonts/material-icons/files/icons.woff2 -------------------------------------------------------------------------------- /src/client-src/assets/fonts/typeface-roboto/files/roboto-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HendrixString/adobe-cep-react-create/HEAD/src/client-src/assets/fonts/typeface-roboto/files/roboto-latin-300.woff -------------------------------------------------------------------------------- /src/client-src/assets/fonts/typeface-roboto/files/roboto-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HendrixString/adobe-cep-react-create/HEAD/src/client-src/assets/fonts/typeface-roboto/files/roboto-latin-300.woff2 -------------------------------------------------------------------------------- /src/client-src/assets/fonts/typeface-roboto/files/roboto-latin-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HendrixString/adobe-cep-react-create/HEAD/src/client-src/assets/fonts/typeface-roboto/files/roboto-latin-400.woff -------------------------------------------------------------------------------- /src/client-src/assets/fonts/typeface-roboto/files/roboto-latin-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HendrixString/adobe-cep-react-create/HEAD/src/client-src/assets/fonts/typeface-roboto/files/roboto-latin-400.woff2 -------------------------------------------------------------------------------- /src/client-src/assets/fonts/typeface-roboto/files/roboto-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HendrixString/adobe-cep-react-create/HEAD/src/client-src/assets/fonts/typeface-roboto/files/roboto-latin-500.woff -------------------------------------------------------------------------------- /src/client-src/assets/fonts/typeface-roboto/files/roboto-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HendrixString/adobe-cep-react-create/HEAD/src/client-src/assets/fonts/typeface-roboto/files/roboto-latin-500.woff2 -------------------------------------------------------------------------------- /src/client-src/index.server.template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |