1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- import {Location} from 'history';
- import {GridColumnHeader} from 'sentry/components/gridEditable';
- import SortLink, {Alignments} from 'sentry/components/gridEditable/sortLink';
- import {
- aggregateFunctionOutputType,
- fieldAlignment,
- parseFunction,
- Sort,
- } from 'sentry/utils/discover/fields';
- import {SpanMetricsFields, StarfishFunctions} from 'sentry/views/starfish/types';
- import {QueryParameterNames} from 'sentry/views/starfish/views/queryParameters';
- type Options = {
- column: GridColumnHeader<string>;
- location?: Location;
- sort?: Sort;
- };
- const {SPAN_SELF_TIME} = SpanMetricsFields;
- const {TIME_SPENT_PERCENTAGE, SPS, SPM, HTTP_ERROR_COUNT} = StarfishFunctions;
- export const SORTABLE_FIELDS = new Set([
- `avg(${SPAN_SELF_TIME})`,
- `p95(${SPAN_SELF_TIME})`,
- `${SPS}()`,
- `${SPM}()`,
- `${TIME_SPENT_PERCENTAGE}()`,
- `${TIME_SPENT_PERCENTAGE}(local)`,
- `${HTTP_ERROR_COUNT}()`,
- ]);
- export const renderHeadCell = ({column, location, sort}: Options) => {
- const {key, name} = column;
- const alignment = getAlignment(key);
- let newSortDirection: Sort['kind'] = 'desc';
- if (sort?.field === column.key) {
- if (sort.kind === 'desc') {
- newSortDirection = 'asc';
- }
- }
- const newSort = `${newSortDirection === 'desc' ? '-' : ''}${key}`;
- return (
- <SortLink
- align={alignment}
- canSort={Boolean(location && sort && SORTABLE_FIELDS.has(key))}
- direction={sort?.field === column.key ? sort.kind : undefined}
- title={name}
- generateSortLink={() => {
- return {
- ...location,
- query: {
- ...location?.query,
- [QueryParameterNames.SORT]: newSort,
- },
- };
- }}
- />
- );
- };
- export const getAlignment = (key: string): Alignments => {
- const result = parseFunction(key);
- if (result) {
- const outputType = aggregateFunctionOutputType(result.name, result.arguments[0]);
- if (outputType) {
- return fieldAlignment(key, outputType);
- }
- }
- return 'left';
- };
|