* applied eslint * add locales and lint the project * removed error boundary * updated locales * fix min files * fix locales
109 lines
3 KiB
TypeScript
109 lines
3 KiB
TypeScript
import React from 'react';
|
|
import { NoContent } from 'UI';
|
|
import { withRequest } from 'HOCs';
|
|
import {
|
|
AreaChart,
|
|
Area,
|
|
CartesianGrid,
|
|
Tooltip,
|
|
ResponsiveContainer,
|
|
XAxis,
|
|
YAxis,
|
|
} from 'recharts';
|
|
import { toUnderscore } from 'App/utils';
|
|
import { NO_METRIC_DATA } from 'App/constants/messages';
|
|
import { InfoCircleOutlined } from '@ant-design/icons';
|
|
import { Styles, AvgLabel } from '../../common';
|
|
|
|
const WIDGET_KEY = 'timeToRender';
|
|
|
|
interface Props {
|
|
data: any;
|
|
optionsLoading: any;
|
|
fetchOptions: any;
|
|
options: any;
|
|
metric?: any;
|
|
}
|
|
function TimeToRender(props: Props) {
|
|
const { data, optionsLoading, metric } = props;
|
|
const gradientDef = Styles.gradientDef();
|
|
|
|
const onSelect = (params) => {
|
|
// const _params = { density: 70 }
|
|
// TODO reload the data with new params;
|
|
// this.props.fetchWidget(WIDGET_KEY, dashbaordStore.period, props.platform, { ..._params, url: params.value })
|
|
};
|
|
|
|
return (
|
|
<NoContent
|
|
size="small"
|
|
show={metric.data.chart.length === 0}
|
|
title={
|
|
<div className="flex items-center gap-2 text-base font-normal">
|
|
<InfoCircleOutlined size={12} /> {NO_METRIC_DATA}
|
|
</div>
|
|
}
|
|
>
|
|
<>
|
|
<div className="flex items-center mb-3">
|
|
{/* <WidgetAutoComplete
|
|
loading={optionsLoading}
|
|
fetchOptions={props.fetchOptions}
|
|
options={props.options}
|
|
onSelect={onSelect}
|
|
placeholder="Search for Page"
|
|
/> */}
|
|
<AvgLabel
|
|
className="ml-auto"
|
|
text="Avg"
|
|
count={Math.round(data.value)}
|
|
unit="ms"
|
|
/>
|
|
</div>
|
|
<ResponsiveContainer height={200} width="100%">
|
|
<AreaChart data={metric.data.chart} margin={Styles.chartMargins}>
|
|
{gradientDef}
|
|
<CartesianGrid
|
|
strokeDasharray="3 3"
|
|
vertical={false}
|
|
stroke="#EEEEEE"
|
|
/>
|
|
<XAxis
|
|
{...Styles.xaxis}
|
|
dataKey="time"
|
|
interval={metric.params.density / 7}
|
|
/>
|
|
<YAxis
|
|
{...Styles.yaxis}
|
|
// allowDecimals={false}
|
|
tickFormatter={(val) => Styles.tickFormatter(val)}
|
|
label={{ ...Styles.axisLabelLeft, value: 'Time to Render (ms)' }}
|
|
/>
|
|
<Tooltip {...Styles.tooltip} />
|
|
<Area
|
|
name="Avg"
|
|
type="monotone"
|
|
unit=" ms"
|
|
dataKey="value"
|
|
stroke={Styles.strokeColor}
|
|
fillOpacity={1}
|
|
strokeWidth={2}
|
|
strokeOpacity={0.8}
|
|
fill="url(#colorCount)"
|
|
/>
|
|
</AreaChart>
|
|
</ResponsiveContainer>
|
|
</>
|
|
</NoContent>
|
|
);
|
|
}
|
|
|
|
export default withRequest({
|
|
dataName: 'options',
|
|
initialData: [],
|
|
dataWrapper: (data) => data,
|
|
loadingName: 'optionsLoading',
|
|
requestName: 'fetchOptions',
|
|
endpoint: `/dashboard/${toUnderscore(WIDGET_KEY)}/search`,
|
|
method: 'GET',
|
|
})(TimeToRender);
|