// @flow import React, { Component } from 'react'; import { withRouter } from 'react-router-dom'; import { observable } from 'mobx'; import { inject, observer } from 'mobx-react'; import Button from 'components/Button'; import Input from 'components/Input'; import Flex from 'shared/components/Flex'; import HelpText from 'components/HelpText'; import ColorPicker from 'components/ColorPicker'; import Collection from 'models/Collection'; type Props = { history: Object, collection: Collection, onSubmit: () => void, }; @observer class CollectionEdit extends Component { props: Props; @observable name: string; @observable color: string = ''; @observable isSaving: boolean; componentWillMount() { this.name = this.props.collection.name; } handleSubmit = async (ev: SyntheticEvent) => { ev.preventDefault(); this.isSaving = true; this.props.collection.updateData({ name: this.name, color: this.color }); const success = await this.props.collection.save(); if (success) { this.props.onSubmit(); } this.isSaving = false; }; handleNameChange = (ev: SyntheticInputEvent) => { this.name = ev.target.value; }; handleColor = (color: string) => { this.color = color; }; render() { return (
You can edit a collection's name at any time, however doing so might confuse your team mates.
); } } export default inject('collections')(withRouter(CollectionEdit));