1
0
mirror of https://github.com/fazo96/ipfs-boards synced 2025-01-10 12:24:20 +01:00
ipfs-boards/webapp/pages/profile-editor.jsx

113 lines
4.3 KiB
JavaScript

var React = require('react')
var GetIPFS = require('getipfs.jsx')
var Icon = require('icon.jsx')
var Link = require('react-router').Link
var { Error, Loading, Saving } = require('status-components.jsx')
module.exports = function (boardsAPI) {
return React.createClass({
getInitialState () {
return { loading: true }
},
componentDidMount () {
boardsAPI.use(boards => {
boards.init()
boards.getEventEmitter().on('init', err => {
if (!err && this.isMounted()) {
this.init(boards)
}
})
if (this.isMounted() && boards.isInit) {
this.init(boards)
}
})
},
getProfile (boards) {
boards.getProfile(boards.getMyID(), (err, p) => {
if (!this.isMounted()) return
else if (err) this.setState({ loading: false })
else if (this.state.loading) {
// State isn't set to p directly to avoid XSS.
// There is no knowing what's gonna be in a profile
// Should also convert to string and check length etc.
this.setState({ name: p.name, description: p.description, loading: false })
}
})
},
init (boards) {
if (this.state.init) return
this.setState({ api: boards, userid: boards.getMyID() })
this.getProfile(boards)
},
handleChange (event) {
if (event.target.id === 'name') {
this.setState({ name: event.target.value })
} else {
this.setState({ description: event.target.value })
}
},
skip () {
this.setState({ loading: false, updating: false, error: false })
},
refresh () {
this.setState({ loading: true })
boardsAPI.use(b => this.getProfile(b))
},
save () {
var boards = this.state.api
var profile = {
name: this.state.name,
description: this.state.description
}
this.setState({ updating: true })
boards.createProfile(profile, err => {
this.setState({ error: err, updating: false })
if (err) console.log('Profile Publish error:', err)
})
},
render () {
if (this.state.api) {
if (this.state.error) {
return <Error error={this.state.error} >
<button className="button button-primary center-block" onClick={this.skip}>Continue</button>
</Error>
} else if (this.state.loading) {
return <Loading title="Fetching your current Profile...">
<button className="button button-primary center-block" onClick={this.skip}>Skip</button>
</Loading>
} else if (this.state.updating) {
return <Saving>
<p>Pressing the Skip button will not abort the publish operation.</p>
<button className="button button-primary center-block" onClick={this.skip}>Skip</button>
</Saving>
} else {
return (
<div className="editor">
<h2><Icon name="user" className="light" /> Edit Profile</h2>
<p>This App uses IPFS to store your profile. When you are offline,
other users or servers that viewed your profile will serve it to
others.</p>
<p><b>Warning:</b> due to a bug in go-ipfs, it may take up to a minute
for your changes to be visibile. Your profile will appear unchanged during
this time.</p>
<div className="center-block thin">
<label htmlFor="name">Name</label>
<input className="u-full-width" type="text" id="name" value={this.state.name} onChange={this.handleChange} placeholder="Who are you on the interwebs?" />
</div>
<div>
<label htmlFor="desc">Caption</label>
<textarea className="u-full-width" id="desc" value={this.state.description} onChange={this.handleChange} placeholder="Say something about yourself." />
</div>
<div className="buttons">
<button className="button button-primary" onClick={this.save}>Publish</button>
<button onClick={this.refresh} className="button not-first">Refresh</button>
<Link to={'/@' + this.state.userid} className="button not-first">View</Link>
</div>
</div>
)
}
} else return <GetIPFS api={this.state.api} />
}
})
}