OperationsEfficiency
Top-level operations-efficiency section of the report — composes the site/type/unit views.
Top-level operations-efficiency section of the report — composes the site/type/unit views.
import { OperationsEfficiency } from "@tetherto/mdk-react-devkit";| Prop | Status | Type | Default | Description |
|---|---|---|---|---|
defaultTab | Optional | EfficiencyTabValue | undefined | — | — |
siteView | Optional | EfficiencySiteViewProps | undefined | — | — |
minerTypeView | Optional | EfficiencyMinerTypeViewProps | undefined | — | — |
minerUnitView | Optional | EfficiencyMinerUnitViewProps | undefined | — | — |
Usage
Operational efficiency reporting view with three tabs: site-level, miner-type-level, and individual miner-unit-level breakdown.
| Component | Description |
|---|---|
OperationsEfficiency | Top-level tabbed view. |
EfficiencySiteView | Site-level efficiency chart and table. |
EfficiencyMinerTypeView | Per-miner-type breakdown. |
EfficiencyMinerUnitView | Per-unit breakdown. |
OperationsEfficiency Props
| Prop | Type | Required | Default | Description |
|---|---|---|---|---|
defaultTab | EfficiencyTabValue | no | — | Initially selected tab. |
siteView | EfficiencySiteViewProps | no | — | Props forwarded to EfficiencySiteView. |
minerTypeView | EfficiencyMinerTypeViewProps | no | — | Props forwarded to EfficiencyMinerTypeView. |
minerUnitView | EfficiencyMinerUnitViewProps | no | — | Props forwarded to EfficiencyMinerUnitView. |
Example
import { OperationsEfficiency } from '@tetherto/mdk-react-devkit'export const OperationsEfficiencyExample = () => ( <div className="mdk-example-row"> <OperationsEfficiency /> </div>)HistoricalAlerts
Sortable data table of historical alerts within a controlled date range. Renders a header with title + `DateRangePicker`, then the table.
PoolManagerMinerExplorer
Pool-manager miner explorer page — searchable / filterable table of miners with multi-select and an "Assign Pool" bulk action. Submits the chosen pool change…