mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-01 23:52:40 +00:00
refactor to func comp and using dialog
This commit is contained in:
@@ -1,75 +1,87 @@
|
||||
require('./errorBar.less');
|
||||
const React = require('react');
|
||||
const createClass = require('create-react-class');
|
||||
const _ = require('lodash');
|
||||
const _ = require('lodash');
|
||||
|
||||
const ErrorBar = createClass({
|
||||
displayName : 'ErrorBar',
|
||||
getDefaultProps : function() {
|
||||
return {
|
||||
errors : []
|
||||
};
|
||||
},
|
||||
|
||||
hasOpenError : false,
|
||||
hasCloseError : false,
|
||||
hasMatchError : false,
|
||||
|
||||
renderErrors : function(){
|
||||
this.hasOpenError = false;
|
||||
this.hasCloseError = false;
|
||||
this.hasMatchError = false;
|
||||
import Dialog from '../../../components/dialog.jsx';
|
||||
|
||||
|
||||
const errors = _.map(this.props.errors, (err, idx)=>{
|
||||
if(err.id == 'OPEN') this.hasOpenError = true;
|
||||
if(err.id == 'CLOSE') this.hasCloseError = true;
|
||||
if(err.id == 'MISMATCH') this.hasMatchError = true;
|
||||
return <li key={idx}>
|
||||
Line {err.line} : {err.text}, '{err.type}' tag
|
||||
</li>;
|
||||
});
|
||||
const DISMISS_BUTTON = <i className='fas fa-times dismiss' />;
|
||||
|
||||
return <ul>{errors}</ul>;
|
||||
},
|
||||
const ErrorBar = ( props ) => {
|
||||
let hasOpenError = false;
|
||||
let hasCloseError = false;
|
||||
let hasMatchError = false;
|
||||
|
||||
renderProtip : function(){
|
||||
const msg = [];
|
||||
if(this.hasOpenError){
|
||||
msg.push(<div>
|
||||
An unmatched opening tag means there's an opened tag that isn't closed. You need to close your tags, like this {'</div>'}. Make sure to match types!
|
||||
</div>);
|
||||
}
|
||||
const renderErrors = () => {
|
||||
hasOpenError = false;
|
||||
hasCloseError = false;
|
||||
hasMatchError = false;
|
||||
|
||||
if(this.hasCloseError){
|
||||
msg.push(<div>
|
||||
An unmatched closing tag means you closed a tag without opening it. Either remove it, or check to where you think you opened it.
|
||||
</div>);
|
||||
}
|
||||
const errors = _.map(props.errors, (err, idx) => {
|
||||
if (err.id === 'OPEN') hasOpenError = true;
|
||||
if (err.id === 'CLOSE') hasCloseError = true;
|
||||
if (err.id === 'MISMATCH') hasMatchError = true;
|
||||
|
||||
if(this.hasMatchError){
|
||||
msg.push(<div>
|
||||
A type mismatch means you closed a tag, but the last open tag was a different type.
|
||||
</div>);
|
||||
}
|
||||
return <div className='protips'>
|
||||
<h4>Protips!</h4>
|
||||
{msg}
|
||||
</div>;
|
||||
},
|
||||
return (
|
||||
<li key={idx}>
|
||||
Line {err.line} : {err.text}, '{err.type}' tag
|
||||
</li>
|
||||
);
|
||||
});
|
||||
|
||||
render : function(){
|
||||
if(!this.props.errors.length) return null;
|
||||
return <ul>{errors}</ul>;
|
||||
};
|
||||
|
||||
return <div className='errorBar'>
|
||||
<i className='fas fa-exclamation-triangle' />
|
||||
<h3> There are HTML errors in your markup</h3>
|
||||
<small>If these aren't fixed your brew will not render properly when you print it to PDF or share it</small>
|
||||
{this.renderErrors()}
|
||||
<hr />
|
||||
{this.renderProtip()}
|
||||
</div>;
|
||||
}
|
||||
});
|
||||
const renderProtip = () => {
|
||||
const msg = [];
|
||||
if (hasOpenError) {
|
||||
msg.push(
|
||||
<div key="openError">
|
||||
An unmatched opening tag means there's an opened tag that isn't closed. You need to close your tags, like this {'</div>'}. Make sure to match types!
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
if (hasCloseError) {
|
||||
msg.push(
|
||||
<div key="closeError">
|
||||
An unmatched closing tag means you closed a tag without opening it. Either remove it, or check to where you think you opened it.
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
if (hasMatchError) {
|
||||
msg.push(
|
||||
<div key="matchError">
|
||||
A type mismatch means you closed a tag, but the last open tag was a different type.
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="protips">
|
||||
<h4>Protips!</h4>
|
||||
{msg}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
if (!props.errors.length) return null;
|
||||
|
||||
return (
|
||||
<Dialog className="errorBar" closeText={DISMISS_BUTTON} >
|
||||
<div className="content">
|
||||
<i className="fas fa-exclamation-triangle" />
|
||||
<h3> There are HTML errors in your markup</h3>
|
||||
<small>
|
||||
If these aren't fixed your brew will not render properly when you print it to PDF or share it
|
||||
</small>
|
||||
{renderErrors()}
|
||||
</div>
|
||||
<hr />
|
||||
{renderProtip()}
|
||||
</Dialog>
|
||||
);
|
||||
};
|
||||
|
||||
module.exports = ErrorBar;
|
||||
|
||||
Reference in New Issue
Block a user