Signal-Desktop/ts/state/ducks/user.ts

101 lines
1.8 KiB
TypeScript
Raw Normal View History

import { trigger } from '../../shims/events';
import { NoopActionType } from './noop';
2019-01-14 21:49:58 +00:00
import { LocalizerType } from '../../types/Util';
// State
export type UserStateType = {
attachmentsPath: string;
stickersPath: string;
tempPath: string;
ourConversationId: string;
ourUuid: string;
2019-01-14 21:49:58 +00:00
ourNumber: string;
2019-11-07 21:36:16 +00:00
platform: string;
2019-01-14 21:49:58 +00:00
regionCode: string;
i18n: LocalizerType;
interactionMode: 'mouse' | 'keyboard';
2019-01-14 21:49:58 +00:00
};
// Actions
type UserChangedActionType = {
type: 'USER_CHANGED';
payload: {
ourConversationId?: string;
ourUuid?: string;
ourNumber?: string;
regionCode?: string;
interactionMode?: 'mouse' | 'keyboard';
2019-01-14 21:49:58 +00:00
};
};
export type UserActionType = UserChangedActionType;
2019-01-14 21:49:58 +00:00
// Action Creators
export const actions = {
userChanged,
manualReconnect,
2019-01-14 21:49:58 +00:00
};
function userChanged(attributes: {
interactionMode?: 'mouse' | 'keyboard';
ourConversationId: string;
2019-01-14 21:49:58 +00:00
ourNumber: string;
ourUuid: string;
2019-01-14 21:49:58 +00:00
regionCode: string;
}): UserChangedActionType {
return {
type: 'USER_CHANGED',
payload: attributes,
};
}
function manualReconnect(): NoopActionType {
trigger('manualConnect');
return {
type: 'NOOP',
payload: null,
};
}
2019-01-14 21:49:58 +00:00
// Reducer
function getEmptyState(): UserStateType {
return {
attachmentsPath: 'missing',
stickersPath: 'missing',
tempPath: 'missing',
ourConversationId: 'missing',
ourUuid: 'missing',
2019-01-14 21:49:58 +00:00
ourNumber: 'missing',
regionCode: 'missing',
2019-11-07 21:36:16 +00:00
platform: 'missing',
interactionMode: 'mouse',
2019-01-14 21:49:58 +00:00
i18n: () => 'missing',
};
}
export function reducer(
state: UserStateType = getEmptyState(),
2019-01-14 21:49:58 +00:00
action: UserActionType
): UserStateType {
if (!state) {
return getEmptyState();
}
if (action.type === 'USER_CHANGED') {
const { payload } = action;
return {
...state,
...payload,
};
}
return state;
}