diff --git a/client/homebrew/editor/editor.jsx b/client/homebrew/editor/editor.jsx index 7cbd6bb20..12cb0aa37 100644 --- a/client/homebrew/editor/editor.jsx +++ b/client/homebrew/editor/editor.jsx @@ -3,17 +3,26 @@ const React = require('react'); const createClass = require('create-react-class'); const _ = require('lodash'); const cx = require('classnames'); +const dedent = require('dedent-tabs').default; const CodeEditor = require('naturalcrit/codeEditor/codeEditor.jsx'); const SnippetBar = require('./snippetbar/snippetbar.jsx'); const MetadataEditor = require('./metadataEditor/metadataEditor.jsx'); +const SNIPPETBAR_HEIGHT = 25; +const DEFAULT_STYLE_TEXT = dedent` + /*=======--- Example CSS styling ---=======*/ + /* Any CSS here will apply to your document! */ + + .myExampleClass { + color: black; + }`; const splice = function(str, index, inject){ return str.slice(0, index) + inject + str.slice(index); }; -const SNIPPETBAR_HEIGHT = 25; + const Editor = createClass({ getDefaultProps : function() { @@ -176,7 +185,7 @@ const Editor = createClass({ return ; } if(this.isMeta()){ diff --git a/client/homebrew/pages/newPage/newPage.jsx b/client/homebrew/pages/newPage/newPage.jsx index b069f6e7d..6b48df4a4 100644 --- a/client/homebrew/pages/newPage/newPage.jsx +++ b/client/homebrew/pages/newPage/newPage.jsx @@ -4,7 +4,6 @@ const React = require('react'); const createClass = require('create-react-class'); const _ = require('lodash'); const request = require('superagent'); -const dedent = require('dedent-tabs').default; const Markdown = require('naturalcrit/markdown.js'); @@ -24,14 +23,7 @@ const NewPage = createClass({ getDefaultProps : function() { return { brew : { - text : '', - style : dedent` - /*=======--- Example CSS styling ---=======*/ - /* Any CSS here will apply to your document! */ - - .myExampleClass { - color: black; - }`, + text : '', shareId : null, editId : null, createdAt : null, @@ -52,7 +44,6 @@ const NewPage = createClass({ return { brew : { text : this.props.brew.text || '', - style : this.props.brew.style || '', gDrive : false, title : this.props.brew.title || '', description : this.props.brew.description || '', diff --git a/server.js b/server.js index b7e71794d..45e073065 100644 --- a/server.js +++ b/server.js @@ -9,7 +9,6 @@ const GoogleActions = require('./server/googleActions.js'); const serveCompressedStaticAssets = require('./server/static-assets.mv.js'); const sanitizeFilename = require('sanitize-filename'); const asyncHandler = require('express-async-handler'); -const dedent = require('dedent-tabs').default; const brewAccessTypes = ['edit', 'share', 'raw']; @@ -37,14 +36,6 @@ const getBrewFromId = asyncHandler(async (id, accessType)=>{ const index = brew.text.indexOf('```\n\n'); brew.style = brew.text.slice(7, index - 1); brew.text = brew.text.slice(index + 5); - } else { - brew.style = dedent` - /*=======--- Example CSS styling ---=======*/ - /* Any CSS here will apply to your document! */ - - .myExampleClass { - color: black; - }`; } return brew; }); diff --git a/server/homebrew.api.js b/server/homebrew.api.js index 51c9903db..1f988761d 100644 --- a/server/homebrew.api.js +++ b/server/homebrew.api.js @@ -20,10 +20,12 @@ const getGoodBrewTitle = (text)=>{ }; const mergeBrewText = (text, style)=>{ - text = `\`\`\`css\n` + - `${style}\n` + - `\`\`\`\n\n` + - `${text}`; + if(typeof style !== 'undefined') { + text = `\`\`\`css\n` + + `${style}\n` + + `\`\`\`\n\n` + + `${text}`; + } return text; };