From 56af1414206d1ea0b2dec63c4eaa8650315c9831 Mon Sep 17 00:00:00 2001
From: chris <kokosias@yahoo.gr>
Date: Fri, 2 Apr 2021 01:49:55 +0300
Subject: [PATCH] split demos into seperate folders

---
 .../src => demo/src/Editoria}/Editoria.js     |  18 +---
 .../src/Editoria}/config/config.js            |   8 --
 .../src/Editoria}/config/configMobile.js      |   0
 .../src/Editoria}/config/defaultSchema.js     |   0
 .../src => demo/src/Editoria}/config/index.js |   0
 .../src => demo/src/Editoria}/demo.js         |   0
 .../src/Editoria}/layout/EditorElements.js    |   0
 .../src/Editoria}/layout/EditoriaLayout.js    |   0
 .../Editoria}/layout/EditoriaMobileLayout.js  |   0
 .../src => demo/src/Editoria}/layout/index.js |   0
 .../Editoria}/theme/elements/ButtonStyles.js  |   0
 .../src/Editoria}/theme/elements/index.js     |   0
 .../src => demo/src/Editoria}/theme/index.js  |   0
 .../src => demo/src/Editoria}/theme/theme.js  |   0
 editors/demo/src/Editors.js                   |  27 ++++++
 editors/demo/src/HHMI/HHMI.js                 |  52 +++++++++++
 .../MultipleChoiceQuestion.js                 |   0
 .../MultipleChoiceQuestionService.js          |   0
 .../QuestionsToolGroupService/Questions.js    |   0
 .../QuestionsToolGroupService.js              |   0
 editors/{editoria => demo}/src/index.js       |   4 +-
 .../{editoria => demo}/src/serviceWorker.js   |   0
 editors/editoria/.gitignore                   |  23 -----
 editors/editoria/README.md                    |  68 --------------
 editors/editoria/config-overrides.js          |  47 ----------
 editors/editoria/jsconfig.json                |   5 -
 editors/editoria/package-lock.json            |  86 ------------------
 editors/editoria/package.json                 |  41 ---------
 editors/editoria/public/favicon.ico           | Bin 3870 -> 0 bytes
 editors/editoria/public/index.html            |  38 --------
 editors/editoria/public/manifest.json         |  15 ---
 package.json                                  |   2 +-
 32 files changed, 83 insertions(+), 351 deletions(-)
 rename editors/{editoria/src => demo/src/Editoria}/Editoria.js (86%)
 rename editors/{editoria/src => demo/src/Editoria}/config/config.js (93%)
 rename editors/{editoria/src => demo/src/Editoria}/config/configMobile.js (100%)
 rename editors/{editoria/src => demo/src/Editoria}/config/defaultSchema.js (100%)
 rename editors/{editoria/src => demo/src/Editoria}/config/index.js (100%)
 rename editors/{editoria/src => demo/src/Editoria}/demo.js (100%)
 rename editors/{editoria/src => demo/src/Editoria}/layout/EditorElements.js (100%)
 rename editors/{editoria/src => demo/src/Editoria}/layout/EditoriaLayout.js (100%)
 rename editors/{editoria/src => demo/src/Editoria}/layout/EditoriaMobileLayout.js (100%)
 rename editors/{editoria/src => demo/src/Editoria}/layout/index.js (100%)
 rename editors/{editoria/src => demo/src/Editoria}/theme/elements/ButtonStyles.js (100%)
 rename editors/{editoria/src => demo/src/Editoria}/theme/elements/index.js (100%)
 rename editors/{editoria/src => demo/src/Editoria}/theme/index.js (100%)
 rename editors/{editoria/src => demo/src/Editoria}/theme/theme.js (100%)
 create mode 100644 editors/demo/src/Editors.js
 create mode 100644 editors/demo/src/HHMI/HHMI.js
 rename editors/{editoria/src => demo/src/HHMI}/MultipleChoiceQuestionService/MultipleChoiceQuestion.js (100%)
 rename editors/{editoria/src => demo/src/HHMI}/MultipleChoiceQuestionService/MultipleChoiceQuestionService.js (100%)
 rename editors/{editoria/src => demo/src/HHMI}/QuestionsToolGroupService/Questions.js (100%)
 rename editors/{editoria/src => demo/src/HHMI}/QuestionsToolGroupService/QuestionsToolGroupService.js (100%)
 rename editors/{editoria => demo}/src/index.js (77%)
 rename editors/{editoria => demo}/src/serviceWorker.js (100%)
 delete mode 100644 editors/editoria/.gitignore
 delete mode 100644 editors/editoria/README.md
 delete mode 100644 editors/editoria/config-overrides.js
 delete mode 100644 editors/editoria/jsconfig.json
 delete mode 100644 editors/editoria/package-lock.json
 delete mode 100644 editors/editoria/package.json
 delete mode 100644 editors/editoria/public/favicon.ico
 delete mode 100644 editors/editoria/public/index.html
 delete mode 100644 editors/editoria/public/manifest.json

