Skip to content
This repository was archived by the owner on Nov 1, 2024. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
2b94805
bennaaym/labgraph_monitor: set up typescript template for labgraph mo…
bennaaym Feb 10, 2022
5b2cc11
bennaaym/labgraph_monitor: graph layout set up using mock data
bennaaym Feb 11, 2022
80c42a9
bennaaym/labgraph_monitor: organize the graph layout using dagre
bennaaym Feb 11, 2022
a411e88
bennaaym/labgraph_monitor: graph style updated
bennaaym Feb 11, 2022
712a69b
bennaaym/labgraph_monitor: SettingPanel initial implementation
bennaaym Feb 11, 2022
7289e37
bennaaym/labgraph_monitor: SettingPanel updated
bennaaym Feb 11, 2022
ac5d453
bennaaym/labgraph_monitor: UIContext implemented
bennaaym Feb 12, 2022
f1a115f
bennaaym/labgraph_monitor: GraphSettings component initial implementa…
bennaaym Feb 13, 2022
32c99de
bennaaym/labgraph_monitor: mock examples added
bennaaym Feb 13, 2022
2220577
bennaaym/labgraph_monitor: GraphSettings connect form added
bennaaym Feb 13, 2022
377aed5
bennaaym/labgraph_monitor: websocket connection set up with the backe…
bennaaym Feb 14, 2022
41de247
bennaaym/labgraph_monitor: optimize rendering, render only if the pre…
bennaaym Feb 14, 2022
26c8022
bennaaym/labgraph_monitor: NodeSetting, EdgeSetting comonent updated …
bennaaym Feb 15, 2022
a689772
bennaaym/labgraph_monitor: EdgeSetting component updated
bennaaym Feb 15, 2022
033ee90
bennaaym/labgraph_monitor: migrate ConfigContext to redux store
bennaaym Feb 16, 2022
56327cb
bennaaym/labgraph_monitor: migrating WSContext to redux store
bennaaym Feb 16, 2022
203f52e
bennaaym/labgraph_monitor: copyright header added
bennaaym Feb 16, 2022
cc5529e
bennaaym/labgraph: updated .husky script to detect changes only insid…
bennaaym Feb 16, 2022
09598cf
bennaaym/labgraph_monitor: first unittest added, test Home component
bennaaym Feb 18, 2022
b421b4a
bennaaym/labgraph_monitor: unittest added
bennaaym Feb 18, 2022
b72e544
bennaaym/labgraph_monitor: adding documentation comments
bennaaym Feb 18, 2022
8e68cb5
bennaaym/labgraph_monitor: README updated
bennaaym Feb 18, 2022
1983088
bennaaym/labgraph: update from graph/ to Graph/ issue resolved
bennaaym Feb 18, 2022
0666023
bennaaym/labgraph_monitor: github action added
bennaaym Feb 18, 2022
538147a
Delete extensions/prototypes/labgraph_monitor/src/components/graph di…
bennaaym Feb 18, 2022
3bb54ee
Delete extensions/prototypes/labgraph_monitor/src/pages/home directory
bennaaym Mar 2, 2022
5326b1e
real-time messaging UI
fzchriha Mar 11, 2022
1c946e6
unncessary files
fzchriha Mar 11, 2022
c03678a
corrections
fzchriha Mar 19, 2022
e257c2d
add real-time message with mock data
fzchriha Mar 19, 2022
e89bb1c
Added labgraph architecture: overview & redux
fzchriha Mar 23, 2022
289ecb6
Update README.md
fzchriha Mar 30, 2022
8745529
changes in EdgeSettings
fzchriha Mar 30, 2022
0fea815
update package.json
fzchriha Mar 30, 2022
92a24bc
update gitignore main
fzchriha Mar 30, 2022
b5a002c
added miscellaneous comments
fzchriha Mar 30, 2022
d9b9cec
ignore DS_Store
fzchriha Mar 30, 2022
cc4227c
Connect realtimeGraph with realtimeData - update samples and interfaces
fzchriha Apr 2, 2022
d49ac50
Added realtime mock data to mockGraph
fzchriha Apr 2, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/labgraph_monitor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
cd extensions/prototypes/labgraph_monitor
yarn
- name: Run labgraph_monitor tests
run: |
cd extensions/prototypes/labgraph_monitor
yarn test --watchAll=false
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,6 @@ venv/
ENV/
env.bak/
venv.bak/
lab_env/

.DS_Store
2 changes: 2 additions & 0 deletions extensions/prototypes/labgraph_monitor/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
public
18 changes: 18 additions & 0 deletions extensions/prototypes/labgraph_monitor/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"extends": ["react-app", "react-app/jest", "prettier"],
"plugins": ["prettier"],
"rules": {
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
}
],
"no-console": [
"warn",
{
"allow": ["warn", "error"]
}
]
}
}
3 changes: 2 additions & 1 deletion extensions/prototypes/labgraph_monitor/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
/node_modules
/.pnp
.pnp.js
/public

# testing
/coverage
Expand All @@ -22,3 +21,5 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*

package-lock.json
8 changes: 8 additions & 0 deletions extensions/prototypes/labgraph_monitor/.husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
cd ./extensions/prototypes/labgraph_monitor
SRC_PATTERN="extensions/prototypes/labgraph_monitor"
git diff --cached --name-only | if grep --quiet "$SRC_PATTERN"
then
yarn check-code
fi
2 changes: 2 additions & 0 deletions extensions/prototypes/labgraph_monitor/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
public
node_modules
7 changes: 7 additions & 0 deletions extensions/prototypes/labgraph_monitor/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"endOfLine": "auto"
}
21 changes: 0 additions & 21 deletions extensions/prototypes/labgraph_monitor/App.css

This file was deleted.

161 changes: 0 additions & 161 deletions extensions/prototypes/labgraph_monitor/App.js

This file was deleted.

Loading