[Glitch] Fix follow request notifications
Port df120d667c
to glitch-soc
Signed-off-by: Thibaut Girka <thib@sitedethib.com>
This commit is contained in:
parent
b03d3117c3
commit
006201214e
1 changed files with 13 additions and 7 deletions
|
@ -53,14 +53,20 @@ import {
|
||||||
} from 'flavours/glitch/actions/directory';
|
} from 'flavours/glitch/actions/directory';
|
||||||
import { Map as ImmutableMap, List as ImmutableList } from 'immutable';
|
import { Map as ImmutableMap, List as ImmutableList } from 'immutable';
|
||||||
|
|
||||||
|
const initialListState = ImmutableMap({
|
||||||
|
next: null,
|
||||||
|
isLoading: false,
|
||||||
|
items: ImmutableList(),
|
||||||
|
});
|
||||||
|
|
||||||
const initialState = ImmutableMap({
|
const initialState = ImmutableMap({
|
||||||
followers: ImmutableMap(),
|
followers: initialListState,
|
||||||
following: ImmutableMap(),
|
following: initialListState,
|
||||||
reblogged_by: ImmutableMap(),
|
reblogged_by: initialListState,
|
||||||
favourited_by: ImmutableMap(),
|
favourited_by: initialListState,
|
||||||
follow_requests: ImmutableMap(),
|
follow_requests: initialListState,
|
||||||
blocks: ImmutableMap(),
|
blocks: initialListState,
|
||||||
mutes: ImmutableMap(),
|
mutes: initialListState,
|
||||||
});
|
});
|
||||||
|
|
||||||
const normalizeList = (state, path, accounts, next) => {
|
const normalizeList = (state, path, accounts, next) => {
|
||||||
|
|
Loading…
Reference in a new issue