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

const Constants = require('./constants.jsx');
const UserStore = require('../stores/user_store.jsx');

export function formatText(text, options = {}) {
    let output = sanitize(text);

    let atMentions;
    [output, atMentions] = stripAtMentions(output);

    output = reinsertAtMentions(output, atMentions);

    output = replaceNewlines(output, options.singleline);

    return output;

    // TODO autolink @mentions
    // TODO highlight mentions of self
    // TODO autolink urls
    // TODO highlight search terms
    // TODO autolink hashtags

    // TODO leave space for markdown
}

export function sanitize(text) {
    let output = text;

    // normal string.replace only does a single occurrance so use a regex instead
    output = output.replace(/&/g, '&');
    output = output.replace(/</g, '&lt;');
    output = output.replace(/>/g, '&gt;');

    return output;
}

function stripAtMentions(text) {
    let output = text;
    let atMentions = new Map();

    function stripAtMention(fullMatch, prefix, mentionText, username) {
        if (Constants.SPECIAL_MENTIONS.indexOf(username) !== -1 || UserStore.getProfileByUsername(username)) {
            const index = atMentions.size;
            const alias = `ATMENTION${index}`;

            atMentions.set(alias, {mentionText: mentionText, username: username});

            return prefix + alias;
        } else {
            return fullMatch;
        }
    }

    output = output.replace(/(^|\s)(@([a-z0-9.\-_]+))/g, stripAtMention);

    return [output, atMentions];
}
window.stripAtMentions = stripAtMentions;

function reinsertAtMentions(text, atMentions) {
    let output = text;

    function reinsertAtMention(replacement, alias) {
        output = output.replace(alias, `<a class='mention-link' href='#' data-mention=${replacement.username}>${replacement.mentionText}</a>`);
    }

    atMentions.forEach(reinsertAtMention);

    return output;
}
window.reinsertAtMentions = reinsertAtMentions;

function replaceNewlines(text, singleline) {
    if (!singleline) {
        return text.replace(/\n/g, '<br />');
    } else {
        return text.replace(/\n/g, ' ');
    }
}