You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
2.7 KiB
102 lines
2.7 KiB
import type React from 'react';
|
|
import { useEffect, useState } from 'react';
|
|
|
|
import { useForm, useWatch } from 'react-hook-form';
|
|
import { FiSave } from 'react-icons/fi';
|
|
|
|
import { IconButton } from '@components/generic/button/IconButton';
|
|
import { Checkbox } from '@components/generic/form/Checkbox';
|
|
import { Form } from '@components/generic/form/Form';
|
|
import { Input } from '@components/generic/form/Input';
|
|
import { connection } from '@core/connection';
|
|
import { useAppSelector } from '@hooks/useAppSelector';
|
|
import type { Protobuf } from '@meshtastic/meshtasticjs';
|
|
|
|
export const SerialSettingsPanel = (): JSX.Element => {
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
const preferences = useAppSelector(
|
|
(state) => state.meshtastic.radio.preferences,
|
|
);
|
|
|
|
const { register, handleSubmit, formState, reset, control } =
|
|
useForm<Protobuf.RadioConfig_UserPreferences>({
|
|
defaultValues: preferences,
|
|
});
|
|
|
|
useEffect(() => {
|
|
reset(preferences);
|
|
}, [reset, preferences]);
|
|
|
|
const onSubmit = handleSubmit(async (data) => {
|
|
setLoading(true);
|
|
await connection.setPreferences(data, async (): Promise<void> => {
|
|
reset({ ...data });
|
|
setLoading(false);
|
|
await Promise.resolve();
|
|
});
|
|
});
|
|
|
|
const pluginEnabled = useWatch({
|
|
control,
|
|
name: 'serialpluginEnabled',
|
|
defaultValue: false,
|
|
});
|
|
|
|
return (
|
|
<>
|
|
<Form loading={loading}>
|
|
<Checkbox label="Plugin Enabled" {...register('serialpluginEnabled')} />
|
|
<Checkbox
|
|
label="Echo"
|
|
disabled={!pluginEnabled}
|
|
{...register('serialpluginEcho')}
|
|
/>
|
|
|
|
<Input
|
|
type="number"
|
|
label="RX"
|
|
disabled={!pluginEnabled}
|
|
{...register('serialpluginRxd', {
|
|
valueAsNumber: true,
|
|
})}
|
|
/>
|
|
<Input
|
|
type="number"
|
|
label="TX"
|
|
disabled={!pluginEnabled}
|
|
{...register('serialpluginTxd', {
|
|
valueAsNumber: true,
|
|
})}
|
|
/>
|
|
<Input
|
|
type="number"
|
|
label="Mode"
|
|
disabled={!pluginEnabled}
|
|
{...register('serialpluginMode', {
|
|
valueAsNumber: true,
|
|
})}
|
|
/>
|
|
<Input
|
|
type="number"
|
|
label="Timeout"
|
|
disabled={!pluginEnabled}
|
|
{...register('serialpluginTimeout', {
|
|
valueAsNumber: true,
|
|
})}
|
|
/>
|
|
</Form>
|
|
<div className="flex w-full bg-white dark:bg-secondaryDark">
|
|
<div className="ml-auto p-2">
|
|
<IconButton
|
|
disabled={!formState.isDirty}
|
|
onClick={async (): Promise<void> => {
|
|
await onSubmit();
|
|
}}
|
|
icon={<FiSave />}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|