mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-13 06:32:39 +00:00
222 lines
5.5 KiB
JavaScript
222 lines
5.5 KiB
JavaScript
const React = require('react');
|
|
const _ = require('lodash');
|
|
const cx = require('classnames');
|
|
const request = require("superagent");
|
|
|
|
|
|
const Nav = require('naturalcrit/nav/nav.jsx');
|
|
const Navbar = require('../../navbar/navbar.jsx');
|
|
|
|
const ReportIssue = require('../../navbar/issue.navitem.jsx');
|
|
const PrintLink = require('../../navbar/print.navitem.jsx');
|
|
const Account = require('../../navbar/account.navitem.jsx');
|
|
const Save = require('../../navbar/continousSave.navitem.jsx');
|
|
//const RecentlyEdited = require('../../navbar/recent.navitem.jsx').edited;
|
|
|
|
|
|
|
|
const Markdown = require('homebrewery/markdown.js');
|
|
|
|
const SAVE_TIMEOUT = 3000;
|
|
|
|
|
|
const BrewInterface = require('homebrewery/brewInterface/brewInterface.jsx');
|
|
const Utils = require('homebrewery/utils.js');
|
|
|
|
|
|
const Store = require('homebrewery/brew.store.js');
|
|
const Actions = require('homebrewery/brew.actions.js');
|
|
|
|
|
|
|
|
|
|
|
|
const EditPage = React.createClass({
|
|
getDefaultProps: function() {
|
|
return {
|
|
brew : {}
|
|
};
|
|
},
|
|
|
|
getInitialState: function() {
|
|
return {
|
|
brew : this.props.brew,
|
|
|
|
isSaving : false,
|
|
isPending : false,
|
|
errors : null,
|
|
htmlErrors : Markdown.validate(this.props.brew.text),
|
|
lastUpdated : this.props.brew.updatedAt
|
|
};
|
|
},
|
|
savedBrew : null,
|
|
|
|
componentDidMount: function(){
|
|
//this.trySave();
|
|
window.onbeforeunload = ()=>{
|
|
if(Store.getStatus() !== 'ready') return 'You have unsaved changes!';
|
|
};
|
|
|
|
document.addEventListener('keydown', this.handleControlKeys);
|
|
},
|
|
componentWillUnmount: function() {
|
|
window.onbeforeunload = function(){};
|
|
document.removeEventListener('keydown', this.handleControlKeys);
|
|
},
|
|
|
|
|
|
handleControlKeys : Utils.controlKeys({
|
|
s : Actions.pendingSave,
|
|
p : ()=>{
|
|
window.open(`/print/${this.props.brew.shareId}?dialog=true`, '_blank').focus();
|
|
}
|
|
}),
|
|
|
|
/*
|
|
handleControlKeys : function(e){
|
|
if(!(e.ctrlKey || e.metaKey)) return;
|
|
const S_KEY = 83;
|
|
const P_KEY = 80;
|
|
if(e.keyCode == S_KEY) this.save();
|
|
if(e.keyCode == P_KEY)
|
|
if(e.keyCode == P_KEY || e.keyCode == S_KEY){
|
|
e.stopPropagation();
|
|
e.preventDefault();
|
|
}
|
|
},
|
|
|
|
handleSplitMove : function(){
|
|
this.refs.editor.update();
|
|
},
|
|
|
|
handleMetadataChange : function(metadata){
|
|
this.setState({
|
|
brew : _.merge({}, this.state.brew, metadata),
|
|
isPending : true,
|
|
}, ()=>{
|
|
this.trySave();
|
|
});
|
|
|
|
},
|
|
|
|
handleTextChange : function(text){
|
|
|
|
//If there are errors, run the validator on everychange to give quick feedback
|
|
var htmlErrors = this.state.htmlErrors;
|
|
if(htmlErrors.length) htmlErrors = Markdown.validate(text);
|
|
|
|
this.setState({
|
|
brew : _.merge({}, this.state.brew, {text : text}),
|
|
isPending : true,
|
|
htmlErrors : htmlErrors
|
|
});
|
|
|
|
this.trySave();
|
|
},
|
|
*/
|
|
hasChanges : function(){
|
|
if(this.savedBrew){
|
|
return !_.isEqual(this.state.brew, this.savedBrew)
|
|
}else{
|
|
return !_.isEqual(this.state.brew, this.props.brew)
|
|
}
|
|
return false;
|
|
},
|
|
|
|
trySave : function(){
|
|
if(!this.debounceSave) this.debounceSave = _.debounce(this.save, SAVE_TIMEOUT);
|
|
if(this.hasChanges()){
|
|
this.debounceSave();
|
|
}else{
|
|
this.debounceSave.cancel();
|
|
}
|
|
},
|
|
|
|
save : function(){
|
|
if(this.debounceSave && this.debounceSave.cancel) this.debounceSave.cancel();
|
|
|
|
this.setState({
|
|
isSaving : true,
|
|
errors : null,
|
|
htmlErrors : Markdown.validate(this.state.brew.text)
|
|
});
|
|
|
|
request
|
|
.put('/api/update/' + this.props.brew.editId)
|
|
.send(this.state.brew)
|
|
.end((err, res) => {
|
|
if(err){
|
|
this.setState({
|
|
errors : err,
|
|
})
|
|
}else{
|
|
this.savedBrew = res.body;
|
|
this.setState({
|
|
isPending : false,
|
|
isSaving : false,
|
|
lastUpdated : res.body.updatedAt
|
|
})
|
|
}
|
|
})
|
|
},
|
|
|
|
renderSaveButton : function(){
|
|
if(this.state.errors){
|
|
var errMsg = '';
|
|
try{
|
|
errMsg += this.state.errors.toString() + '\n\n';
|
|
errMsg += '```\n' + JSON.stringify(this.state.errors.response.error, null, ' ') + '\n```';
|
|
}catch(e){}
|
|
|
|
return <Nav.item className='save error' icon="fa-warning">
|
|
Oops!
|
|
<div className='errorContainer'>
|
|
Looks like there was a problem saving. <br />
|
|
Report the issue <a target='_blank' href={'https://github.com/stolksdorf/naturalcrit/issues/new?body='+ encodeURIComponent(errMsg)}>
|
|
here
|
|
</a>.
|
|
</div>
|
|
</Nav.item>
|
|
}
|
|
|
|
if(this.state.isSaving){
|
|
return <Nav.item className='save' icon="fa-spinner fa-spin">saving...</Nav.item>
|
|
}
|
|
if(this.state.isPending && this.hasChanges()){
|
|
return <Nav.item className='save' onClick={this.save} color='blue' icon='fa-save'>Save Now</Nav.item>
|
|
}
|
|
if(!this.state.isPending && !this.state.isSaving){
|
|
return <Nav.item className='save saved'>saved.</Nav.item>
|
|
}
|
|
},
|
|
renderNavbar : function(){
|
|
return <Navbar>
|
|
<Nav.section>
|
|
<Nav.item className='brewTitle'>{this.state.brew.title}</Nav.item>
|
|
</Nav.section>
|
|
<Nav.section>
|
|
{this.renderSaveButton()}
|
|
{/*<RecentlyEdited brew={this.props.brew} />*/}
|
|
<ReportIssue />
|
|
<Nav.item newTab={true} href={'/share/' + this.props.brew.shareId} color='teal' icon='fa-share-alt'>
|
|
Share
|
|
</Nav.item>
|
|
<PrintLink shareId={this.props.brew.shareId} />
|
|
<Account />
|
|
</Nav.section>
|
|
</Navbar>
|
|
},
|
|
|
|
render : function(){
|
|
return <div className='editPage page'>
|
|
{this.renderNavbar()}
|
|
|
|
<div className='content'>
|
|
<BrewInterface />
|
|
</div>
|
|
</div>
|
|
}
|
|
});
|
|
|
|
module.exports = EditPage;
|