blob: 1409c22932efe47b25f9a5b56af8cd40adf19353 (
plain) (
blame)
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
88
89
90
91
92
93
94
95
96
97
98
99
100
|
import React from 'react';
import { TitleInput, PasteInput } from './Inputs'
import OptionsContainer from './Options'
import { Redirect } from 'react-router-dom'
import Error from './Err'
import { PostNewPaste } from '../helpers/httpHelper'
class NewPaste extends React.Component {
constructor(props) {
super(props);
this.state = {
title: '',
content: '',
pass: '',
expiry: '',
hash: '',
error: '',
};
this.handleChange = this.handleChange.bind(this);
this.handleSubmit = this.handleSubmit.bind(this);
}
newErr(msg, duration = 5000) {
this.setState({ error: msg })
setTimeout(() => {
this.setState({ error: '' })
}, duration);
}
renderRedirect = () => {
if (this.state.hash !== '') {
const redirUrl = `/${this.state.hash}`
return <Redirect to={redirUrl} />
}
}
componentDidUpdate() {
if (this.state.title === "") {
document.title = `ctrl-v`;
} else {
document.title = `ctrl-v | ${this.state.title}`;
}
}
handleChange(event) {
const target = event.target;
const name = target.name;
this.setState({
[name]: target.value
});
}
handleSubmit(event) {
event.preventDefault();
PostNewPaste(this.state)
.then((response) => {
// on success, redir
this.setState({ hash: response.data.hash })
}).catch((error) => {
const resp = error.response
// some weird err
if (resp !== undefined) {
const errTxt = `${resp.statusText}: ${resp.data}`
this.newErr(errTxt)
} else {
// some weird err (e.g. network)
this.newErr(error)
}
});
}
render() {
return (
<form onSubmit={this.handleSubmit}>
{this.renderRedirect()}
<TitleInput
onChange={this.handleChange}
value={this.state.title}
maxLength="100"
id="titleInput" />
<PasteInput
onChange={this.handleChange}
content={this.state.content}
maxLength="100000"
id="pasteInput" />
<input className="lt-button lt-shadow lt-hover" type="submit" value="new paste" />
<Error msg={this.state.error} />
<OptionsContainer
pass={this.state.pass}
expiry={this.state.expiry}
onChange={this.handleChange} />
</form>
);
}
}
export default NewPaste
|