Compare commits
2 Commits
c5a475f9c5
...
fcc81cf7e5
Author | SHA1 | Date |
---|---|---|
Ceda EI | fcc81cf7e5 | |
Ceda EI | 459d334732 |
|
@ -23,3 +23,4 @@ yarn-debug.log*
|
||||||
yarn-error.log*
|
yarn-error.log*
|
||||||
|
|
||||||
.eslintcache
|
.eslintcache
|
||||||
|
src/config.js
|
||||||
|
|
|
@ -1,12 +1,15 @@
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { Grommet } from "grommet";
|
import { Grommet } from "grommet";
|
||||||
import Core from "./Core";
|
import Core from "./Core";
|
||||||
|
import WebSocketProvider from "./WebSocket";
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
return (
|
return (
|
||||||
<Grommet plain>
|
<WebSocketProvider>
|
||||||
<Core />
|
<Grommet plain>
|
||||||
</Grommet>
|
<Core />
|
||||||
|
</Grommet>
|
||||||
|
</WebSocketProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,6 @@ import * as plugins from "./plugins";
|
||||||
function Core() {
|
function Core() {
|
||||||
const coreState = useSelector(selectCore);
|
const coreState = useSelector(selectCore);
|
||||||
const dispatch = useDispatch();
|
const dispatch = useDispatch();
|
||||||
console.log(plugins.default);
|
|
||||||
const plugin = plugins.default[coreState.plugin];
|
const plugin = plugins.default[coreState.plugin];
|
||||||
const props = {
|
const props = {
|
||||||
data: coreState.data,
|
data: coreState.data,
|
||||||
|
@ -27,10 +26,7 @@ function Core() {
|
||||||
}
|
}
|
||||||
</>
|
</>
|
||||||
}
|
}
|
||||||
{plugin ?
|
{plugin ? plugin(props) :null}
|
||||||
React.cloneElement(plugin(), props)
|
|
||||||
:null
|
|
||||||
}
|
|
||||||
</>;
|
</>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,42 @@
|
||||||
|
import React, { createContext } from "react";
|
||||||
|
import PropTypes from "prop-types";
|
||||||
|
import io from "socket.io-client";
|
||||||
|
import { WS_BASE } from "./config";
|
||||||
|
import { useDispatch } from "react-redux";
|
||||||
|
import { setData, setPlugin } from "./coreSlice";
|
||||||
|
|
||||||
|
const WebSocketContext = createContext(null);
|
||||||
|
|
||||||
|
export { WebSocketContext };
|
||||||
|
|
||||||
|
function WebSocketProvider({ children }) {
|
||||||
|
let socket;
|
||||||
|
|
||||||
|
const dispatch = useDispatch();
|
||||||
|
if (!socket) {
|
||||||
|
socket = io.connect(WS_BASE);
|
||||||
|
|
||||||
|
socket.on("switchPlugin", (payload) => {
|
||||||
|
dispatch(setPlugin(payload.plugin));
|
||||||
|
dispatch(setData(payload.data));
|
||||||
|
if (payload.time) {
|
||||||
|
setTimeout(() => {
|
||||||
|
dispatch(setData({}));
|
||||||
|
dispatch(setPlugin(false));
|
||||||
|
}, payload.time);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<WebSocketContext.Provider value={socket}>
|
||||||
|
{children}
|
||||||
|
</WebSocketContext.Provider>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
WebSocketProvider.propTypes = {
|
||||||
|
children: PropTypes.node
|
||||||
|
};
|
||||||
|
|
||||||
|
export default WebSocketProvider;
|
|
@ -0,0 +1,3 @@
|
||||||
|
const WS_BASE = "http://localhost:5050/";
|
||||||
|
|
||||||
|
export { WS_BASE };
|
Loading…
Reference in New Issue