Skip to content
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

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

GorillaDevq
Copy link
Contributor

Привет ребят, столкнулся с проблемами при типизации блютуза и ошибок. Соответственно использовал eslint-disable-next-line. Буду рад ревью и постараюсь исправить

@GorillaDevq GorillaDevq changed the title feat: useBluetooth [feat]: useBluetooth Aug 2, 2024
// 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);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

По поводу всех дизейблов, кроме error, вроде и без них все работает, так что можно их убрать?

Copy link
Contributor Author

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);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

По поводу самой ошибки, почему именно unknown? Ты же можешь проверить, что именно падает и сделать это строкой, если не получается, то указать кастомную ошибку, условно setError('error') или заменить на булевую ошибку, чтобы просто обозначать, что она есть. Либо прокинуть onError, чтобы передавать пользователю ошибку, сам ты все равно её не используешь. Либо вообще ничего не делать и кидать ошибку в консоль, но тут хз.

Copy link
Contributor Author

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);
Copy link

@Nurvive Nurvive Aug 7, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Еще, кстати, можно убрать <boolean>, ты же явно указываешь начальное значение

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Мерси)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants