summaryrefslogtreecommitdiffstats
path: root/web/react/components/get_link_modal.jsx
blob: 6e0728862fe98895d503f768ff8ce93a64af1f54 (plain)
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
// See License.txt for license information.

var UserStore = require('../stores/user_store.jsx');

export default class GetLinkModal extends React.Component {
    constructor(props) {
        super(props);

        this.handleClick = this.handleClick.bind(this);
        this.onShow = this.onShow.bind(this);
        this.onHide = this.onHide.bind(this);

        this.state = {copiedLink: false};
    }
    onShow(e) {
        var button = e.relatedTarget;
        this.setState({title: $(button).attr('data-title'), value: $(button).attr('data-value')});
    }
    onHide() {
        this.setState({copiedLink: false});
    }
    componentDidMount() {
        if (this.refs.modal) {
            $(React.findDOMNode(this.refs.modal)).on('show.bs.modal', this.onShow);
            $(React.findDOMNode(this.refs.modal)).on('hide.bs.modal', this.onHide);
        }
    }
    handleClick() {
        var copyTextarea = $(React.findDOMNode(this.refs.textarea));
        copyTextarea.select();

        try {
            var successful = document.execCommand('copy');
            if (successful) {
                this.setState({copiedLink: true});
            } else {
                this.setState({copiedLink: false});
            }
        } catch (err) {
            this.setState({copiedLink: false});
        }
    }
    render() {
        var currentUser = UserStore.getCurrentUser();

        let copyLink = null;
        if (document.queryCommandSupported('copy')) {
            copyLink = (
                <button
                    data-copy-btn='true'
                    type='button'
                    className='btn btn-primary pull-left'
                    onClick={this.handleClick}
                    data-clipboard-text={this.state.value}
                >
                    Copy Link
                </button>
            );
        }

        var copyLinkConfirm = null;
        if (this.state.copiedLink) {
            copyLinkConfirm = <p className='alert alert-success copy-link-confirm'><i className='fa fa-check'></i> Link copied to clipboard.</p>;
        }

        if (currentUser != null) {
            return (
                <div
                    className='modal fade'
                    ref='modal'
                    id='get_link'
                    tabIndex='-1'
                    role='dialog'
                    aria-hidden='true'
                >
                    <div className='modal-dialog'>
                        <div className='modal-content'>
                            <div className='modal-header'>
                                <button
                                    type='button'
                                    className='close'
                                    data-dismiss='modal'
                                    aria-label='Close'
                                >
                                    <span aria-hidden='true'>&times;</span>
                                </button>
                                <h4
                                    className='modal-title'
                                    id='myModalLabel'
                                >
                                    {this.state.title} Link
                                </h4>
                            </div>
                            <div className='modal-body'>
                                <p>
                                Send teammates the link below for them to sign-up to this team site.
                                <br /><br />
                                Be careful not to share this link publicly, since anyone with the link can join your team.
                                </p>
                                <textarea
                                    className='form-control no-resize'
                                    readOnly='true'
                                    ref='textarea'
                                    value={this.state.value}
                                />
                                </div>
                                <div className='modal-footer'>
                                <button
                                    type='button'
                                    className='btn btn-default'
                                    data-dismiss='modal'
                                >
                                    Close
                                </button>
                                {copyLink}
                                {copyLinkConfirm}
                            </div>
                        </div>
                    </div>
                </div>
            );
        }
        return <div/>;
    }
}