diff --git a/editors/editoria/src/Editoria.js b/editors/demo/src/Editoria/Editoria.js
similarity index 86%
rename from editors/editoria/src/Editoria.js
rename to editors/demo/src/Editoria/Editoria.js
index 148a228be..42a690860 100644
--- a/editors/editoria/src/Editoria.js
+++ b/editors/demo/src/Editoria/Editoria.js
@@ -1,5 +1,4 @@
 import React, { useLayoutEffect, useState, useMemo } from 'react';
-import { createGlobalStyle } from 'styled-components';
 
 import { Wax } from 'wax-prosemirror-core';
 
@@ -7,19 +6,6 @@ import { EditoriaLayout, EditoriaMobileLayout } from './layout';
 import { config, configMobile } from './config';
 import { demo } from './demo';
 
-const GlobalStyle = createGlobalStyle`
-  body {
-    margin: 0;
-    overflow-y: hidden;
-    padding: 0;
-  }
-
-  #root {
-    height:100vh;
-    width:100vw;
-  }
-`;
-
 const renderImage = file => {
   const reader = new FileReader();
   return new Promise((accept, fail) => {
@@ -55,15 +41,13 @@ const Editoria = () => {
   const EditoriaComponent = useMemo(
     () => (
       <>
-        <GlobalStyle />
         <Wax
           key={key}
           config={finalConfig}
           autoFocus
           placeholder="Type Something..."
           fileUpload={file => renderImage(file)}
-          value=""
-          targetFormat="JSON"
+          value={demo}
           // readonly
           layout={layout}
           // onChange={source => console.log(source)}
diff --git a/editors/editoria/src/config/config.js b/editors/demo/src/Editoria/config/config.js
similarity index 93%
rename from editors/editoria/src/config/config.js
rename to editors/demo/src/Editoria/config/config.js
index 1a45eea91..b428865c8 100644
--- a/editors/editoria/src/config/config.js
+++ b/editors/demo/src/Editoria/config/config.js
@@ -49,11 +49,6 @@ import { DefaultSchema } from 'wax-prosemirror-utilities';
 
 import { WaxSelectionPlugin } from 'wax-prosemirror-plugins';
 
-/* Test Question Service*/
-
-import MultipleChoiceQuestionService from '../MultipleChoiceQuestionService/MultipleChoiceQuestionService';
-import QuestionsToolGroupService from '../QuestionsToolGroupService/QuestionsToolGroupService';
-
 import invisibles, {
   space,
   hardBreak,
@@ -101,7 +96,6 @@ export default {
         'SpecialCharacters',
         'CodeBlock',
         'Tables',
-        'Questions',
         'TrackingAndEditing',
         'FullScreen',
       ],
@@ -158,8 +152,6 @@ export default {
   },
 
   services: [
-    new MultipleChoiceQuestionService(),
-    new QuestionsToolGroupService(),
     new CustomTagService(),
     new DisplayBlockLevelService(),
     new DisplayToolGroupService(),
diff --git a/editors/editoria/src/config/configMobile.js b/editors/demo/src/Editoria/config/configMobile.js
similarity index 100%
rename from editors/editoria/src/config/configMobile.js
rename to editors/demo/src/Editoria/config/configMobile.js
diff --git a/editors/editoria/src/config/defaultSchema.js b/editors/demo/src/Editoria/config/defaultSchema.js
similarity index 100%
rename from editors/editoria/src/config/defaultSchema.js
rename to editors/demo/src/Editoria/config/defaultSchema.js
diff --git a/editors/editoria/src/config/index.js b/editors/demo/src/Editoria/config/index.js
similarity index 100%
rename from editors/editoria/src/config/index.js
rename to editors/demo/src/Editoria/config/index.js
diff --git a/editors/editoria/src/demo.js b/editors/demo/src/Editoria/demo.js
similarity index 100%
rename from editors/editoria/src/demo.js
rename to editors/demo/src/Editoria/demo.js
diff --git a/editors/editoria/src/layout/EditorElements.js b/editors/demo/src/Editoria/layout/EditorElements.js
similarity index 100%
rename from editors/editoria/src/layout/EditorElements.js
rename to editors/demo/src/Editoria/layout/EditorElements.js
diff --git a/editors/editoria/src/layout/EditoriaLayout.js b/editors/demo/src/Editoria/layout/EditoriaLayout.js
similarity index 100%
rename from editors/editoria/src/layout/EditoriaLayout.js
rename to editors/demo/src/Editoria/layout/EditoriaLayout.js
diff --git a/editors/editoria/src/layout/EditoriaMobileLayout.js b/editors/demo/src/Editoria/layout/EditoriaMobileLayout.js
similarity index 100%
rename from editors/editoria/src/layout/EditoriaMobileLayout.js
rename to editors/demo/src/Editoria/layout/EditoriaMobileLayout.js
diff --git a/editors/editoria/src/layout/index.js b/editors/demo/src/Editoria/layout/index.js
similarity index 100%
rename from editors/editoria/src/layout/index.js
rename to editors/demo/src/Editoria/layout/index.js
diff --git a/editors/editoria/src/theme/elements/ButtonStyles.js b/editors/demo/src/Editoria/theme/elements/ButtonStyles.js
similarity index 100%
rename from editors/editoria/src/theme/elements/ButtonStyles.js
rename to editors/demo/src/Editoria/theme/elements/ButtonStyles.js
diff --git a/editors/editoria/src/theme/elements/index.js b/editors/demo/src/Editoria/theme/elements/index.js
similarity index 100%
rename from editors/editoria/src/theme/elements/index.js
rename to editors/demo/src/Editoria/theme/elements/index.js
diff --git a/editors/editoria/src/theme/index.js b/editors/demo/src/Editoria/theme/index.js
similarity index 100%
rename from editors/editoria/src/theme/index.js
rename to editors/demo/src/Editoria/theme/index.js
diff --git a/editors/editoria/src/theme/theme.js b/editors/demo/src/Editoria/theme/theme.js
similarity index 100%
rename from editors/editoria/src/theme/theme.js
rename to editors/demo/src/Editoria/theme/theme.js
diff --git a/editors/demo/src/Editors.js b/editors/demo/src/Editors.js
new file mode 100644
index 000000000..016521f7f
--- /dev/null
+++ b/editors/demo/src/Editors.js
@@ -0,0 +1,27 @@
+import React from 'react';
+import { createGlobalStyle } from 'styled-components';
+
+import Editoria from './Editoria/Editoria';
+const GlobalStyle = createGlobalStyle`
+  body {
+    margin: 0;
+    overflow-y: hidden;
+    padding: 0;
+  }
+
+  #root {
+    height:100vh;
+    width:100vw;
+  }
+`;
+
+const Editors = () => {
+  return (
+    <>
+      <GlobalStyle />
+      <Editoria />
+    </>
+  );
+};
+
+export default Editors;
diff --git a/editors/demo/src/HHMI/HHMI.js b/editors/demo/src/HHMI/HHMI.js
new file mode 100644
index 000000000..78deedb8a
--- /dev/null
+++ b/editors/demo/src/HHMI/HHMI.js
@@ -0,0 +1,52 @@
+import React from 'react';
+import { createGlobalStyle } from 'styled-components';
+
+import { Wax } from 'wax-prosemirror-core';
+
+import { EditoriaLayout } from '../Editoria/layout';
+import { config } from '../Editoria/config';
+
+const GlobalStyle = createGlobalStyle`
+  body {
+    margin: 0;
+    overflow-y: hidden;
+    padding: 0;
+  }
+
+  #root {
+    height:100vh;
+    width:100vw;
+  }
+`;
+
+const renderImage = file => {
+  const reader = new FileReader();
+  return new Promise((accept, fail) => {
+    reader.onload = () => accept(reader.result);
+    reader.onerror = () => fail(reader.error);
+    // Some extra delay to make the asynchronicity visible
+    setTimeout(() => reader.readAsDataURL(file), 150);
+  });
+};
+
+const Hhmi = () => {
+  return (
+    <>
+      <GlobalStyle />
+      <Wax
+        config={config}
+        autoFocus
+        placeholder="Type Something..."
+        fileUpload={file => renderImage(file)}
+        value=""
+        targetFormat="JSON"
+        // readonly
+        layout={EditoriaLayout}
+        // onChange={source => console.log(source)}
+        // user={user}
+      />
+    </>
+  );
+};
+
+export default Hhmi;
diff --git a/editors/editoria/src/MultipleChoiceQuestionService/MultipleChoiceQuestion.js b/editors/demo/src/HHMI/MultipleChoiceQuestionService/MultipleChoiceQuestion.js
similarity index 100%
rename from editors/editoria/src/MultipleChoiceQuestionService/MultipleChoiceQuestion.js
rename to editors/demo/src/HHMI/MultipleChoiceQuestionService/MultipleChoiceQuestion.js
diff --git a/editors/editoria/src/MultipleChoiceQuestionService/MultipleChoiceQuestionService.js b/editors/demo/src/HHMI/MultipleChoiceQuestionService/MultipleChoiceQuestionService.js
similarity index 100%
rename from editors/editoria/src/MultipleChoiceQuestionService/MultipleChoiceQuestionService.js
rename to editors/demo/src/HHMI/MultipleChoiceQuestionService/MultipleChoiceQuestionService.js
diff --git a/editors/editoria/src/QuestionsToolGroupService/Questions.js b/editors/demo/src/HHMI/QuestionsToolGroupService/Questions.js
similarity index 100%
rename from editors/editoria/src/QuestionsToolGroupService/Questions.js
rename to editors/demo/src/HHMI/QuestionsToolGroupService/Questions.js
diff --git a/editors/editoria/src/QuestionsToolGroupService/QuestionsToolGroupService.js b/editors/demo/src/HHMI/QuestionsToolGroupService/QuestionsToolGroupService.js
similarity index 100%
rename from editors/editoria/src/QuestionsToolGroupService/QuestionsToolGroupService.js
rename to editors/demo/src/HHMI/QuestionsToolGroupService/QuestionsToolGroupService.js
diff --git a/editors/editoria/src/index.js b/editors/demo/src/index.js
similarity index 77%
rename from editors/editoria/src/index.js
rename to editors/demo/src/index.js
index a83a18aee..5ec635a03 100644
--- a/editors/editoria/src/index.js
+++ b/editors/demo/src/index.js
@@ -1,8 +1,8 @@
 import React from 'react';
 import ReactDOM from 'react-dom';
-import Editoria from './Editoria';
+import Editors from './Editors';
 import * as serviceWorker from './serviceWorker';
-ReactDOM.render(<Editoria />, document.getElementById('root'));
+ReactDOM.render(<Editors />, document.getElementById('root'));
 
 // If you want your app to work offline and load faster, you can change
 // unregister() to register() below. Note this comes with some pitfalls.
diff --git a/editors/editoria/src/serviceWorker.js b/editors/demo/src/serviceWorker.js
similarity index 100%
rename from editors/editoria/src/serviceWorker.js
rename to editors/demo/src/serviceWorker.js
diff --git a/editors/editoria/.gitignore b/editors/editoria/.gitignore
deleted file mode 100644
index 4d29575de..000000000
--- a/editors/editoria/.gitignore
+++ /dev/null
@@ -1,23 +0,0 @@
-# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
-
-# dependencies
-/node_modules
-/.pnp
-.pnp.js
-
-# testing
-/coverage
-
-# production
-/build
-
-# misc
-.DS_Store
-.env.local
-.env.development.local
-.env.test.local
-.env.production.local
-
-npm-debug.log*
-yarn-debug.log*
-yarn-error.log*
diff --git a/editors/editoria/README.md b/editors/editoria/README.md
deleted file mode 100644
index 9d9614c4f..000000000
--- a/editors/editoria/README.md
+++ /dev/null
@@ -1,68 +0,0 @@
-This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
-
-## Available Scripts
-
-In the project directory, you can run:
-
-### `npm start`
-
-Runs the app in the development mode.<br>
-Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
-
-The page will reload if you make edits.<br>
-You will also see any lint errors in the console.
-
-### `npm test`
-
-Launches the test runner in the interactive watch mode.<br>
-See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
-
-### `npm run build`
-
-Builds the app for production to the `build` folder.<br>
-It correctly bundles React in production mode and optimizes the build for the best performance.
-
-The build is minified and the filenames include the hashes.<br>
-Your app is ready to be deployed!
-
-See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
-
-### `npm run eject`
-
-**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
-
-If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
-
-Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
-
-You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
-
-## Learn More
-
-You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
-
-To learn React, check out the [React documentation](https://reactjs.org/).
-
-### Code Splitting
-
-This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
-
-### Analyzing the Bundle Size
-
-This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
-
-### Making a Progressive Web App
-
-This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
-
-### Advanced Configuration
-
-This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
-
-### Deployment
-
-This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
-
-### `npm run build` fails to minify
-
-This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify
diff --git a/editors/editoria/config-overrides.js b/editors/editoria/config-overrides.js
deleted file mode 100644
index e2cf94482..000000000
--- a/editors/editoria/config-overrides.js
+++ /dev/null
@@ -1,47 +0,0 @@
-module.exports = function override(config, env) {
-  config.module = {
-    rules: [
-      {
-        oneOf: [
-          {
-            test: /\.js$/,
-            loader: "babel-loader",
-            exclude: /node_modules/,
-            options: {
-              presets: [
-                [require("@babel/preset-env"), { modules: false }],
-                require("@babel/preset-react")
-              ],
-              plugins: [
-                ["@babel/plugin-proposal-decorators", { legacy: true }],
-                "babel-plugin-parameter-decorator",
-                ["@babel/plugin-proposal-class-properties", { loose: true }]
-              ]
-            }
-          },
-          {
-            test: /\.css$/,
-            use: ["style-loader", "css-loader"]
-          },
-          {
-            test: /\.svg$/,
-            use: "svg-inline-loader"
-          },
-          {
-            test: /\.(woff(2)?|ttf|eot|svg)(\?v=\d+\.\d+\.\d+)?$/,
-            use: [
-              {
-                loader: "file-loader",
-                options: {
-                  name: "[name].[ext]",
-                  outputPath: "fonts/"
-                }
-              }
-            ]
-          }
-        ]
-      }
-    ]
-  };
-  return config;
-};
diff --git a/editors/editoria/jsconfig.json b/editors/editoria/jsconfig.json
deleted file mode 100644
index 504cd646e..000000000
--- a/editors/editoria/jsconfig.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-  "compilerOptions": {
-    "experimentalDecorators": true
-  }
-}
diff --git a/editors/editoria/package-lock.json b/editors/editoria/package-lock.json
deleted file mode 100644
index c2e31ac9a..000000000
--- a/editors/editoria/package-lock.json
+++ /dev/null
@@ -1,86 +0,0 @@
-{
-  "name": "editoria",
-  "version": "0.0.47",
-  "lockfileVersion": 1,
-  "requires": true,
-  "dependencies": {
-    "cross-spawn": {
-      "version": "6.0.5",
-      "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
-      "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
-      "dev": true,
-      "requires": {
-        "nice-try": "^1.0.4",
-        "path-key": "^2.0.1",
-        "semver": "^5.5.0",
-        "shebang-command": "^1.2.0",
-        "which": "^1.2.9"
-      }
-    },
-    "dotenv": {
-      "version": "6.2.0",
-      "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-6.2.0.tgz",
-      "integrity": "sha512-HygQCKUBSFl8wKQZBSemMywRWcEDNidvNbjGVyZu3nbZ8qq9ubiPoGLMdRDpfSrpkkm9BXYFkpKxxFX38o/76w==",
-      "dev": true
-    },
-    "isexe": {
-      "version": "2.0.0",
-      "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
-      "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
-      "dev": true
-    },
-    "nice-try": {
-      "version": "1.0.5",
-      "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
-      "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==",
-      "dev": true
-    },
-    "path-key": {
-      "version": "2.0.1",
-      "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
-      "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
-      "dev": true
-    },
-    "react-app-rewired": {
-      "version": "2.1.3",
-      "resolved": "https://registry.npmjs.org/react-app-rewired/-/react-app-rewired-2.1.3.tgz",
-      "integrity": "sha512-NXC2EsQrnEMV7xD70rHcBq0B4PSEzjY/K2m/e+GRgit2jZO/uZApnpCZSKvIX2leLRN69Sqf2id0VXZ1F62CDw==",
-      "dev": true,
-      "requires": {
-        "cross-spawn": "^6.0.5",
-        "dotenv": "^6.2.0",
-        "semver": "^5.6.0"
-      }
-    },
-    "semver": {
-      "version": "5.7.0",
-      "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz",
-      "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==",
-      "dev": true
-    },
-    "shebang-command": {
-      "version": "1.2.0",
-      "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
-      "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
-      "dev": true,
-      "requires": {
-        "shebang-regex": "^1.0.0"
-      }
-    },
-    "shebang-regex": {
-      "version": "1.0.0",
-      "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
-      "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
-      "dev": true
-    },
-    "which": {
-      "version": "1.3.1",
-      "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
-      "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
-      "dev": true,
-      "requires": {
-        "isexe": "^2.0.0"
-      }
-    }
-  }
-}
diff --git a/editors/editoria/package.json b/editors/editoria/package.json
deleted file mode 100644
index dc3ddb2d4..000000000
--- a/editors/editoria/package.json
+++ /dev/null
@@ -1,41 +0,0 @@
-{
-  "name": "editoria",
-  "version": "0.0.47",
-  "private": true,
-  "dependencies": {
-    "@guardian/prosemirror-invisibles": "^1.2.0",
-    "@pubsweet/ui-toolkit": "^2.3.1",
-    "fontsource-merriweather": "^3.0.9",
-    "prosemirror-tables": "^1.1.1",
-    "react": "^16.13.1",
-    "react-dom": "^16.13.1",
-    "react-panelgroup": "^1.0.10",
-    "styled-components": "^4.2.0",
-    "typeface-fira-sans-condensed": "^0.0.54",
-    "typeface-inter": "^1.1.13",
-    "typeface-vollkorn": "^0.0.54",
-    "wax-prosemirror-components": "^0.0.47",
-    "wax-prosemirror-core": "^0.0.47",
-    "wax-prosemirror-plugins": "^0.0.47",
-    "wax-prosemirror-services": "^0.0.47"
-  },
-  "scripts": {
-    "start": "react-app-rewired start",
-    "test": "react-app-rewired test --env=jsdom",
-    "eject": "react-scripts eject"
-  },
-  "eslintConfig": {
-    "extends": "react-app"
-  },
-  "browserslist": [
-    ">0.2%",
-    "not dead",
-    "not ie <= 11",
-    "not op_mini all"
-  ],
-  "devDependencies": {
-    "babel-eslint": "10.0.3",
-    "react-app-rewired": "^2.1.1",
-    "react-scripts": "3.4"
-  }
-}
diff --git a/editors/editoria/public/favicon.ico b/editors/editoria/public/favicon.ico
deleted file mode 100644
index a11777cc471a4344702741ab1c8a588998b1311a..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 3870
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
baj7?x%VD!5Cxk2YbYLNVeiXvvpMCWYo=by@

diff --git a/editors/editoria/public/index.html b/editors/editoria/public/index.html
deleted file mode 100644
index dd1ccfd4c..000000000
--- a/editors/editoria/public/index.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8" />
-    <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
-    <meta name="viewport" content="width=device-width, initial-scale=1" />
-    <meta name="theme-color" content="#000000" />
-    <!--
-      manifest.json provides metadata used when your web app is installed on a
-      user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-    -->
-    <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
-    <!--
-      Notice the use of %PUBLIC_URL% in the tags above.
-      It will be replaced with the URL of the `public` folder during the build.
-      Only files inside the `public` folder can be referenced from the HTML.
-
-      Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
-      work correctly both with client-side routing and a non-root public URL.
-      Learn how to configure a non-root public URL by running `npm run build`.
-    -->
-    <title>React App</title>
-  </head>
-  <body>
-    <noscript>You need to enable JavaScript to run this app.</noscript>
-    <div id="root"></div>
-    <!--
-      This HTML file is a template.
-      If you open it directly in the browser, you will see an empty page.
-
-      You can add webfonts, meta tags, or analytics to this file.
-      The build step will place the bundled scripts into the <body> tag.
-
-      To begin the development, run `npm start` or `yarn start`.
-      To create a production bundle, use `npm run build` or `yarn build`.
-    -->
-  </body>
-</html>
diff --git a/editors/editoria/public/manifest.json b/editors/editoria/public/manifest.json
deleted file mode 100644
index 1f2f141fa..000000000
--- a/editors/editoria/public/manifest.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
-  "short_name": "React App",
-  "name": "Create React App Sample",
-  "icons": [
-    {
-      "src": "favicon.ico",
-      "sizes": "64x64 32x32 24x24 16x16",
-      "type": "image/x-icon"
-    }
-  ],
-  "start_url": ".",
-  "display": "standalone",
-  "theme_color": "#000000",
-  "background_color": "#ffffff"
-}
diff --git a/package.json b/package.json
index c694ee5fe..251f841cc 100644
--- a/package.json
+++ b/package.json
@@ -27,7 +27,7 @@
     "clean:packages": "lerna clean --yes",
     "clean:root": "rm -rf node_modules",
     "cz": "git-cz",
-    "editoria": "cd editors/editoria && yarn start",
+    "editoria": "cd editors/demo && yarn start",
     "reset": "yarn clean && yarn",
     "storybook": "coko-storybook"
   },
-- 
GitLab