aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorache <ache@ache.one>2018-04-13 12:03:50 +0200
committerache <ache@ache.one>2018-04-13 12:03:50 +0200
commit87f66c324c537b4dd550e87444d4903713d13211 (patch)
tree0959be3c0141b1abc0002d74ec293fd0254a4226
parenttohtml is now in a new file (diff)
Creation d'un package rollup Buddle Web Editor
-rw-r--r--package.json10
-rw-r--r--public/edit.html81
-rw-r--r--rollup.config.js33
3 files changed, 123 insertions, 1 deletions
diff --git a/package.json b/package.json
index 6de1cf5..0a8f14a 100644
--- a/package.json
+++ b/package.json
@@ -4,7 +4,8 @@
"description": "",
"main": "app.js",
"scripts": {
- "start": "node app.js"
+ "start": "node app.js",
+ "build": "./node_modules/.bin/rollup -c"
},
"dependencies": {
"directory-tree": "^2.0.0",
@@ -35,6 +36,13 @@
"license": "",
"devDependencies": {
"ava": "^0.25.0",
+ "rollup": "^0.57.1",
+ "rollup-plugin-commonjs": "^9.1.0",
+ "rollup-plugin-json": "^2.3.0",
+ "rollup-plugin-node-builtins": "^2.1.2",
+ "rollup-plugin-node-globals": "^1.2.0",
+ "rollup-plugin-node-resolve": "^3.3.0",
+ "rollup-plugin-uglify": "^3.0.0",
"xo": "^0.18.2"
},
"xo": {
diff --git a/public/edit.html b/public/edit.html
new file mode 100644
index 0000000..b1aca3a
--- /dev/null
+++ b/public/edit.html
@@ -0,0 +1,81 @@
+<!doctype html>
+<html lang="fr">
+<head>
+ <meta charset="utf-8">
+ <meta name="viewport"
+ content="width=device-width,minimum-scale=1,initial-scale=1">
+ <title>hmarkdown example</title>
+
+ <script src="js/script.js"></script>
+ <script src="js/qcm.js"></script>
+ <script src="js/hmd.min.js"></script>
+ <link rel="stylesheet" type="text/css" href="css/style.css">
+ <link rel="stylesheet" type="text/css" href="css/rainbow.css">
+
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.7.1/katex.min.css" crossorigin="anonymous">
+<style>
+html {
+ height: 100vh;
+ width: 100vv;
+ overflow-y: hidden;
+}
+body {
+ display: grid;
+ grid-template-columns: 50% 50%;
+ grid-template-row: 100vv;
+ grid-template-areas: "edit preview";
+ height: 100vh;
+ width: 100vv;
+ margin: 0;
+ padding: 0;
+ overflow-y: hidden;
+ overflow-x: hidden;
+}
+#edit {
+ grid-area: edit;
+ overflow-y: auto;
+ overflow-x: hidden;
+ height: 100vh;
+}
+#edit-zone{
+ overflow-x: hidden;
+}
+#preview {
+ grid-area: preview;
+ overflow-y: scroll;
+ overflow-x: hidden;
+}
+</style>
+</head>
+<body>
+ <div id="edit"><div contenteditable="true" id="edit-zone">Yeah x2</div></div>
+ <div id="preview" contenteditable="false">Yeah ! </div>
+
+ <!-- This is the bundle generated by rollup.js -->
+ <script>
+let edit = document.getElementById('edit-zone');
+let preview = document.getElementById('preview');
+let modification = false;
+let interval = setInterval( () => {
+ if( modification ) {
+ hmd(edit.innerText, (err, file) => {
+ preview.innerHTML = String(file);
+ modification = false;
+ });
+ }
+}, 500);
+
+edit.addEventListener('input', () => {
+ modification = true;
+ /*
+ edit.style.width = '';
+ edit.style.height = '';
+ if(edit.scrollWidth > edit.clientWidth) edit.style.width = edit.scrollWidth + 'px';
+ if(exit.scrollHeight > edit.clientHeight) edit.style.height = edit.scrollHeight + 'px';
+ */
+}, false);
+
+ </script>
+</body>
+</html>
+
diff --git a/rollup.config.js b/rollup.config.js
new file mode 100644
index 0000000..20621c9
--- /dev/null
+++ b/rollup.config.js
@@ -0,0 +1,33 @@
+import uglify from 'rollup-plugin-uglify'
+import builtins from 'rollup-plugin-node-builtins'
+import json from 'rollup-plugin-json'
+import commonjs from 'rollup-plugin-commonjs'
+import resolve from 'rollup-plugin-node-resolve'
+import globals from 'rollup-plugin-node-globals'
+
+
+
+export default {
+ input: 'tohtml.js',
+ output: {
+ file: 'public/js/hmd.min.js',
+ format: 'iife',
+ sourcemap: 'inline',
+ name: 'hmd'
+ },
+ plugins: [
+ resolve({
+ jsnext: true,
+ browser: true,
+ main: true,
+ }),
+ commonjs(),
+ builtins(),
+ json({
+ preferConst: true,
+ }),
+ globals(),
+ uglify(),
+ ]
+};
+