forked from tanner/qotnews
Add buttons to convert <pre> to <p>
This commit is contained in:
parent
c554ecd890
commit
607573dd44
|
@ -15,6 +15,7 @@ class Article extends React.Component {
|
||||||
this.state = {
|
this.state = {
|
||||||
story: cache[id] || false,
|
story: cache[id] || false,
|
||||||
error: false,
|
error: false,
|
||||||
|
pConv: [],
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -43,10 +44,22 @@ class Article extends React.Component {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pConvert = (n) => {
|
||||||
|
this.setState({ pConv: [...this.state.pConv, n]});
|
||||||
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const id = this.props.match ? this.props.match.params.id : 'CLOL';
|
const id = this.props.match ? this.props.match.params.id : 'CLOL';
|
||||||
const story = this.state.story;
|
const story = this.state.story;
|
||||||
const error = this.state.error;
|
const error = this.state.error;
|
||||||
|
const pConv = this.state.pConv;
|
||||||
|
let nodes = null;
|
||||||
|
|
||||||
|
if (story.text) {
|
||||||
|
let domparser = new DOMParser();
|
||||||
|
let doc = domparser.parseFromString(story.text, 'text/html');
|
||||||
|
nodes = doc.querySelector('body').children;
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className='article-container'>
|
<div className='article-container'>
|
||||||
|
@ -65,8 +78,20 @@ class Article extends React.Component {
|
||||||
|
|
||||||
{infoLine(story)}
|
{infoLine(story)}
|
||||||
|
|
||||||
{story.text ?
|
{nodes ?
|
||||||
<div className='story-text' dangerouslySetInnerHTML={{ __html: story.text }} />
|
<div className='story-text'>
|
||||||
|
{Object.entries(nodes).map(([k, v]) =>
|
||||||
|
pConv.includes(k) ?
|
||||||
|
v.innerHTML.split('\n\n').map(x =>
|
||||||
|
<p dangerouslySetInnerHTML={{ __html: x }} />
|
||||||
|
)
|
||||||
|
:
|
||||||
|
<>
|
||||||
|
<v.localName dangerouslySetInnerHTML={{ __html: v.innerHTML }} />
|
||||||
|
{v.localName == 'pre' && <button onClick={() => this.pConvert(k)}>Convert Code to Paragraph</button>}
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
:
|
:
|
||||||
<p>Problem getting article :(</p>
|
<p>Problem getting article :(</p>
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,6 +4,7 @@ body {
|
||||||
color: #000000;
|
color: #000000;
|
||||||
margin-bottom: 100vh;
|
margin-bottom: 100vh;
|
||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
|
font-kerning: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user