summaryrefslogtreecommitdiffstats
path: root/web/react/components/post_body.jsx
blob: fab6833e6fa9563b4df34492961ee911fbe02cf2 (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
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
// See License.txt for license information.

var FileAttachmentList = require('./file_attachment_list.jsx');
var UserStore = require('../stores/user_store.jsx');
var utils = require('../utils/utils.jsx');
var formatText = require('../../static/js/marked/lib/marked.js');

module.exports = React.createClass({
    componentWillReceiveProps: function(nextProps) {
        var linkData = utils.extractLinks(nextProps.post.message);
        this.setState({links: linkData.links, message: linkData.text});
    },
    getInitialState: function() {
        var linkData = utils.extractLinks(this.props.post.message);
        return {links: linkData.links, message: linkData.text};
    },
    render: function() {
        var post = this.props.post;
        var filenames = this.props.post.filenames;
        var parentPost = this.props.parentPost;
        var inner = utils.textToJsx(this.state.message);
        var allowTextFormatting = config.AllowTextFormatting;

        var comment = '';
        var postClass = '';

        if (parentPost) {
            var profile = UserStore.getProfile(parentPost.user_id);
            var apostrophe = '';
            var name = '...';
            if (profile != null) {
                if (profile.username.slice(-1) === 's') {
                    apostrophe = "'";
                } else {
                    apostrophe = "'s";
                }
                name = <a className='theme' onClick={utils.searchForTerm.bind(this, profile.username)}>{profile.username}</a>;
            }

            var message = '';
            if (parentPost.message) {
                message = utils.replaceHtmlEntities(parentPost.message);
            } else if (parentPost.filenames.length) {
                message = parentPost.filenames[0].split('/').pop();

                if (parentPost.filenames.length === 2) {
                    message += ' plus 1 other file';
                } else if (parentPost.filenames.length > 2) {
                    message += ' plus ' + (parentPost.filenames.length - 1) + ' other files';
                }
            }

            if (allowTextFormatting) {
                message = formatText(message, {sanitize: true, mangle: false, gfm: true, breaks: true, tables: false, smartypants: true, renderer: utils.customMarkedRenderer({disable: true})});
                comment = (
                    <p className='post-link'>
                        <span>Commented on {name}{apostrophe} message: <a className='theme' onClick={this.props.handleCommentClick} dangerouslySetInnerHTML={{__html: message}} /></span>
                    </p>
                );
            } else {
                comment = (
                    <p className='post-link'>
                        <span>Commented on {name}{apostrophe} message: <a className='theme' onClick={this.props.handleCommentClick}>{message}</a></span>
                    </p>
                );
            }

            postClass += ' post-comment';
        }

        var embed;
        if (filenames.length === 0 && this.state.links) {
            embed = utils.getEmbed(this.state.links[0]);
        }

        var innerHolder = <p key={post.id + '_message'} className={postClass}><span>{inner}</span></p>;
        if (allowTextFormatting) {
            innerHolder = <div key={post.id + '_message'} className={postClass}><span>{inner}</span></div>;
        }

        var fileAttachmentHolder = '';
        if (filenames && filenames.length > 0) {
            fileAttachmentHolder = (<FileAttachmentList
                                        filenames={filenames}
                                        modalId={'view_image_modal_' + post.id}
                                        channelId={post.channel_id}
                                        userId={post.user_id} />);
        }

        return (
            <div className='post-body'>
                {comment}
                {innerHolder}
                {fileAttachmentHolder}
                {embed}
            </div>
        );
    }
});