fix ExecutionUptime
This commit is contained in:
parent
19c0b5f867
commit
6464e31b3d
|
@ -3,46 +3,10 @@ import { Stack, XStack, YStack } from 'tamagui'
|
||||||
|
|
||||||
import Icon from '../../../components/General/Icon'
|
import Icon from '../../../components/General/Icon'
|
||||||
import UptimeChart from '../UptimeChart/UptimeChart'
|
import UptimeChart from '../UptimeChart/UptimeChart'
|
||||||
|
|
||||||
const data: DataItem[] = [
|
|
||||||
{
|
|
||||||
// @NOTE: if you want to add name in the XAxis. You need to set the names here
|
|
||||||
pv: 1,
|
|
||||||
pa: 1,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
pv: 0,
|
|
||||||
pa: 0,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
pv: 0,
|
|
||||||
pa: 0,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
pv: 0,
|
|
||||||
pa: 1,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
pv: 0,
|
|
||||||
pa: 0,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
pv: 1,
|
|
||||||
pa: 0,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
pv: 0,
|
|
||||||
pa: 1,
|
|
||||||
},
|
|
||||||
]
|
|
||||||
|
|
||||||
type DataItem = {
|
|
||||||
name?: string
|
|
||||||
pa: number
|
|
||||||
pv: number
|
|
||||||
}
|
|
||||||
|
|
||||||
const ExecutionUptime = () => {
|
const ExecutionUptime = () => {
|
||||||
|
const monthlyActivity = [0,20,0,0,0,10,0,0,0,0,0,30]
|
||||||
return (
|
return (
|
||||||
<Shadow
|
<Shadow
|
||||||
variant="$2"
|
variant="$2"
|
||||||
|
@ -76,7 +40,7 @@ const ExecutionUptime = () => {
|
||||||
height: '100%',
|
height: '100%',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<UptimeChart data={data} />
|
<UptimeChart monthlyActivity={monthlyActivity} startMonth={0} endMonth={8} withLabels={false} />
|
||||||
</Stack>
|
</Stack>
|
||||||
</XStack>
|
</XStack>
|
||||||
</YStack>
|
</YStack>
|
||||||
|
|
Loading…
Reference in New Issue