mirror of
https://github.com/trezor/trezor-wallet
synced 2024-12-28 18:08:08 +00:00
d2d184773d
TrezorConnect will emit UI.CLOSE_UI_WINDOW which will close modal window
97 lines
2.7 KiB
JavaScript
97 lines
2.7 KiB
JavaScript
/* @flow */
|
|
|
|
|
|
import { UI, DEVICE } from 'trezor-connect';
|
|
import * as RECEIVE from 'actions/constants/receive';
|
|
import * as MODAL from 'actions/constants/modal';
|
|
import * as CONNECT from 'actions/constants/TrezorConnect';
|
|
|
|
import type { Action, TrezorDevice } from 'flowtype';
|
|
|
|
export type State = {
|
|
context: typeof MODAL.CONTEXT_NONE;
|
|
} | {
|
|
context: typeof MODAL.CONTEXT_DEVICE,
|
|
device: TrezorDevice;
|
|
instances?: Array<TrezorDevice>;
|
|
windowType?: string;
|
|
} | {
|
|
context: typeof MODAL.CONTEXT_EXTERNAL_WALLET,
|
|
windowType?: string;
|
|
}
|
|
|
|
const initialState: State = {
|
|
context: MODAL.CONTEXT_NONE,
|
|
};
|
|
|
|
export default function modal(state: State = initialState, action: Action): State {
|
|
switch (action.type) {
|
|
case RECEIVE.REQUEST_UNVERIFIED:
|
|
case CONNECT.FORGET_REQUEST:
|
|
case CONNECT.TRY_TO_DUPLICATE:
|
|
case CONNECT.REQUEST_WALLET_TYPE:
|
|
return {
|
|
context: MODAL.CONTEXT_DEVICE,
|
|
device: action.device,
|
|
windowType: action.type,
|
|
};
|
|
|
|
case CONNECT.REMEMBER_REQUEST:
|
|
return {
|
|
context: MODAL.CONTEXT_DEVICE,
|
|
device: action.device,
|
|
instances: action.instances,
|
|
windowType: action.type,
|
|
};
|
|
|
|
// device connected
|
|
// close modal if modal context is not 'device'
|
|
case DEVICE.CONNECT:
|
|
case DEVICE.CONNECT_UNACQUIRED:
|
|
if (state.context !== MODAL.CONTEXT_DEVICE) {
|
|
return initialState;
|
|
}
|
|
return state;
|
|
|
|
// device with context assigned to modal was disconnected
|
|
// close modal
|
|
case DEVICE.DISCONNECT:
|
|
if (state.context === MODAL.CONTEXT_DEVICE && action.device.path === state.device.path) {
|
|
return initialState;
|
|
}
|
|
return state;
|
|
|
|
|
|
case UI.REQUEST_PIN:
|
|
case UI.INVALID_PIN:
|
|
case UI.REQUEST_PASSPHRASE:
|
|
return {
|
|
context: MODAL.CONTEXT_DEVICE,
|
|
device: action.payload.device,
|
|
windowType: action.type,
|
|
};
|
|
|
|
case UI.REQUEST_BUTTON:
|
|
return {
|
|
context: MODAL.CONTEXT_DEVICE,
|
|
device: action.payload.device,
|
|
windowType: action.payload.code,
|
|
};
|
|
|
|
case UI.CLOSE_UI_WINDOW:
|
|
case MODAL.CLOSE:
|
|
case CONNECT.FORGET:
|
|
case CONNECT.FORGET_SINGLE:
|
|
case CONNECT.REMEMBER:
|
|
return initialState;
|
|
|
|
case MODAL.OPEN_EXTERNAL_WALLET:
|
|
return {
|
|
context: MODAL.CONTEXT_EXTERNAL_WALLET,
|
|
windowType: action.id,
|
|
};
|
|
|
|
default:
|
|
return state;
|
|
}
|
|
} |