Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | import { LedgerConnectStepRow, LedgerStepText } from './ledger-connect-layout'; import { LedgerConnectStep } from '@hooks/use-prepare-ledger'; import { Box, Flex, Text, EncryptionIcon, color } from '@stacks/ui'; import React, { FC } from 'react'; interface LedgerConnectInstructions { step: LedgerConnectStep; action: string; isLocked: boolean; } const hasConnected = (step: LedgerConnectStep) => step > LedgerConnectStep.Disconnected; const hasOpenedApp = (step: LedgerConnectStep) => step > LedgerConnectStep.ConnectedAppClosed; const hasAddress = (step: LedgerConnectStep) => step === LedgerConnectStep.ActionComplete; export const LedgerConnectInstructions: FC<LedgerConnectInstructions> = props => { const { step, action, isLocked } = props; return ( <> <Box border={`1px solid ${color('border')}`} mt="extra-loose" borderRadius="8px"> <LedgerConnectStepRow isComplete={hasConnected(step)}> <LedgerStepText step={LedgerConnectStep.Disconnected}>Connect your Ledger</LedgerStepText> </LedgerConnectStepRow> <LedgerConnectStepRow isComplete={hasOpenedApp(step)}> <LedgerStepText step={LedgerConnectStep.ConnectedAppClosed}> Open the Stacks app </LedgerStepText> </LedgerConnectStepRow> <LedgerConnectStepRow isComplete={hasAddress(step)} isLast> <LedgerStepText step={LedgerConnectStep.ConnectedAppOpen}>{action}</LedgerStepText> </LedgerConnectStepRow> </Box> {isLocked && ( <Flex mt="base"> <EncryptionIcon size="12px" mt="2px" color={color('text-caption')} /> <Text textStyle="caption" ml="extra-tight" color={color('text-caption')}> Your Ledger device is locked. To continue, press a button your and device and enter your PIN code. </Text> </Flex> )} </> ); }; |