]> cat aescling's git repositories - mastodon.git/commitdiff
[Glitch] Fix composer route opening when not needed
authorりんすき <428rinsuki+git@gmail.com>
Wed, 21 Feb 2018 18:33:23 +0000 (03:33 +0900)
committerThibG <thib@sitedethib.com>
Sun, 26 May 2019 11:50:15 +0000 (13:50 +0200)
Port c1e77b56a92fc075f000af9c263c72ba6bdbe5f7 to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
app/javascript/flavours/glitch/reducers/compose.js

index c0c2fc5473f275f0240994480290c60ddd97be17..51a341c4238184d45f700016fd56f47d8fad6a89 100644 (file)
@@ -57,7 +57,7 @@ const totalElefriends = 3;
 const glitchProbability = 1 - 0.0420215528;
 
 const initialState = ImmutableMap({
-  mounted: false,
+  mounted: 0,
   advanced_options: ImmutableMap({
     do_not_federate: false,
     threaded_mode: false,
@@ -280,9 +280,9 @@ export default function compose(state = initialState, action) {
   case STORE_HYDRATE:
     return hydrate(state, action.state.get('compose'));
   case COMPOSE_MOUNT:
-    return state.set('mounted', true);
+    return state.set('mounted', state.get('mounted') + 1);
   case COMPOSE_UNMOUNT:
-    return state.set('mounted', false);
+    return state.set('mounted', Math.max(state.get('mounted') - 1, 0));
   case COMPOSE_ADVANCED_OPTIONS_CHANGE:
     return state
       .set('advanced_options', state.get('advanced_options').set(action.option, !!overwrite(!state.getIn(['advanced_options', action.option]), action.value)))