-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improvement(upgraded-nodes): show subheaders for each version
- Loading branch information
1 parent
5609590
commit 5f07fce
Showing
9 changed files
with
123 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.stickySubheader { | ||
position: sticky; | ||
top: 0; | ||
background-color: #325850; | ||
padding: 0.2rem; | ||
text-align: center; | ||
color:white; | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 0 additions & 3 deletions
3
...lugin-upgradedNodes/upgradedNodes.spec.js → ...ugin-upgraded-nodes/upgradedNodes.spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
plugins/lime-plugin-upgraded-nodes/upgradedNodes.stories.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
import { UpgradedNodesPage_ } from './src/upgradedNodesPage'; | ||
|
||
export default { | ||
title: 'Containers/Upgraded Nodes' | ||
} | ||
|
||
const nodes = [ | ||
{ hostname: "ql-czuk", status: "recently_reachable", | ||
ipv4:'10.5.0.3', ipv6: 'fd0d:fe46:8ce8::8bbf:7500', | ||
board: 'LibreRouter v1', fw_version: 'LibreRouterOS 1.3', | ||
group: 'not_upgraded' | ||
}, | ||
{ hostname: "ql-czuk-bbone", status: "recently_reachable", | ||
ipv4:'10.5.0.9', ipv6: 'fd0d:fe46:8ce8::8bbf:7500', | ||
board: 'LibreRouter v1', fw_version: 'LibreRouterOS 1.3', | ||
group: 'not_upgraded' | ||
}, | ||
{ hostname: "si-soniam", status: "recently_reachable", | ||
ipv4:'10.5.0.16', ipv6: 'fd0d:fe46:8ce8::8bbf:7500', | ||
board: 'LibreRouter v1', fw_version: 'LibreRouterOS 1.4', | ||
group: 'upgraded' | ||
}, | ||
{ hostname: "ql-berta", status: "recently_reachable", | ||
ipv4:'10.5.0.9', ipv6: 'fd0d:fe46:8ce8::8bbf:7500', | ||
board: 'LibreRouter v1', fw_version: 'LibreRouterOS 1.4', | ||
group: 'upgraded' | ||
}, | ||
{ hostname: "ql-nelson", status: "recently_reachable", | ||
ipv4:'10.5.0.9', ipv6: 'fd0d:fe46:8ce8::8bbf:7500', | ||
board: 'LibreRouter v1', fw_version: 'LibreRouterOS 1.3', | ||
group: 'not_upgraded' | ||
}, | ||
{ hostname: "ql-irene", status: "recently_reachable", | ||
ipv4:'10.5.0.9', ipv6: 'fd0d:fe46:8ce8::8bbf:7500', | ||
board: 'LibreRouter v1', fw_version: 'LibreRouterOS 1.3', | ||
group: 'not_upgraded' | ||
}, | ||
{ hostname: "ql-guillermina", status: "recently_reachable", | ||
ipv4:'10.5.0.9', ipv6: 'fd0d:fe46:8ce8::8bbf:7500', | ||
board: 'LibreRouter v1', fw_version: 'LibreRouterOS 1.3', | ||
group: 'not_upgraded' | ||
}, | ||
{ hostname: "ql-silviak", status: "recently_reachable", | ||
ipv4:'10.5.0.9', ipv6: 'fd0d:fe46:8ce8::8bbf:7500', | ||
board: 'LibreRouter v1', fw_version: 'LibreRouterOS 1.3', | ||
group: 'not_upgraded' | ||
}, | ||
{ hostname: "ql-oncelotes", status: "recently_reachable", | ||
ipv4:'10.5.0.9', ipv6: 'fd0d:fe46:8ce8::8bbf:7500', | ||
board: 'LibreRouter v1', fw_version: 'LibreRouterOS 1.2', | ||
group: 'not_upgraded' | ||
}, | ||
]; | ||
|
||
export const upgradedNodesPage = () => <UpgradedNodesPage_ nodes={nodes} /> |
This file was deleted.
Oops, something went wrong.