mirror of
https://github.com/trezor/trezor-wallet
synced 2025-01-13 01:20:59 +00:00
120 lines
3.3 KiB
JavaScript
120 lines
3.3 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,
|
|
}
|
|
| {
|
|
context: typeof MODAL.CONTEXT_SCAN_QR,
|
|
}
|
|
| {
|
|
context: typeof MODAL.CONTEXT_CONFIRMATION,
|
|
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,
|
|
};
|
|
|
|
case MODAL.OPEN_SCAN_QR:
|
|
return {
|
|
context: MODAL.CONTEXT_SCAN_QR,
|
|
};
|
|
|
|
case UI.REQUEST_CONFIRMATION:
|
|
return {
|
|
context: MODAL.CONTEXT_CONFIRMATION,
|
|
windowType: action.payload.view,
|
|
};
|
|
|
|
default:
|
|
return state;
|
|
}
|
|
}
|