Skip to content
Snippets Groups Projects
Commit 861ca301 authored by Tim Fesenko's avatar Tim Fesenko Committed by GitHub
Browse files

Merge pull request #431 from steemit/185-style-prep

css refactor & ReplyEditor edge cases #185
parents 7fcea790 0e555078
No related branches found
No related tags found
No related merge requests found
.Markdown {
font-family: 'Source Serif Pro', serif;
font-size: 120%;
line-height: 150%;
}
// used for comments
.Markdown.MarkdownViewer--small {
font-family: inherit;
font-size: 110%;
img {
max-width: 400px;
max-height: 400px;
}
}
.Markdown, .ReplyEditor__body.rte {
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
h1, h2, h3, h4, h5, h6 {
font-family: 'Source Serif Pro', serif;
......@@ -72,10 +94,3 @@
max-height: 75vw;
}
}
.Markdown.MarkdownViewer--small {
img {
max-width: 400px;
max-height: 400px;
}
}
......@@ -83,8 +83,6 @@
.Comment__body {
margin-left: 62px;
max-width: 50rem;
font-size: 110%;
word-wrap: break-word;
}
.Comment__footer {
......
......@@ -44,16 +44,6 @@
.PostFull__body {
padding: 1rem 0 2rem 0;
clear: left;
font-family: 'Source Serif Pro', serif;
font-size: 120%;
line-height: 150%;
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.PostFull__footer {
......
......@@ -24,7 +24,7 @@ let saveEditorTimeout
// removes <html></html> wrapper if exists
function stripHtmlWrapper(text) {
const m = text.match(/<html>([\S\s]*)<\/html>/m);
const m = text.match(/<html>\n?([\S\s]+?)\n?<\/html>/m);
return m && m.length === 2 ? m[1] : text;
}
......@@ -35,6 +35,7 @@ function addHtmlWrapper(body) {
console.log(err);
return body
}
if(!body || body.trim() === '') body = '';
return `<html>\n${body}\n</html>`;
}
......@@ -43,14 +44,16 @@ const isHtmlTest = text =>
/^<html>/.test(text) ||
/^<p>[\S\s]*<\/p>/.test(text)
function stateToHtml(rte_state) {
let html = rte_state.toString('html');
function stateToHtml(state) {
let html = state.toString('html');
if (html === '<p></p>') html = '';
if (html === '<p><br></p>') html = '';
return html
}
function stateFromHtml(html) {
function stateFromHtml(html = null) {
if(!RichTextEditor) return null;
if(html && html.trim() == '') html = null
return html ? RichTextEditor.createValueFromString(html, 'html')
: RichTextEditor.createEmptyValue()
}
......@@ -344,7 +347,7 @@ class ReplyEditor extends React.Component {
<small onClick={autoVoteOnChange}>Upvote post</small>
&nbsp;&nbsp;
<input type="checkbox" {...cleanReduxInput(autoVote)} onChange={autoVoteOnChange} />
<input type="checkbox" checked={autoVote.value} onChange={autoVoteOnChange} />
</div>}
</div>
{!loading && !rte && body.value && <div className={'Preview ' + vframe_section_shrink_class}>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment