-
-
Notifications
You must be signed in to change notification settings - Fork 267
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Transport device disconnected #15615
Merged
Merged
Changes from 3 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
47766fe
fix(transport): narrow error handling of disconnected device to be th…
mroz22 1549c69
fix(connect): do not release disconnected devices
mroz22 27a8b0b
feat(suite): introduce new prerequisite - device-used-elsehwere. sepa…
mroz22 9e9c4e9
fix(connect): rework device.run error handling
mroz22 6de4059
feat(suite): more meaningful troubleshooting tips for unreadeble device
mroz22 4709f3b
chore(transport): get rid of timeout in sessions background
mroz22 d8b814a
fix(transport): propagate libusb_access_error for correct udev rules …
mroz22 424b54f
chore(connect): Device.ts - fields privatization
mroz22 5781cab
chore(transport): reduce verbosity of usb logs by removing device
mroz22 2c9473b
chore(connect): add debugging log to catch of Device._runInner
mroz22 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
58 changes: 58 additions & 0 deletions
58
packages/suite/src/components/suite/PrerequisitesGuide/DeviceUsedElsewhere.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
import { MouseEventHandler } from 'react'; | ||
|
||
import { acquireDevice } from '@suite-common/wallet-core'; | ||
import { Button } from '@trezor/components'; | ||
|
||
import { Translation, TroubleshootingTips } from 'src/components/suite'; | ||
import { useDevice, useDispatch } from 'src/hooks/suite'; | ||
import { | ||
TROUBLESHOOTING_TIP_RECONNECT, | ||
TROUBLESHOOTING_TIP_CLOSE_ALL_TABS, | ||
} from 'src/components/suite/troubleshooting/tips'; | ||
|
||
export const DeviceUsedElsewhere = () => { | ||
const { isLocked, device } = useDevice(); | ||
const dispatch = useDispatch(); | ||
|
||
const isDeviceLocked = isLocked(); | ||
|
||
const handleClick: MouseEventHandler = e => { | ||
e.stopPropagation(); | ||
dispatch(acquireDevice()); | ||
}; | ||
|
||
const ctaButton = ( | ||
<Button | ||
data-testid="@device-used-elsewhere" | ||
isLoading={isDeviceLocked} | ||
onClick={handleClick} | ||
> | ||
<Translation id="TR_ACQUIRE_DEVICE" /> | ||
</Button> | ||
); | ||
|
||
const tips = [ | ||
{ | ||
key: 'device-used-elsewhere', | ||
heading: <Translation id="TR_DEVICE_CONNECTED_UNACQUIRED" />, | ||
description: ( | ||
<Translation | ||
id="TR_DEVICE_CONNECTED_UNACQUIRED_DESCRIPTION" | ||
values={{ | ||
transportSessionOwner: device?.transportSessionOwner || 'unknown', | ||
}} | ||
/> | ||
), | ||
}, | ||
TROUBLESHOOTING_TIP_CLOSE_ALL_TABS, | ||
TROUBLESHOOTING_TIP_RECONNECT, | ||
]; | ||
|
||
return ( | ||
<TroubleshootingTips | ||
label={<Translation id="TR_ACQUIRE_DEVICE_TITLE" />} | ||
cta={ctaButton} | ||
items={tips} | ||
/> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
todo: device.used ?