aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/NewPaste.js
blob: e13e7df0dfd3780b274d936099c2970354f522b9 (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
import React from 'react';
import { TitleInput, PasteInput } from './Inputs'
import OptionsContainer from './Options'
import Error from './Err'
import { PostNewPaste } from '../helpers/httpHelper'
import PasteModal from './modals/PasteModal'
import { LANGS } from './renderers/Code'

class NewPaste extends React.Component {
    constructor(props) {
        super(props);
        this.state = { 
            title: '',
            content: '',
            pass: '',
            language: LANGS.raw,
            expiry: '',
            hash: '',
            error: '',
        };

        this.handleChange = this.handleChange.bind(this);
        this.handleSubmit = this.handleSubmit.bind(this);
        this.ErrorLabel = React.createRef();
    }

    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();

        // prevent resubmission
        if (!this.state.hash) {
            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.ErrorLabel.current.showMessage(errTxt)
                    } else {
                        // some weird err (e.g. network)
                        this.ErrorLabel.current.showMessage(error)
                    }
                });
        }
    }

    render() {
        return (
            <form onSubmit={this.handleSubmit}>
                <PasteModal hash={this.state.hash} />
                <TitleInput 
                    onChange={this.handleChange}
                    value={this.state.title}
                    maxLength="100"
                    id="titleInput" />
                <PasteInput
                    onChange={this.handleChange}
                    content={this.state.content}
                    maxLength="100000"
                    id="pasteInput" />
                <OptionsContainer
                    pass={this.state.pass}
                    expiry={this.state.expiry}
                    lang={this.state.language}
                    onChange={this.handleChange} />
                <input className="lt-button lt-shadow lt-hover" type="submit" value="new paste" />
                <Error ref={this.ErrorLabel} />
            </form>
        );
    }
}

export default NewPaste