[Glitch] Enforce React Rules of Hooks with eslint

Port d9b93bd15e to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
local
Renaud Chaput 1 year ago committed by Claire
parent 108720d7b0
commit b509b96504
  1. 2
      app/javascript/flavours/glitch/actions/streaming.js
  2. 1
      app/javascript/flavours/glitch/features/compose/containers/emoji_picker_dropdown_container.js
  3. 1
      app/javascript/flavours/glitch/features/compose/containers/language_dropdown_container.js

@ -52,8 +52,10 @@ export const connectTimelineStream = (timelineId, channelName, params = {}, opti
/**
* @param {function(Function, Function): void} fallback
*/
const useFallback = fallback => {
fallback(dispatch, () => {
// eslint-disable-next-line react-hooks/rules-of-hooks -- this is not a react hook
pollingId = setTimeout(() => useFallback(fallback), 20000 + randomUpTo(20000));
});
};

@ -72,6 +72,7 @@ const mapDispatchToProps = (dispatch, { onPickEmoji }) => ({
},
onPickEmoji: emoji => {
// eslint-disable-next-line react-hooks/rules-of-hooks -- this is not a react hook
dispatch(useEmoji(emoji));
if (onPickEmoji) {

@ -26,6 +26,7 @@ const mapDispatchToProps = dispatch => ({
},
onClose (value) {
// eslint-disable-next-line react-hooks/rules-of-hooks -- this is not a react hook
dispatch(useLanguage(value));
},

Loading…
Cancel
Save