🔧 Fixed a port check

This commit is contained in:
2021-11-24 15:54:09 -08:00
parent 2d75ba25bd
commit 25d68edbc4
4 changed files with 30 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
import React, { useState, useEffect, useCallback, ReactElement } from "react"; import React, { useState, useEffect, useCallback, ReactElement } from "react";
import { AirDCPPSettingsForm } from "./AirDCPPSettings/AirDCPPSettingsForm"; import { AirDCPPSettingsForm } from "./AirDCPPSettings/AirDCPPSettingsForm";
import { AirDCPPHubsForm } from "./AirDCPPSettings/AirDCPPHubsForm"; import { AirDCPPHubsForm } from "./AirDCPPSettings/AirDCPPHubsForm";
import { SystemSettingsForm } from "./SystemSettings/SystemSettingsForm";
import settingsObject from "../constants/settings/settingsMenu.json"; import settingsObject from "../constants/settings/settingsMenu.json";
import { isEmpty, isUndefined, map } from "lodash"; import { isEmpty, isUndefined, map } from "lodash";
import { useDispatch, useSelector } from "react-redux"; import { useDispatch, useSelector } from "react-redux";
@@ -37,6 +38,14 @@ export const Settings = (props: ISettingsProps): ReactElement => {
</> </>
), ),
}, },
{
id: "flushdb",
content: (
<>
<SystemSettingsForm settings={airDCPPClientSettings} />
</>
),
},
]; ];
return ( return (
<section className="container"> <section className="container">

View File

@@ -0,0 +1,9 @@
import React, { ReactElement } from "react";
export const SystemSettingsForm = (settingsObject): ReactElement => {
const { settings } = settingsObject;
return <div className="mt-4 is-clearfix"></div>;
};
export default SystemSettingsForm;

View File

@@ -57,6 +57,17 @@
}, },
{ {
"id": 4, "id": 4,
"category": "system",
"displayName": "System",
"children": [
{
"id": "flushdb",
"displayName": "Flush DB & Temporary folders"
}
]
},
{
"id": 5,
"category": "acknowledgments", "category": "acknowledgments",
"displayName": "Acknowledgments", "displayName": "Acknowledgments",
"children": [ "children": [

View File

@@ -14,7 +14,6 @@ app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true })); app.use(bodyParser.urlencoded({ extended: true }));
const port: number = Number(process.env.PORT) || 8050; // set our port const port: number = Number(process.env.PORT) || 8050; // set our port
const proxyPort = 8050; // set our port
app.get("/", (req: Request, res: Response) => { app.get("/", (req: Request, res: Response) => {
console.log("sending index.html"); console.log("sending index.html");
@@ -44,6 +43,6 @@ cors_proxy
"ThreeTwo! Express server with CORS Anywhere running on " + "ThreeTwo! Express server with CORS Anywhere running on " +
host + host +
":" + ":" +
proxyPort, port,
); );
}); });