You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-wallet/src/reducers/LogReducer.js

48 lines
896 B

/* @flow */
import * as LOG from 'actions/constants/log';
import type { Action } from 'flowtype';
export type LogEntry = {
time: number;
type: string;
// message: string;
message: any;
}
export type State = {
opened: boolean;
entries: Array<LogEntry>;
}
export const initialState: State = {
opened: false,
entries: [],
};
export default (state: State = initialState, action: Action): State => {
switch (action.type) {
case LOG.OPEN:
return {
...state,
opened: true,
};
case LOG.CLOSE:
return {
...state,
opened: false,
};
case LOG.ADD:
return {
...state,
entries: state.entries.concat([action.payload]),
};
default:
return state;
}
};