\n
\n setData({ range: value })} label=\"Date Range\" />\n
\n
\n \n \n \n \n {list.map((item) => (\n \n {item.BuildingName?.en}\n \n ))}\n \n \n \n\n {list.length === 0 && (\n \n \n \n )}\n\n \n \n {list[0]?.Inspections.map((item) => {\n return (\n \n {item.InspectionName}\n \n )\n })}\n \n\n {list.map(({ Inspections, BuildingId }, i) => {\n return (\n \n {Inspections.map(({ InspectionName, SubmittedStatus = 'NA' }) => {\n const [backgroundColor, text] = Color[SubmittedStatus]\n return (\n \n {text}\n \n )\n })}\n \n )\n })}\n \n\n {list.length !== 0 && (\n \n \n Key\n {['Completed', 'Overdue', 'Upcoming'].map((item) => {\n const [backgroundColor, text] = Color[item]\n return (\n \n \n {item}\n \n \n {text}\n \n \n )\n })}\n \n \n )}\n \n \n
\n \n \n \n
\n
\n } />\n \n
\n )\n}\n\nexport default InspectionReport\n","import React, { useCallback, useEffect } from 'react'\nimport { Box, Modal, IconButton, Typography } from '@mui/material'\nimport { Close } from '@mui/icons-material'\nimport { makeStyles } from '@mui/styles'\nimport { getHubItemLogData, getScanTrendData } from '@api'\nimport CircularProgress from '@mui/material/CircularProgress'\nimport useSetState from '@hooks/useSetState'\nimport Echarts from '@component/Chart/Echarts'\nimport * as echarts from 'echarts'\nimport { ECBasicOption } from 'echarts/types/dist/shared'\nimport { formartMonth, formatMilliseconds } from '@utils/DateUtil'\nimport TableList, { TableConfig } from '@component/Tabs/TableList'\n\nconst option: ECBasicOption = {\n grid: {\n right: 20,\n },\n tooltip: {\n trigger: 'axis',\n axisPointer: {\n type: 'shadow',\n },\n },\n xAxis: {\n axisLabel: {\n color: '#211F1F',\n fontSize: 16,\n },\n axisLine: {\n lineStyle: {\n color: '#BCBCBC',\n },\n },\n type: 'category',\n axisTick: {\n show: false,\n },\n boundaryGap: false,\n data: [],\n },\n yAxis: {\n type: 'value',\n minInterval: 1,\n splitNumber: 5,\n axisLabel: {\n color: '#211F1F',\n fontSize: 16,\n },\n splitLine: {\n show: true,\n lineStyle: {\n type: 'dashed',\n color: '#BCBCBC',\n },\n },\n },\n series: [\n {\n data: [],\n type: 'line',\n smooth: true,\n symbol: 'circle',\n symbolSize: 12,\n areaStyle: {\n opacity: 0.8,\n color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [\n {\n offset: 0,\n color: 'rgba(25, 118, 210, 0.20)',\n },\n {\n offset: 1,\n color: 'rgba(25, 118, 210, 0)',\n },\n ]),\n },\n },\n ],\n}\n\nconst useStyles = makeStyles(() => ({\n modal: {\n width: 700,\n padding: 24,\n maxHeight: '80%',\n backgroundColor: '#fff',\n position: 'absolute',\n left: '50%',\n top: '50%',\n transform: 'translate(-50%, -50%)',\n overflowY: 'auto',\n borderRadius: 6,\n },\n header: {\n display: 'flex',\n justifyContent: 'space-between',\n alignItems: 'center',\n fontWeight: 600,\n fontSize: 24,\n marginBottom: 32,\n },\n modalBtn: {\n fontSize: 15,\n fontWeight: 500,\n padding: '8px 16px',\n borderRadius: 4,\n marginLeft: 16,\n },\n wrap: {\n display: 'flex',\n minHeight: 300,\n flexDirection: 'column',\n alignItems: 'center',\n },\n trend: {\n width: '100%',\n marginTop: 32,\n paddingTop: 32,\n borderTop: '1px solid #BCBCBC',\n fontWeight: 600,\n fontSize: 24,\n alignSelf: 'flex-start',\n },\n}))\nconst CONFIG: Array