-
Notifications
You must be signed in to change notification settings - Fork 40
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
[feat]: useBluetooth #224
base: main
Are you sure you want to change the base?
[feat]: useBluetooth #224
Conversation
// eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents | ||
const [device, setDevice] = useState<BluetoothDevice | undefined>(undefined); | ||
// eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents | ||
const [server, setServer] = useState<BluetoothRemoteGATTServer | undefined>(undefined); |
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.
По поводу всех дизейблов, кроме error, вроде и без них все работает, так что можно их убрать?
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.
Да, в этом случае работает без проблем, просто неприятно, когда линтнер ошибку светит
// eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents | ||
const [server, setServer] = useState<BluetoothRemoteGATTServer | undefined>(undefined); | ||
// eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents | ||
const [error, setError] = useState<unknown | null>(null); |
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.
По поводу самой ошибки, почему именно unknown? Ты же можешь проверить, что именно падает и сделать это строкой, если не получается, то указать кастомную ошибку, условно setError('error')
или заменить на булевую ошибку, чтобы просто обозначать, что она есть. Либо прокинуть onError, чтобы передавать пользователю ошибку, сам ты все равно её не используешь. Либо вообще ничего не делать и кидать ошибку в консоль, но тут хз.
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.
Мерси за ревью, поправил ошибку)
} = options || {}; | ||
|
||
const [isSupported, setIsSupported] = useState<boolean>(false); | ||
const [isConnected, setIsConnected] = useState<boolean>(false); |
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.
Еще, кстати, можно убрать <boolean>
, ты же явно указываешь начальное значение
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.
Мерси)
Привет ребят, столкнулся с проблемами при типизации блютуза и ошибок. Соответственно использовал eslint-disable-next-line. Буду рад ревью и постараюсь исправить