chore: migrate customEmoji to typescript and add tests
This commit is contained in:
parent
9d9553b075
commit
506c9555ce
|
@ -1,8 +0,0 @@
|
||||||
import * as types from './actionsTypes';
|
|
||||||
|
|
||||||
export function setCustomEmojis(emojis) {
|
|
||||||
return {
|
|
||||||
type: types.SET_CUSTOM_EMOJIS,
|
|
||||||
emojis
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
import { Action } from 'redux';
|
||||||
|
|
||||||
|
import { ICustomEmojis } from '../reducers/customEmojis';
|
||||||
|
import { SET_CUSTOM_EMOJIS } from './actionsTypes';
|
||||||
|
|
||||||
|
export interface ISetCustomEmojis extends Action {
|
||||||
|
emojis: ICustomEmojis;
|
||||||
|
}
|
||||||
|
|
||||||
|
export type TActionCustomEmojis = ISetCustomEmojis;
|
||||||
|
|
||||||
|
export function setCustomEmojis(emojis: ICustomEmojis): ISetCustomEmojis {
|
||||||
|
return {
|
||||||
|
type: SET_CUSTOM_EMOJIS,
|
||||||
|
emojis
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,5 +1,6 @@
|
||||||
import { TActionSelectedUsers } from '../../actions/selectedUsers';
|
|
||||||
import { TActionActiveUsers } from '../../actions/activeUsers';
|
import { TActionActiveUsers } from '../../actions/activeUsers';
|
||||||
|
import { TActionCustomEmojis } from '../../actions/customEmojis';
|
||||||
|
import { TActionSelectedUsers } from '../../actions/selectedUsers';
|
||||||
// REDUCERS
|
// REDUCERS
|
||||||
import { IActiveUsers } from '../../reducers/activeUsers';
|
import { IActiveUsers } from '../../reducers/activeUsers';
|
||||||
import { ISelectedUsers } from '../../reducers/selectedUsers';
|
import { ISelectedUsers } from '../../reducers/selectedUsers';
|
||||||
|
@ -28,4 +29,4 @@ export interface IApplicationState {
|
||||||
roles: any;
|
roles: any;
|
||||||
}
|
}
|
||||||
|
|
||||||
export type TApplicationActions = TActionActiveUsers & TActionSelectedUsers;
|
export type TApplicationActions = TActionActiveUsers & TActionSelectedUsers & TActionCustomEmojis;
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
import { SET_CUSTOM_EMOJIS } from '../actions/actionsTypes';
|
|
||||||
|
|
||||||
const initialState = {
|
|
||||||
customEmojis: {}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function customEmojis(state = initialState, action) {
|
|
||||||
switch (action.type) {
|
|
||||||
case SET_CUSTOM_EMOJIS:
|
|
||||||
return action.emojis;
|
|
||||||
default:
|
|
||||||
return state;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
import { setCustomEmojis } from '../actions/customEmojis';
|
||||||
|
import { ICustomEmojis, initialState } from './customEmojis';
|
||||||
|
import { mockedStore } from './mockedStore';
|
||||||
|
|
||||||
|
describe('test reducer', () => {
|
||||||
|
it('should return initial state', () => {
|
||||||
|
const state = mockedStore.getState().customEmojis;
|
||||||
|
expect(state).toEqual(initialState);
|
||||||
|
});
|
||||||
|
it('should return modified store after action', () => {
|
||||||
|
const emojis: ICustomEmojis = { dog: { name: 'dog', extension: 'jpg' }, cat: { name: 'cat', extension: 'jpg' } };
|
||||||
|
mockedStore.dispatch(setCustomEmojis(emojis));
|
||||||
|
const state = mockedStore.getState().customEmojis;
|
||||||
|
expect(state).toEqual(emojis);
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,23 @@
|
||||||
|
import { SET_CUSTOM_EMOJIS } from '../actions/actionsTypes';
|
||||||
|
import { TApplicationActions } from '../definitions';
|
||||||
|
|
||||||
|
// There are at least three interfaces for emoji, but none of them includes only this data.
|
||||||
|
interface IEmoji {
|
||||||
|
name: string;
|
||||||
|
extension: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ICustomEmojis {
|
||||||
|
[key: string]: IEmoji;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const initialState: ICustomEmojis = {};
|
||||||
|
|
||||||
|
export default function customEmojis(state = initialState, action: TApplicationActions): ICustomEmojis {
|
||||||
|
switch (action.type) {
|
||||||
|
case SET_CUSTOM_EMOJIS:
|
||||||
|
return action.emojis;
|
||||||
|
default:
|
||||||
|
return state;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue