Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

webuipoc: integrate code formatter #5601

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
Open
16 changes: 16 additions & 0 deletions addOns/webuipoc/src/main/pocs/reactWebUI/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions addOns/webuipoc/src/main/pocs/reactWebUI/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"nth-check": ">=2.0.1",
"prettier": "3.3.3",
"tailwindcss": "^3.4.3"
}


}
11 changes: 5 additions & 6 deletions addOns/webuipoc/src/main/pocs/reactWebUI/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import { sendChildNode } from "./Utilities/requests";
import SearchBar from "./Components/SearchBar/SearchBar";

const App = () => {

return (
<div className="flex mt-16 overflow-auto">
<HeaderBase />
Expand All @@ -23,16 +22,16 @@ const App = () => {
<div className=" w-1/3 p-4 font-serif text-center ">
ID | Method | Host | Path | URI
</div>
</div>
<div className="flex flex-row justify-center text-center">
<div className=" p-4">
<p className="font-mono "></p>
{/* {childNode &&
<div className="flex flex-row justify-center text-center">
<div className=" p-4">
<p className="font-mono "></p>
{/* {childNode &&
childNode.map((node) => (
<p className="" key={childNode}>
{node.hrefId}
</p>
))} */}
</div>
</div>
</div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions addOns/webuipoc/src/main/pocs/reactWebUI/src/App.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { render, screen } from '@testing-library/react';
import App from './App';
import { render, screen } from "@testing-library/react";
import App from "./App";

test('renders learn react link', () => {
test("renders learn react link", () => {
render(<App />);
const linkElement = screen.getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
import React from 'react'
import React from "react";

function HistoryBar() {
return (
<div className="w-full bg-gray-400 text-white h-[250px]">
History
</div>
)
return <div className="w-full bg-gray-400 text-white h-[250px]">History</div>;
}

export default HistoryBar
export default HistoryBar;

// WIP
// WIP
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import React, { useState, createContext } from "react";

export const nodeIDContext = createContext();

export const NodeIDProvider = ({ children }) => {
const [nodeID, setNodeID] = useState(0);
return (
<nodeIDContext.Provider value={{ nodeID, setNodeID }}>
{children}
</nodeIDContext.Provider>
);
};
13 changes: 13 additions & 0 deletions addOns/webuipoc/src/main/pocs/reactWebUI/src/Utilities/req-resp.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import axios from "axios";

const sendMessage = async (id) => {
try {
const response = await axios.get(`/JSON/core/view/message?id=${id}`);
return response.data.message;
} catch (error) {
console.error("Error fetching data:", error);
throw error;
}
};

export { sendMessage };
35 changes: 17 additions & 18 deletions addOns/webuipoc/src/main/pocs/reactWebUI/src/Utilities/requests.js
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
import axios from 'axios';
import axios from "axios";

const sendChildNode = async (url) => {
try {
if (url.length === 0) {
if (process.env.NODE_ENV === "development") {
axios.defaults.baseURL = "http://localhost:1337";
} else {
axios.defaults.baseURL = "";
}
try {
if (url.length === 0) {
if (process.env.NODE_ENV === "development") {
axios.defaults.baseURL = "http://localhost:1337";
} else {
axios.defaults.baseURL = "";
}

const response = await axios.get('/JSON/core/view/childNodes/');
return response.data.childNodes;
} else {
const response = await axios.get(`/JSON/core/view/childNodes?url=${url}`);
return response.data.childNodes;
}
} catch (error) {
console.error('Error fetching data:', error);
throw error;
const response = await axios.get("/JSON/core/view/childNodes/");
return response.data.childNodes;
} else {
const response = await axios.get(`/JSON/core/view/childNodes?url=${url}`);
return response.data.childNodes;
}

} catch (error) {
console.error("Error fetching data:", error);
throw error;
}
};

export { sendChildNode };
14 changes: 7 additions & 7 deletions addOns/webuipoc/src/main/pocs/reactWebUI/src/index.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
import React from "react";
import ReactDOM from "react-dom/client";
import "./index.css";
import App from "./App";

const root = ReactDOM.createRoot(document.getElementById('root'));
const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);
</React.StrictMode>,
);
2 changes: 1 addition & 1 deletion addOns/webuipoc/src/main/pocs/reactWebUI/src/setupTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
// allows you to do things like:
// expect(element).toHaveTextContent(/react/i)
// learn more: https://github.com/testing-library/jest-dom
import '@testing-library/jest-dom';
import "@testing-library/jest-dom";
Loading