1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
import React, { Component } from 'react';
import { graphql, gql, compose } from 'react-apollo';
import { SINGLE_ITEM_QUERY, UPDATE_LINK_MUTATION } from '../queries';
import Form from './styles/Form';
import { singleItemEnhancer } from '../enhancers/enhancers';
class UpdateItem extends Component {
state = {
item: {},
};
componentDidMount() {
console.log(this.props);
}
saveToState = e => {
let { name, value, type } = e.target;
if (type === 'number') {
value = parseInt(value);
}
console.log('Saving to state');
const item = { ...this.state.item };
item[name] = value;
this.setState({ item });
};
updateItem = async e => {
e.preventDefault();
// pull the values from state
const { description, title } = this.state;
const { id } = this.props;
// create a mutation
// TODO: handle any errors. If you send an extra field it should break -how do we display those errors if they are currently only visible via the network tab?
// turn loading on
this.setState({ loading: true });
const res = await this.props.updateItem({
// pass in those variables from state
variables: {
...this.props.findItem.items[0],
...this.state.item,
},
});
console.log(res);
this.setState({ loading: false });
};
render() {
if (this.props.findItem.loading) {
return <p>Loading...</p>;
}
const item = this.props.findItem.items[0];
return (
<div>
<Form onSubmit={this.updateItem}>
<h2>Edit {item.title}</h2>
{this.state.loading ? 'LOADING...' : 'Ready!'}
<fieldset disabled={this.state.loading}>
<label htmlFor="title">
Title
<input id="title" defaultValue={item.title} name="title" onChange={this.saveToState} type="text" />
</label>
<label htmlFor="description">
Description
<textarea defaultValue={item.description} name="description" onChange={this.saveToState} />
</label>
<label htmlFor="price">
Price
<input type="number" name="price" onChange={this.saveToState} defaultValue={item.price} />
</label>
<button type="submit">Save...</button>
</fieldset>
</Form>
</div>
);
}
}
const ComponentWithMutations = compose(
singleItemEnhancer,
// Second, the mutation for updating the link
graphql(UPDATE_LINK_MUTATION, { name: 'updateItem' })
)(UpdateItem);
export default ComponentWithMutations;
|