-
Notifications
You must be signed in to change notification settings - Fork 318
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NAS-128451 / 24.10 / Port WidgetSysInfoComponent to new dashboard (#1…
…0047) * NAS-128451: Port WidgetSysInfoComponent to new dashboard * NAS-128451: Port WidgetSysInfoComponent to new dashboard * NAS-128451: Port WidgetSysInfoComponent to new dashboard * NAS-128451: Port WidgetSysInfoComponent to new dashboard * NAS-128451: Port WidgetSysInfoComponent to new dashboard * NAS-128451: Port WidgetSysInfoComponent to new dashboard * NAS-128451: Port WidgetSysInfoComponent to new dashboard * NAS-128451: Port WidgetSysInfoComponent to new dashboard * NAS-128451: Port WidgetSysInfoComponent to new dashboard * NAS-128451: Port WidgetSysInfoComponent to new dashboard * NAS-128451: Port WidgetSysInfoComponent to new dashboard * NAS-128451: Port WidgetSysInfoComponent to new dashboard * NAS-128451: Port WidgetSysInfoComponent to new dashboard * NAS-128451: Port WidgetSysInfoComponent to new dashboard * NAS-128451: Port WidgetSysInfoComponent to new dashboard * NAS-128451: Port WidgetSysInfoComponent to new dashboard * NAS-128451: Port WidgetSysInfoComponent to new dashboard * NAS-128451: Port WidgetSysInfoComponent to new dashboard * NAS-128451: Port WidgetSysInfoComponent to new dashboard
- Loading branch information
1 parent
930a6a8
commit 59ccfd0
Showing
132 changed files
with
1,952 additions
and
141 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
interface MiniSeries { | ||
pathImg: string; | ||
images: string[]; | ||
isRackmount: boolean; | ||
} | ||
|
||
export const serverSeries = [ | ||
'H10', | ||
'M30', | ||
'M40', | ||
'M50', | ||
'M60', | ||
'X10', | ||
'X20', | ||
'Z20', | ||
'Z30', | ||
'Z35', | ||
'Z50', | ||
'R10', | ||
'R20', | ||
'R30', | ||
'R40', | ||
'R50', | ||
'F60', | ||
'F100', | ||
'F130', | ||
]; | ||
|
||
export const miniSeries: Record<string, MiniSeries> = { | ||
mini: { | ||
pathImg: 'freenas_mini_cropped.png', | ||
images: [ | ||
'FREENAS-MINI-2.0', | ||
'FREENAS-MINI-3.0-E', | ||
'FREENAS-MINI-3.0-E+', | ||
'TRUENAS-MINI-3.0-E', | ||
'TRUENAS-MINI-3.0-E+', | ||
], | ||
isRackmount: false, | ||
}, | ||
miniX: { | ||
pathImg: 'freenas_mini_x_cropped.png', | ||
images: [ | ||
'FREENAS-MINI-3.0-X', | ||
'FREENAS-MINI-3.0-X+', | ||
'TRUENAS-MINI-3.0-X', | ||
'TRUENAS-MINI-3.0-X+', | ||
], | ||
isRackmount: false, | ||
}, | ||
miniXL: { | ||
pathImg: 'freenas_mini_xl_cropped.png', | ||
images: [ | ||
'FREENAS-MINI-XL', | ||
'FREENAS-MINI-3.0-XL+', | ||
'TRUENAS-MINI-3.0-XL+', | ||
], | ||
isRackmount: false, | ||
}, | ||
miniR: { | ||
pathImg: 'servers/MINI-R.png', | ||
images: [ | ||
'TRUENAS-MINI-R', | ||
], | ||
isRackmount: true, | ||
}, | ||
}; |
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,2 @@ | ||
export const oneHourMillis = 60 * 60 * 1000; | ||
export const oneDayMillis = 24 * oneHourMillis; |
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
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
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
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
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
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
Oops, something went wrong.