Browse Source

Additional UI

pull/227/head
Hunter Thornsberry 2 years ago
parent
commit
11c69a4610
  1. 29
      src/components/PageComponents/Channel.tsx
  2. 12
      src/validation/channel.ts

29
src/components/PageComponents/Channel.tsx

@ -20,7 +20,7 @@ export const Channel = ({ channel }: SettingsPanelProps): JSX.Element => {
...data.settings,
psk: toByteArray(data.settings.psk ?? ""),
moduleSettings: {
positionPrecision: data.settings.positionPrecision,
positionPrecision: data.positionPrecision,
}
},
});
@ -45,6 +45,9 @@ export const Channel = ({ channel }: SettingsPanelProps): JSX.Element => {
psk: fromByteArray(channel?.settings?.psk ?? new Uint8Array(0)),
},
},
positionEnabled: true,
preciseLocation: true,
positionPrecision: 1
}}
fieldGroups={[
{
@ -89,10 +92,25 @@ export const Channel = ({ channel }: SettingsPanelProps): JSX.Element => {
label: "Downlink Enabled",
description: "Send messages from MQTT to the local mesh",
},
{
type: "toggle",
name: "positionEnabled",
label: "Allow Position Requests",
description: "Send position to channel",
},
{
type: "toggle",
name: "preciseLocation",
label: "Precise Location",
description: "Send precise location to channel",
disabledBy: [{
fieldName: "positionEnabled",
}]
},
{
type: "select",
name: "settings.positionPrecision",
label: "Position Precision",
name: "positionPrecision",
label: "Approximate Location",
description:
"Position shared on mesh is accurate within this distance",
properties: {
@ -100,6 +118,11 @@ export const Channel = ({ channel }: SettingsPanelProps): JSX.Element => {
{ "Within 23 km":2300, "Within 12 km":12000, "Within 5.8 km":5800, "Within 2.9 km":2900, "Within 1.5 km":1500, "Within 700 m":700, "Within 350 m":350, "Within 200 m":200, "Within 90 m":90, "Within 50 m":50 } :
{ "Within 15 miles":1, "Within 7.3 miles":2, "Within 3.6 miles":3, "Within 1.8 miles":4, "Within 0.9 miles":5, "Within 0.5 miles":6, "Within 0.2 miles":7, "Within 600 feet":8, "Within 300 feet":9, "Within 150 feet":10 }
},
disabledBy: [
{
fieldName: "positionEnabled",
},
],
},
],
},

12
src/validation/channel.ts

@ -19,6 +19,15 @@ export class ChannelValidation
@IsEnum(Protobuf.Channel.Channel_Role)
role: Protobuf.Channel.Channel_Role;
@IsBoolean()
positionEnabled: boolean;
@IsBoolean()
preciseLocation: boolean;
@IsInt()
positionPrecision: number;
}
export class Channel_SettingsValidation
@ -41,7 +50,4 @@ export class Channel_SettingsValidation
@IsBoolean()
downlinkEnabled: boolean;
@IsInt()
positionPrecision: number;
}

Loading…
Cancel
Save