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.
 
 

190 lines
5.6 KiB

import type { NetworkValidation } from "@app/validation/config/network.js";
import { DynamicForm } from "@components/Form/DynamicForm.js";
import { useDevice } from "@core/stores/deviceStore.js";
import { Protobuf } from "@meshtastic/js";
import { convertIntToIpAddress, convertIpAddressToInt } from "@core/utils/ip.js";
export const Network = (): JSX.Element => {
const { config, setWorkingConfig } = useDevice();
const netConfig = {
wifiEnabled: config.network?.wifiEnabled,
wifiSsid: config.network?.wifiSsid,
wifiPsk: config.network?.wifiPsk,
ethEnabled: config.network?.ethEnabled,
addressMode: config.network?.addressMode,
ipv4Config: {
ip: convertIntToIpAddress(config.network?.ipv4Config?.ip ?? 0),
gateway: convertIntToIpAddress(config.network?.ipv4Config?.gateway ?? 0),
subnet: convertIntToIpAddress(config.network?.ipv4Config?.subnet ?? 0),
dns: convertIntToIpAddress(config.network?.ipv4Config?.dns ?? 0),
},
ntpServer: config.network?.ntpServer,
rsyslogServer: config.network?.rsyslogServer,
}
const onSubmit = (data: NetworkValidation) => {
setWorkingConfig(
new Protobuf.Config.Config({
payloadVariant: {
case: "network",
value: {
...data,
ipv4Config: new Protobuf.Config.Config_NetworkConfig_IpV4Config(
{
ip: convertIpAddressToInt(data.ipv4Config.ip) ?? 0,
gateway: convertIpAddressToInt(data.ipv4Config.gateway) ?? 0,
subnet: convertIpAddressToInt(data.ipv4Config.subnet) ?? 0,
dns: convertIpAddressToInt(data.ipv4Config.dns) ?? 0,
},
),
},
},
}),
);
};
return (
<DynamicForm<NetworkValidation>
onSubmit={onSubmit}
defaultValues={netConfig}
fieldGroups={[
{
label: "WiFi Config",
description: "WiFi radio configuration",
fields: [
{
type: "toggle",
name: "wifiEnabled",
label: "Enabled",
description: "Enable or disable the WiFi radio",
},
{
type: "text",
name: "wifiSsid",
label: "SSID",
description: "Network name",
disabledBy: [
{
fieldName: "wifiEnabled",
},
],
},
{
type: "password",
name: "wifiPsk",
label: "PSK",
description: "Network password",
disabledBy: [
{
fieldName: "wifiEnabled",
},
],
},
],
},
{
label: "Ethernet Config",
description: "Ethernet port configuration",
fields: [
{
type: "toggle",
name: "ethEnabled",
label: "Enabled",
description: "Enable or disable the Ethernet port",
},
],
},
{
label: "IP Config",
description: "IP configuration",
fields: [
{
type: "select",
name: "addressMode",
label: "Address Mode",
description: "Address assignment selection",
properties: {
enumValue: Protobuf.Config.Config_NetworkConfig_AddressMode,
},
},
{
type: "text",
name: "ipv4Config.ip",
label: "IP",
description: "IP Address",
disabledBy: [
{
fieldName: "addressMode",
selector:
Protobuf.Config.Config_NetworkConfig_AddressMode.DHCP,
},
],
},
{
type: "text",
name: "ipv4Config.gateway",
label: "Gateway",
description: "Default Gateway",
disabledBy: [
{
fieldName: "addressMode",
selector:
Protobuf.Config.Config_NetworkConfig_AddressMode.DHCP,
},
],
},
{
type: "text",
name: "ipv4Config.subnet",
label: "Subnet",
description: "Subnet Mask",
disabledBy: [
{
fieldName: "addressMode",
selector:
Protobuf.Config.Config_NetworkConfig_AddressMode.DHCP,
},
],
},
{
type: "text",
name: "ipv4Config.dns",
label: "DNS",
description: "DNS Server",
disabledBy: [
{
fieldName: "addressMode",
selector:
Protobuf.Config.Config_NetworkConfig_AddressMode.DHCP,
},
],
},
],
},
{
label: "NTP Config",
description: "NTP configuration",
fields: [
{
type: "text",
name: "ntpServer",
label: "NTP Server",
},
],
},
{
label: "Rsyslog Config",
description: "Rsyslog configuration",
fields: [
{
type: "text",
name: "rsyslogServer",
label: "Rsyslog Server",
},
],
},
]}
/>
);
};