|
|
|
@ -184,6 +184,7 @@ export function useMessageReactsPropsById(messageId?: string) {
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO remove 10 seconds timer
|
|
|
|
|
export function useTimerOptionsByMode(disappearingMessageMode?: string) {
|
|
|
|
|
return useSelector((state: StateType) => {
|
|
|
|
|
let options = state.timerOptions.timerOptions;
|
|
|
|
@ -192,6 +193,7 @@ export function useTimerOptionsByMode(disappearingMessageMode?: string) {
|
|
|
|
|
case 'deleteAfterSend':
|
|
|
|
|
return options.filter(option => {
|
|
|
|
|
return (
|
|
|
|
|
option.value === 10 || // 10 seconds (for testing)
|
|
|
|
|
option.value === 43200 || // 12 hours
|
|
|
|
|
option.value === 86400 || // 1 day
|
|
|
|
|
option.value === 604800 || // 1 week
|
|
|
|
@ -201,6 +203,7 @@ export function useTimerOptionsByMode(disappearingMessageMode?: string) {
|
|
|
|
|
case 'deleteAfterRead':
|
|
|
|
|
return options.filter(option => {
|
|
|
|
|
return (
|
|
|
|
|
option.value === 10 || // 10 seconds (for testing)
|
|
|
|
|
option.value === 300 || // 5 minutes
|
|
|
|
|
option.value === 3600 || // 1 hour
|
|
|
|
|
option.value === 43200 || // 12 hours
|
|
|
|
|