mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-05 15:13:21 +00:00
90 lines
3.1 KiB
TypeScript
90 lines
3.1 KiB
TypeScript
import { LineChartOutlined } from '@ant-design/icons';
|
|
import * as React from 'react';
|
|
import { Chart, EntityType, SearchResult } from '../../../types.generated';
|
|
import { Direction } from '../../lineage/types';
|
|
import getChildren from '../../lineage/utils/getChildren';
|
|
import { Entity, IconStyleType, PreviewType } from '../Entity';
|
|
import { getLogoFromPlatform } from '../../shared/getLogoFromPlatform';
|
|
import { ChartPreview } from './preview/ChartPreview';
|
|
import ChartProfile from './profile/ChartProfile';
|
|
|
|
/**
|
|
* Definition of the DataHub Chart entity.
|
|
*/
|
|
export class ChartEntity implements Entity<Chart> {
|
|
type: EntityType = EntityType.Chart;
|
|
|
|
icon = (fontSize: number, styleType: IconStyleType) => {
|
|
if (styleType === IconStyleType.TAB_VIEW) {
|
|
return <LineChartOutlined style={{ fontSize }} />;
|
|
}
|
|
|
|
if (styleType === IconStyleType.HIGHLIGHT) {
|
|
return <LineChartOutlined style={{ fontSize, color: 'rgb(144 163 236)' }} />;
|
|
}
|
|
|
|
if (styleType === IconStyleType.SVG) {
|
|
return (
|
|
<path d="M888 792H200V168c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v688c0 4.4 3.6 8 8 8h752c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zM305.8 637.7c3.1 3.1 8.1 3.1 11.3 0l138.3-137.6L583 628.5c3.1 3.1 8.2 3.1 11.3 0l275.4-275.3c3.1-3.1 3.1-8.2 0-11.3l-39.6-39.6a8.03 8.03 0 00-11.3 0l-230 229.9L461.4 404a8.03 8.03 0 00-11.3 0L266.3 586.7a8.03 8.03 0 000 11.3l39.5 39.7z" />
|
|
);
|
|
}
|
|
|
|
return (
|
|
<LineChartOutlined
|
|
style={{
|
|
fontSize,
|
|
color: '#BFBFBF',
|
|
}}
|
|
/>
|
|
);
|
|
};
|
|
|
|
isSearchEnabled = () => true;
|
|
|
|
isBrowseEnabled = () => true;
|
|
|
|
isLineageEnabled = () => true;
|
|
|
|
getAutoCompleteFieldName = () => 'title';
|
|
|
|
getPathName = () => 'chart';
|
|
|
|
getCollectionName = () => 'Charts';
|
|
|
|
renderProfile = (urn: string) => <ChartProfile urn={urn} />;
|
|
|
|
renderPreview = (_: PreviewType, data: Chart) => {
|
|
return (
|
|
<ChartPreview
|
|
urn={data.urn}
|
|
platform={data.tool}
|
|
name={data.info?.name}
|
|
description={data.editableProperties?.description || data.info?.description}
|
|
access={data.info?.access}
|
|
owners={data.ownership?.owners}
|
|
tags={data?.globalTags || undefined}
|
|
/>
|
|
);
|
|
};
|
|
|
|
renderSearch = (result: SearchResult) => {
|
|
return this.renderPreview(PreviewType.SEARCH, result.entity as Chart);
|
|
};
|
|
|
|
getLineageVizConfig = (entity: Chart) => {
|
|
return {
|
|
urn: entity.urn,
|
|
name: entity.info?.name || '',
|
|
type: EntityType.Chart,
|
|
upstreamChildren: getChildren({ entity, type: EntityType.Chart }, Direction.Upstream).map(
|
|
(child) => child.entity.urn,
|
|
),
|
|
downstreamChildren: getChildren({ entity, type: EntityType.Chart }, Direction.Downstream).map(
|
|
(child) => child.entity.urn,
|
|
),
|
|
icon: getLogoFromPlatform(entity.tool),
|
|
platform: entity.tool,
|
|
};
|
|
};
|
|
}
|