move timerOptions to redux

pull/1783/head
Audric Ackermann 4 years ago
parent e451cdd78f
commit 87a8385629
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -16,6 +16,7 @@ import {
import { contextMenu } from 'react-contexify';
import { DefaultTheme, withTheme } from 'styled-components';
import { ConversationNotificationSettingType } from '../../models/conversation';
import autoBind from 'auto-bind';
export interface TimerOption {
name: string;
@ -51,7 +52,6 @@ interface Props {
expirationSettingName?: string;
showBackButton: boolean;
timerOptions: Array<TimerOption>;
notificationForConvo: Array<NotificationForConvoOption>;
currentNotificationSetting: ConversationNotificationSettingType;
hasNickname?: boolean;
@ -75,7 +75,7 @@ class ConversationHeaderInner extends React.Component<Props> {
public constructor(props: Props) {
super(props);
this.onAvatarClick = this.onAvatarClick.bind(this);
autoBind(this);
}
public renderBackButton() {

@ -22,6 +22,7 @@ import { SessionMainPanel } from '../SessionMainPanel';
// tslint:disable-next-line: no-submodule-imports
import { PersistGate } from 'redux-persist/integration/react';
import { persistStore } from 'redux-persist';
import { TimerOptionsArray, TimerOptionsState } from '../../state/ducks/timerOptions';
// Workaround: A react component's required properties are filtering up through connect()
// https://github.com/DefinitelyTyped/DefinitelyTyped/issues/31363
@ -90,6 +91,13 @@ export class SessionInboxView extends React.Component<any, State> {
const fullFilledConversations = await Promise.all(filledConversations);
const timerOptions: TimerOptionsArray = window.Whisper.ExpirationTimerOptions.map(
(item: any) => ({
name: item.getName(),
value: item.get('seconds'),
})
);
const initialState: StateType = {
conversations: {
conversationLookup: makeLookup(fullFilledConversations, 'id'),
@ -106,6 +114,9 @@ export class SessionInboxView extends React.Component<any, State> {
onionPaths: initialOnionPathState,
modals: initialModalState,
userConfig: initialUserConfigState,
timerOptions: {
timerOptions,
},
};
this.store = createStore(initialState);

@ -312,7 +312,6 @@ export class SessionConversation extends React.Component<Props, State> {
isShowing={showOptionsPane}
/>
</div>
)
</SessionTheme>
);
}
@ -381,10 +380,6 @@ export class SessionConversation extends React.Component<Props, State> {
left: conversation.get('left'),
expirationSettingName,
showBackButton: Boolean(messageDetailShowProps),
timerOptions: window.Whisper.ExpirationTimerOptions.map((item: any) => ({
name: item.getName(),
value: item.get('seconds'),
})),
notificationForConvo,
currentNotificationSetting: conversation.get('triggerNotificationsFor'),
hasNickname: !!conversation.getNickname(),
@ -466,12 +461,6 @@ export class SessionConversation extends React.Component<Props, State> {
isPublic: conversation.isPublic(),
isAdmin,
isBlocked: conversation.isBlocked(),
timerOptions: window.Whisper.ExpirationTimerOptions.map((item: any) => ({
name: item.getName(),
value: item.get('seconds'),
})),
onGoBack: () => {
this.toggleRightPanel();
},

@ -36,6 +36,8 @@ import { ItemClickEvent } from '../../conversation/media-gallery/types/ItemClick
import { MediaItemType } from '../../LightboxGallery';
// tslint:disable-next-line: no-submodule-imports
import useInterval from 'react-use/lib/useInterval';
import { useSelector } from 'react-redux';
import { getTimerOptions } from '../../../state/selectors/timerOptions';
type Props = {
id: string;
@ -44,7 +46,6 @@ type Props = {
phoneNumber: string;
memberCount: number;
avatarPath: string | null;
timerOptions: Array<TimerOption>;
isPublic: boolean;
isAdmin: boolean;
isKickedFromGroup: boolean;
@ -194,6 +195,8 @@ export const SessionRightPanelWithDetails = (props: Props) => {
const [onItemClick, setOnItemClick] = useState<any>(undefined);
const theme = useTheme();
console.warn('props', props);
useEffect(() => {
let isRunning = true;
@ -269,7 +272,6 @@ export const SessionRightPanelWithDetails = (props: Props) => {
id,
memberCount,
name,
timerOptions,
isKickedFromGroup,
left,
isPublic,
@ -289,6 +291,8 @@ export const SessionRightPanelWithDetails = (props: Props) => {
? window.i18n('youLeftTheGroup')
: window.i18n('leaveGroup');
const timerOptions = useSelector(getTimerOptions).timerOptions;
const disappearingMessagesOptions = timerOptions.map(option => {
return {
content: option.name,

@ -28,7 +28,6 @@ export type PropsConversationHeaderMenu = {
left?: boolean;
isGroup: boolean;
isAdmin: boolean;
timerOptions: Array<TimerOption>;
notificationForConvo: Array<NotificationForConvoOption>;
currentNotificationSetting: ConversationNotificationSettingType;
isPrivate: boolean;
@ -46,7 +45,6 @@ export const ConversationHeaderMenu = (props: PropsConversationHeaderMenu) => {
isGroup,
isKickedFromGroup,
isAdmin,
timerOptions,
isBlocked,
isPrivate,
left,
@ -58,14 +56,7 @@ export const ConversationHeaderMenu = (props: PropsConversationHeaderMenu) => {
return (
<>
<Menu id={triggerId} animation={animation.fade}>
{getDisappearingMenuItem(
isPublic,
isKickedFromGroup,
left,
isBlocked,
timerOptions,
conversationId
)}
{getDisappearingMenuItem(isPublic, isKickedFromGroup, left, isBlocked, conversationId)}
{getNotificationForConvoMenuItem(
isKickedFromGroup,
left,

@ -3,7 +3,7 @@ import React from 'react';
import { NotificationForConvoOption, TimerOption } from '../../conversation/ConversationHeader';
import { Item, Submenu } from 'react-contexify';
import { ConversationNotificationSettingType } from '../../../models/conversation';
import { useDispatch } from 'react-redux';
import { useDispatch, useSelector } from 'react-redux';
import { changeNickNameModal, updateConfirmModal } from '../../../state/ducks/modalDialog';
import { getConversationController } from '../../../session/conversations';
import {
@ -22,6 +22,7 @@ import {
unblockConvoById,
} from '../../../interactions/conversationInteractions';
import { SessionButtonColor } from '../SessionButton';
import { getTimerOptions } from '../../../state/selectors/timerOptions';
function showTimerOptions(
isPublic: boolean,
@ -278,7 +279,6 @@ export function getDisappearingMenuItem(
isKickedFromGroup: boolean | undefined,
left: boolean | undefined,
isBlocked: boolean | undefined,
timerOptions: Array<TimerOption>,
conversationId: string
): JSX.Element | null {
if (
@ -291,13 +291,15 @@ export function getDisappearingMenuItem(
) {
const isRtlMode = isRtlBody();
const timerOptions = useSelector(getTimerOptions).timerOptions;
return (
// Remove the && false to make context menu work with RTL support
<Submenu
label={window.i18n('disappearingMessages') as any}
// rtl={isRtlMode && false}
>
{(timerOptions || []).map(item => (
{timerOptions.map(item => (
<Item
key={item.value}
onClick={async () => {

@ -0,0 +1,30 @@
/**
* This slice is intended for the user configurable settings for the client such as appearance, autoplaying of links etc.
* Anything setting under the cog wheel tab.
*/
import { createSlice, PayloadAction } from '@reduxjs/toolkit';
type TimerOptionsEntry = { name: string; value: number };
export type TimerOptionsArray = Array<TimerOptionsEntry>;
export type TimerOptionsState = {
timerOptions: TimerOptionsArray;
};
export const initialTimerOptionsState: TimerOptionsState = {
timerOptions: [],
};
const timerOptionSlice = createSlice({
name: 'timerOptions',
initialState: initialTimerOptionsState,
reducers: {
updateTimerOptions: (_state, action: PayloadAction<TimerOptionsArray>) => {
return { timerOptions: action.payload };
},
},
});
const { actions, reducer } = timerOptionSlice;
export const { updateTimerOptions } = actions;
export const timerOptionReducer = reducer;

@ -2,7 +2,7 @@
* This slice is intended for the user configurable settings for the client such as appearance, autoplaying of links etc.
* Anything setting under the cog wheel tab.
*/
import { createSlice, PayloadAction } from '@reduxjs/toolkit';
import { createSlice } from '@reduxjs/toolkit';
export interface UserConfigState {
audioAutoplay: boolean;

@ -13,6 +13,7 @@ import {
import { defaultOnionReducer as onionPaths, OnionState } from './ducks/onion';
import { modalReducer as modals, ModalState } from './ducks/modalDialog';
import { userConfigReducer as userConfig, UserConfigState } from './ducks/userConfig';
import { timerOptionReducer as timerOptions, TimerOptionsState } from './ducks/timerOptions';
export type StateType = {
search: SearchStateType;
@ -25,6 +26,7 @@ export type StateType = {
onionPaths: OnionState;
modals: ModalState;
userConfig: UserConfigState;
timerOptions: TimerOptionsState;
};
export const reducers = {
@ -38,6 +40,7 @@ export const reducers = {
onionPaths,
modals,
userConfig,
timerOptions,
};
// Making this work would require that our reducer signature supported AnyAction, not

@ -0,0 +1,4 @@
import { StateType } from '../reducer';
import { TimerOptionsState } from '../ducks/timerOptions';
export const getTimerOptions = (state: StateType): TimerOptionsState => state.timerOptions;
Loading…
Cancel
Save