// Copyright 2015, 2016 Ethcore (UK) Ltd.
// This file is part of Parity.
// Parity is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// Parity is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with Parity. If not, see .
import React, { Component, PropTypes } from 'react';
import ContentClear from 'material-ui/svg-icons/content/clear';
import ContentSave from 'material-ui/svg-icons/content/save';
import { Button, Form, Input, Modal } from '../../ui';
import { validateName } from '../../util/validation';
export default class EditMeta extends Component {
static contextTypes = {
api: PropTypes.object.isRequired,
store: PropTypes.object.isRequired
}
static propTypes = {
keys: PropTypes.array.isRequired,
account: PropTypes.object.isRequired,
onClose: PropTypes.func.isRequired
}
state = {
meta: this.props.account.meta,
metaErrors: {},
name: this.props.account.name,
nameError: null
}
render () {
const { name, nameError } = this.state;
return (
);
}
renderActions () {
const { nameError } = this.state;
return [
}
onClick={ this.props.onClose } />,
}
onClick={ this.onSave } />
];
}
renderMetaFields () {
const { keys } = this.props;
const { meta } = this.state;
return keys.map((key) => {
const onSubmit = (value) => this.onMetaChange(key, value);
const label = `(optional) ${key}`;
const hint = `the optional ${key} metadata`;
return (
);
});
}
onNameChange = (name) => {
this.setState(validateName(name));
}
onMetaChange = (key, value) => {
const { meta } = this.state;
this.setState({
meta: Object.assign(meta, { [key]: value })
});
}
onSave = () => {
const { api, store } = this.context;
const { account } = this.props;
const { name, nameError, meta } = this.state;
if (nameError) {
return;
}
Promise
.all([
api.personal.setAccountName(account.address, name),
api.personal.setAccountMeta(account.address, Object.assign({}, account.meta, meta))
])
.then(() => this.props.onClose())
.catch((error) => {
console.error('onSave', error);
store.dispatch({ type: 'newError', error });
});
}
}