63 lines
1.1 KiB
TypeScript
63 lines
1.1 KiB
TypeScript
import { TActionsRoom } from '../actions/room';
|
|
import { ROOM } from '../actions/actionsTypes';
|
|
|
|
export type IRoomRecord = string[];
|
|
|
|
export interface IRoom {
|
|
rid: string;
|
|
isDeleting: boolean;
|
|
subscribedRoom: string;
|
|
}
|
|
|
|
export const initialState: IRoom = {
|
|
rid: '',
|
|
isDeleting: false,
|
|
subscribedRoom: ''
|
|
};
|
|
|
|
export default function (state = initialState, action: TActionsRoom): IRoom {
|
|
switch (action.type) {
|
|
case ROOM.SUBSCRIBE:
|
|
return {
|
|
...state,
|
|
subscribedRoom: action.rid
|
|
};
|
|
case ROOM.UNSUBSCRIBE:
|
|
return {
|
|
...state,
|
|
subscribedRoom: state.subscribedRoom === action.rid ? '' : state.subscribedRoom
|
|
};
|
|
case ROOM.LEAVE:
|
|
return {
|
|
...state,
|
|
rid: action.room.rid,
|
|
isDeleting: true
|
|
};
|
|
case ROOM.DELETE:
|
|
return {
|
|
...state,
|
|
rid: action.room.rid,
|
|
isDeleting: true
|
|
};
|
|
case ROOM.CLOSE:
|
|
return {
|
|
...state,
|
|
rid: action.rid,
|
|
isDeleting: true
|
|
};
|
|
case ROOM.FORWARD:
|
|
return {
|
|
...state,
|
|
rid: action.rid,
|
|
isDeleting: true
|
|
};
|
|
case ROOM.REMOVED:
|
|
return {
|
|
...state,
|
|
isDeleting: false
|
|
};
|
|
default:
|
|
return state;
|
|
}
|
|
}
|