committed by
GitHub
4 changed files with 79 additions and 3 deletions
@ -0,0 +1,51 @@ |
|||||
|
import { useDevice } from "@app/core/stores/deviceStore.js"; |
||||
|
import type { NeighborInfoValidation } from "@app/validation/moduleConfig/neighborInfo.js"; |
||||
|
import { DynamicForm } from "@components/Form/DynamicForm.js"; |
||||
|
import { Protobuf } from "@meshtastic/meshtasticjs"; |
||||
|
|
||||
|
export const NeighborInfo = (): JSX.Element => { |
||||
|
const { moduleConfig, setWorkingModuleConfig } = useDevice(); |
||||
|
|
||||
|
const onSubmit = (data: NeighborInfoValidation) => { |
||||
|
setWorkingModuleConfig( |
||||
|
new Protobuf.ModuleConfig({ |
||||
|
payloadVariant: { |
||||
|
case: "neighborInfo", |
||||
|
value: data, |
||||
|
}, |
||||
|
}), |
||||
|
); |
||||
|
}; |
||||
|
|
||||
|
return ( |
||||
|
<DynamicForm<NeighborInfoValidation> |
||||
|
onSubmit={onSubmit} |
||||
|
defaultValues={moduleConfig.neighborInfo} |
||||
|
fieldGroups={[ |
||||
|
{ |
||||
|
label: "Neighbor Info Settings", |
||||
|
description: "Settings for the Neighbor Info module", |
||||
|
fields: [ |
||||
|
{ |
||||
|
type: "toggle", |
||||
|
name: "enabled", |
||||
|
label: "Enabled", |
||||
|
description: "Enable or disable Neighbor Info Module", |
||||
|
}, |
||||
|
{ |
||||
|
type: "number", |
||||
|
name: "updateInterval", |
||||
|
label: "Update Interval", |
||||
|
description: "Interval in seconds of how often we should try to send our Neighbor Info to the mesh", |
||||
|
disabledBy: [ |
||||
|
{ |
||||
|
fieldName: "enabled", |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
]} |
||||
|
/> |
||||
|
); |
||||
|
}; |
||||
@ -0,0 +1,17 @@ |
|||||
|
import { IsBoolean, IsInt, Length } from "class-validator"; |
||||
|
|
||||
|
import type { Protobuf } from "@meshtastic/meshtasticjs"; |
||||
|
|
||||
|
export class NeighborInfoValidation |
||||
|
implements |
||||
|
Omit< |
||||
|
Protobuf.ModuleConfig_NeighborInfoConfig, |
||||
|
keyof Protobuf.native.Message |
||||
|
> |
||||
|
{ |
||||
|
@IsBoolean() |
||||
|
enabled: boolean; |
||||
|
|
||||
|
@IsInt() |
||||
|
updateInterval: number; |
||||
|
} |
||||
Loading…
Reference in new issue