mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-12 11:28:56 +00:00
124 lines
3.4 KiB
JavaScript
124 lines
3.4 KiB
JavaScript
/* @flow */
|
|
|
|
import TrezorConnect, { UI, UI_EVENT } from 'trezor-connect';
|
|
import type { Device } from 'trezor-connect';
|
|
import * as MODAL from 'actions/constants/modal';
|
|
import * as CONNECT from 'actions/constants/TrezorConnect';
|
|
|
|
import type {
|
|
ThunkAction, AsyncAction, Action, GetState, Dispatch, TrezorDevice,
|
|
} from 'flowtype';
|
|
import type { State } from 'reducers/ModalReducer';
|
|
|
|
export type ModalAction = {
|
|
type: typeof MODAL.CLOSE
|
|
} | {
|
|
type: typeof MODAL.REMEMBER,
|
|
device: TrezorDevice
|
|
};
|
|
|
|
export const onPinSubmit = (value: string): Action => {
|
|
TrezorConnect.uiResponse({ type: UI.RECEIVE_PIN, payload: value });
|
|
return {
|
|
type: MODAL.CLOSE,
|
|
};
|
|
};
|
|
|
|
export const onPassphraseSubmit = (passphrase: string): AsyncAction => async (dispatch: Dispatch, getState: GetState): Promise<void> => {
|
|
const resp = await TrezorConnect.uiResponse({
|
|
type: UI.RECEIVE_PASSPHRASE,
|
|
payload: {
|
|
value: passphrase,
|
|
save: true,
|
|
},
|
|
});
|
|
|
|
dispatch({
|
|
type: MODAL.CLOSE,
|
|
});
|
|
};
|
|
|
|
// export const askForRemember = (device: TrezorDevice): Action => {
|
|
// return {
|
|
// type: MODAL.REMEMBER,
|
|
// device
|
|
// }
|
|
// }
|
|
|
|
export const onRememberDevice = (device: TrezorDevice): Action => ({
|
|
type: CONNECT.REMEMBER,
|
|
device,
|
|
});
|
|
|
|
export const onForgetDevice = (device: TrezorDevice): Action => ({
|
|
type: CONNECT.FORGET,
|
|
device,
|
|
});
|
|
|
|
export const onForgetSingleDevice = (device: TrezorDevice): Action => ({
|
|
type: CONNECT.FORGET_SINGLE,
|
|
device,
|
|
});
|
|
|
|
export const onCancel = (): Action => ({
|
|
type: MODAL.CLOSE,
|
|
});
|
|
|
|
export const onDuplicateDevice = (device: TrezorDevice): ThunkAction => (dispatch: Dispatch, getState: GetState): void => {
|
|
dispatch(onCancel());
|
|
|
|
dispatch({
|
|
type: CONNECT.DUPLICATE,
|
|
device,
|
|
});
|
|
};
|
|
|
|
export const onRememberRequest = (prevState: State): ThunkAction => (dispatch: Dispatch, getState: GetState): void => {
|
|
const state: State = getState().modal;
|
|
// handle case where forget modal is already opened
|
|
// TODO: 2 modals at once (two devices disconnected in the same time)
|
|
if (prevState.opened && prevState.windowType === CONNECT.REMEMBER_REQUEST) {
|
|
// forget current (new)
|
|
if (state.opened) {
|
|
dispatch({
|
|
type: CONNECT.FORGET,
|
|
device: state.device,
|
|
});
|
|
}
|
|
|
|
// forget previous (old)
|
|
dispatch({
|
|
type: CONNECT.FORGET,
|
|
device: prevState.device,
|
|
});
|
|
}
|
|
};
|
|
|
|
export const onDeviceConnect = (device: Device): ThunkAction => (dispatch: Dispatch, getState: GetState): void => {
|
|
// interrupt process of remembering device (force forget)
|
|
// TODO: the same for disconnect more than 1 device at once
|
|
const { modal } = getState();
|
|
if (modal.opened && modal.windowType === CONNECT.REMEMBER_REQUEST) {
|
|
if (device.features && modal.device && modal.device.features && modal.device.features.device_id === device.features.device_id) {
|
|
dispatch({
|
|
type: MODAL.CLOSE,
|
|
});
|
|
} else {
|
|
dispatch({
|
|
type: CONNECT.FORGET,
|
|
device: modal.device,
|
|
});
|
|
}
|
|
}
|
|
};
|
|
|
|
export default {
|
|
onPinSubmit,
|
|
onPassphraseSubmit,
|
|
// askForRemember,
|
|
onRememberDevice,
|
|
onForgetDevice,
|
|
onForgetSingleDevice,
|
|
onCancel,
|
|
onDuplicateDevice,
|
|
}; |