move the user fetch for mentions to redux
parent
c8878f0a19
commit
0192f295f2
@ -0,0 +1,27 @@
|
|||||||
|
import { createSlice } from '@reduxjs/toolkit';
|
||||||
|
|
||||||
|
export type MentionsInputState = Array<{
|
||||||
|
id: string;
|
||||||
|
authorPhoneNumber: string;
|
||||||
|
authorProfileName: string;
|
||||||
|
}>;
|
||||||
|
|
||||||
|
const initialState: MentionsInputState = [];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This slice is the one holding the default joinable rooms fetched once in a while from the default opengroup v2 server.
|
||||||
|
*/
|
||||||
|
const mentionsInputSlice = createSlice({
|
||||||
|
name: 'mentionsInput',
|
||||||
|
initialState,
|
||||||
|
reducers: {
|
||||||
|
updateMentionsMembers(state, action) {
|
||||||
|
window?.log?.warn('updating mentions input members', action.payload);
|
||||||
|
return action.payload as MentionsInputState;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const { actions, reducer } = mentionsInputSlice;
|
||||||
|
export const { updateMentionsMembers } = actions;
|
||||||
|
export const defaultMentionsInputReducer = reducer;
|
@ -0,0 +1,5 @@
|
|||||||
|
import { StateType } from '../reducer';
|
||||||
|
|
||||||
|
import { MentionsInputState } from '../ducks/mentionsInput';
|
||||||
|
|
||||||
|
export const getMentionsInput = (state: StateType): MentionsInputState => state.mentionsInput;
|
Loading…
Reference in New Issue