From 93d4e9a58d68ce5a996f262d64603775a31dd1f1 Mon Sep 17 00:00:00 2001 From: Thibaut Girka Date: Mon, 23 Jul 2018 18:35:17 +0200 Subject: [PATCH] Preserve hashtags in threaded mode (fixes #584) --- app/javascript/flavours/glitch/reducers/compose.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/app/javascript/flavours/glitch/reducers/compose.js b/app/javascript/flavours/glitch/reducers/compose.js index 4ea87b7e51..53dd65b076 100644 --- a/app/javascript/flavours/glitch/reducers/compose.js +++ b/app/javascript/flavours/glitch/reducers/compose.js @@ -113,6 +113,12 @@ function apiStatusToTextMentions (state, status) { )).join(''); } +function apiStatusToTextHashtags (state, status) { + return ImmutableOrderedSet([]).union(status.tags.map( + ({ name }) => `#${name} ` + )).join(''); +} + function clearAll(state) { return state.withMutations(map => { map.set('text', ''); @@ -133,7 +139,9 @@ function clearAll(state) { function continueThread (state, status) { return state.withMutations(function (map) { - map.set('text', apiStatusToTextMentions(state, status)); + let text = apiStatusToTextMentions(state, status); + text = text + apiStatusToTextHashtags(state, status); + map.set('text', text); if (status.spoiler_text) { map.set('spoiler', true); map.set('spoiler_text', status.spoiler_text);