Skip to content

Commit 8789466

Browse files
authored
Merge branch 'datahub-project:master' into master
2 parents 113afc4 + d4812d7 commit 8789466

File tree

21 files changed

+166
-107
lines changed

21 files changed

+166
-107
lines changed

datahub-web-react/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@
145145
"@storybook/react-vite": "^8.1.11",
146146
"@storybook/test": "^8.1.11",
147147
"@storybook/theming": "^8.1.11",
148-
"@stylistic/eslint-plugin-js": "^4.2.0",
148+
"@stylistic/eslint-plugin-js": "^3.1.0",
149149
"@types/graphql": "^14.5.0",
150150
"@types/query-string": "^6.3.0",
151151
"@types/styled-components": "^5.1.7",

datahub-web-react/src/alchemy-components/components/Button/Button.tsx

+8-2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ export const Button = ({
3030
isDisabled = buttonDefaults.isDisabled,
3131
isActive = buttonDefaults.isActive,
3232
children,
33+
iconSource,
34+
iconColor,
3335
...props
3436
}: ButtonProps) => {
3537
const styleProps = {
@@ -52,9 +54,13 @@ export const Button = ({
5254

5355
return (
5456
<ButtonBase {...styleProps} {...props}>
55-
{icon && iconPosition === 'left' && <Icon icon={icon} size={iconSize || size} />}
57+
{icon && iconPosition === 'left' && (
58+
<Icon icon={icon} color={iconColor} size={iconSize || size} source={iconSource} />
59+
)}
5660
{!isCircle && children}
57-
{icon && iconPosition === 'right' && <Icon icon={icon} size={iconSize || size} />}
61+
{icon && iconPosition === 'right' && (
62+
<Icon icon={icon} color={iconColor} size={iconSize || size} source={iconSource} />
63+
)}
5864
</ButtonBase>
5965
);
6066
};

datahub-web-react/src/alchemy-components/components/Button/types.ts

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { ButtonHTMLAttributes } from 'react';
22

33
import type { IconNames } from '@components';
44
import type { SizeOptions, ColorOptions, FontSizeOptions } from '@components/theme/config';
5+
import { IconSource } from '../Icon/types';
56

67
export type ButtonVariant = 'filled' | 'outline' | 'text';
78

@@ -21,6 +22,8 @@ export interface ButtonProps
2122
Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'color'> {
2223
icon?: IconNames;
2324
iconSize?: FontSizeOptions;
25+
iconSource?: IconSource;
26+
iconColor?: ColorOptions;
2427
}
2528

2629
export type ButtonStyleProps = Omit<ButtonPropsDefaults, 'iconPosition'>;

datahub-web-react/src/app/entityV2/shared/tabs/Incident/AcrylComponents/IncidentDetailDrawer.tsx

+11-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { useState } from 'react';
22

33
import { Drawer, Modal } from 'antd';
44
import ClickOutside from '@src/app/shared/ClickOutside';
5-
import { Incident } from '@src/types.generated';
5+
import { EntityPrivileges, Incident } from '@src/types.generated';
66
import { IncidentDrawerHeader } from './IncidentDrawerHeader';
77
import { IncidentView } from './IncidentView';
88
import { IncidentEditor } from './IncidentEditor';
@@ -18,9 +18,17 @@ type IncidentDetailDrawerProps = {
1818
onCancel?: () => void;
1919
onSubmit?: (incident?: Incident) => void;
2020
entity?: EntityStagedForIncident;
21+
privileges?: EntityPrivileges;
2122
};
2223

23-
export const IncidentDetailDrawer = ({ mode, onCancel, onSubmit, incident, entity }: IncidentDetailDrawerProps) => {
24+
export const IncidentDetailDrawer = ({
25+
mode,
26+
onCancel,
27+
onSubmit,
28+
incident,
29+
entity,
30+
privileges,
31+
}: IncidentDetailDrawerProps) => {
2432
const [isEditView, setIsEditView] = useState<boolean>(false);
2533
const showEditor = isEditView || mode === IncidentAction.CREATE;
2634
const modalClosePopup = () => {
@@ -57,6 +65,7 @@ export const IncidentDetailDrawer = ({ mode, onCancel, onSubmit, incident, entit
5765
setIsEditActive={setIsEditView}
5866
data={incident}
5967
platform={entity?.platform}
68+
privileges={privileges}
6069
/>
6170
{showEditor ? (
6271
<IncidentEditor

datahub-web-react/src/app/entityV2/shared/tabs/Incident/AcrylComponents/IncidentDrawerHeader.tsx

+41-31
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
import React from 'react';
2-
import styled from 'styled-components';
3-
import { Link as LinkIcon, PencilSimpleLine, X } from '@phosphor-icons/react';
2+
import { Button } from '@src/alchemy-components';
43
import { Tooltip2 } from '@src/alchemy-components/components/Tooltip2';
54
import PlatformIcon from '@src/app/sharedV2/icons/PlatformIcon';
65
import { capitalizeFirstLetter } from '@src/app/shared/textUtil';
7-
import { DataPlatform } from '@src/types.generated';
6+
import { DataPlatform, EntityPrivileges } from '@src/types.generated';
87
import { useIncidentURNCopyLink } from '../hooks';
9-
import { IncidentAction } from '../constant';
8+
import { IncidentAction, noPermissionsMessage } from '../constant';
109
import { IncidentTableRow } from '../types';
1110
import {
1211
ForPlatformWrapper,
@@ -16,31 +15,14 @@ import {
1615
StyledTitle,
1716
} from './styledComponents';
1817

19-
const EditButton = styled(PencilSimpleLine)`
20-
:hover {
21-
cursor: pointer;
22-
}
23-
`;
24-
25-
const CloseButton = styled(X)`
26-
:hover {
27-
cursor: pointer;
28-
}
29-
`;
30-
31-
const LinkButton = styled(LinkIcon)`
32-
:hover {
33-
cursor: pointer;
34-
}
35-
`;
36-
3718
type IncidentDrawerHeaderProps = {
3819
mode: IncidentAction;
3920
onClose?: () => void;
4021
isEditActive: boolean;
4122
setIsEditActive: React.Dispatch<React.SetStateAction<boolean>>;
4223
data?: IncidentTableRow;
4324
platform?: DataPlatform;
25+
privileges?: EntityPrivileges;
4426
};
4527

4628
export const IncidentDrawerHeader = ({
@@ -50,12 +32,18 @@ export const IncidentDrawerHeader = ({
5032
setIsEditActive,
5133
data,
5234
platform,
35+
privileges,
5336
}: IncidentDrawerHeaderProps) => {
5437
const handleIncidentLinkCopy = useIncidentURNCopyLink(data ? data?.urn : '');
38+
39+
const canEditIncidents = privileges?.canEditIncidents || false;
40+
5541
return (
5642
<StyledHeader>
5743
<StyledHeaderTitleContainer>
58-
<StyledTitle>{mode === IncidentAction.CREATE ? 'Create New Incident' : data?.title}</StyledTitle>
44+
<StyledTitle data-testid="drawer-header-title">
45+
{mode === IncidentAction.CREATE ? 'Create New Incident' : data?.title}
46+
</StyledTitle>
5947
{platform && (
6048
<ForPlatformWrapper>
6149
<PlatformIcon platform={platform} size={16} styles={{ marginRight: 4 }} />
@@ -66,19 +54,41 @@ export const IncidentDrawerHeader = ({
6654
<StyledHeaderActions>
6755
{mode === IncidentAction.EDIT && isEditActive === false && (
6856
<>
69-
<Tooltip2 title="Edit Incident">
70-
<EditButton
71-
size={20}
72-
onClick={() => setIsEditActive(!isEditActive)}
73-
data-testid="edit-incident-icon"
74-
/>
57+
<Tooltip2 title={canEditIncidents ? 'Edit Incident' : noPermissionsMessage}>
58+
<span>
59+
<Button
60+
icon="PencilSimpleLine"
61+
variant="text"
62+
iconColor="gray"
63+
iconSource="phosphor"
64+
onClick={() => setIsEditActive(!isEditActive)}
65+
disabled={!canEditIncidents}
66+
data-testid="edit-incident-icon"
67+
size="xl"
68+
/>
69+
</span>
7570
</Tooltip2>
7671
<Tooltip2 title="Copy Link">
77-
<LinkButton size={20} onClick={handleIncidentLinkCopy} />
72+
<Button
73+
icon="Link"
74+
variant="text"
75+
iconColor="gray"
76+
iconSource="phosphor"
77+
onClick={handleIncidentLinkCopy}
78+
size="xl"
79+
/>
7880
</Tooltip2>
7981
</>
8082
)}
81-
<CloseButton size={20} onClick={() => onClose?.()} data-testid="incident-drawer-close-button" />
83+
<Button
84+
icon="X"
85+
variant="text"
86+
iconColor="gray"
87+
iconSource="phosphor"
88+
onClick={() => onClose?.()}
89+
data-testid="incident-drawer-close-button"
90+
size="xl"
91+
/>
8292
</StyledHeaderActions>
8393
</StyledHeader>
8494
);

datahub-web-react/src/app/entityV2/shared/tabs/Incident/IncidentList.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ export const IncidentList = () => {
8888
refetch={() => {
8989
refetch();
9090
}}
91+
privileges={privileges}
9192
/>
9293
);
9394
}

datahub-web-react/src/app/entityV2/shared/tabs/Incident/IncidentListTable.tsx

+5-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import React, { useEffect, useState } from 'react';
22
import { useEntityData } from '@src/app/entity/shared/EntityContext';
33
import { Table } from '@src/alchemy-components';
44
import { SortingState } from '@src/alchemy-components/components/Table/types';
5+
import { EntityPrivileges } from '@src/types.generated';
56
import { IncidentDetailDrawer } from './AcrylComponents/IncidentDetailDrawer';
67
import { IncidentListFilter, IncidentTable, IncidentTableRow } from './types';
78
import { useIncidentsTableColumns, useOpenIncidentDetailModal } from './hooks';
@@ -15,9 +16,10 @@ type Props = {
1516
incidentData: IncidentTable;
1617
filter: IncidentListFilter;
1718
refetch: () => void;
19+
privileges?: EntityPrivileges;
1820
};
1921

20-
export const IncidentListTable = ({ incidentData, filter, refetch }: Props) => {
22+
export const IncidentListTable = ({ incidentData, filter, refetch, privileges }: Props) => {
2123
const { entityData } = useEntityData();
2224
const { groupBy } = filter;
2325

@@ -29,7 +31,7 @@ export const IncidentListTable = ({ incidentData, filter, refetch }: Props) => {
2931
);
3032

3133
// get columns data from the custom hooks
32-
const incidentsTableCols = useIncidentsTableColumns();
34+
const incidentsTableCols = useIncidentsTableColumns(privileges);
3335
const [sortedOptions, setSortedOptions] = useState<{ sortColumn: string; sortOrder: SortingState }>({
3436
sortColumn: '',
3537
sortOrder: SortingState.ORIGINAL,
@@ -138,6 +140,7 @@ export const IncidentListTable = ({ incidentData, filter, refetch }: Props) => {
138140
urn={focusIncidentUrn}
139141
mode={IncidentAction.EDIT}
140142
incident={focusIncidentData}
143+
privileges={privileges}
141144
onCancel={() => setFocusIncidentUrn(null)}
142145
onSubmit={() => {
143146
setTimeout(() => {

datahub-web-react/src/app/entityV2/shared/tabs/Incident/IncidentResolveButton.tsx

+17-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import React, { useEffect, useState } from 'react';
2-
import { CorpUser, IncidentState } from '@src/types.generated';
2+
import { Tooltip } from 'antd';
3+
import { CorpUser, EntityPrivileges, IncidentState } from '@src/types.generated';
34
import { Button, colors, Pill, Popover } from '@src/alchemy-components';
45
import { useGetEntitiesLazyQuery } from '@src/graphql/entity.generated';
56
import { Check } from '@phosphor-icons/react';
@@ -12,6 +13,7 @@ import { IncidentTableRow } from './types';
1213
import { IncidentResolutionPopup } from './IncidentResolutionPopup';
1314
import { LoadingWrapper } from './AcrylComponents/styledComponents';
1415
import { ResolvedSection } from './ResolvedSection';
16+
import { noPermissionsMessage } from './constant';
1517

1618
const ME = 'Me';
1719

@@ -26,7 +28,15 @@ const ResolveButton = styled(Button)`
2628
padding: 0px;
2729
`;
2830

29-
export const IncidentResolveButton = ({ incident }: { incident: IncidentTableRow }) => {
31+
export const IncidentResolveButton = ({
32+
incident,
33+
privileges,
34+
}: {
35+
incident: IncidentTableRow;
36+
privileges?: EntityPrivileges;
37+
}) => {
38+
const canEditIncidents = privileges?.canEditIncidents || false;
39+
3040
const me = useUserContext();
3141
const [showResolvePopup, setShowResolvePopup] = useState(false);
3242
const [incidentResolver, setIncidentResolver] = useState<CorpUser | any>(null);
@@ -113,9 +123,11 @@ export const IncidentResolveButton = ({ incident }: { incident: IncidentTableRow
113123
data-testid="incident-resolve-button-container"
114124
>
115125
{incident?.state === IncidentState.Active ? (
116-
<ResolveButton variant="text" onClick={handleShowPopup}>
117-
Resolve
118-
</ResolveButton>
126+
<Tooltip showArrow={false} title={!canEditIncidents ? noPermissionsMessage : null}>
127+
<ResolveButton disabled={!canEditIncidents} variant="text" onClick={handleShowPopup}>
128+
Resolve
129+
</ResolveButton>
130+
</Tooltip>
119131
) : (
120132
showPopoverWithResolver
121133
)}

datahub-web-react/src/app/entityV2/shared/tabs/Incident/constant.ts

+2
Original file line numberDiff line numberDiff line change
@@ -220,3 +220,5 @@ export const STAGE_ORDER = [
220220
export const STATE_ORDER = [INCIDENT_STATE_NAME_MAP.ACTIVE, INCIDENT_STATE_NAME_MAP.RESOLVED];
221221

222222
export const MAX_VISIBLE_ASSIGNEE = 5;
223+
224+
export const noPermissionsMessage = 'You do not have permission to edit incidents for this asset.';

datahub-web-react/src/app/entityV2/shared/tabs/Incident/hooks.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ import { IncidentPriorityLabel } from '@src/alchemy-components/components/Incide
88
import { getCapitalizeWord } from '@src/alchemy-components/components/IncidentStagePill/utils';
99
import { AlignmentOptions } from '@src/alchemy-components/theme/config';
1010
import { useEntityRegistryV2 } from '@src/app/useEntityRegistry';
11-
import { CorpUser } from '@src/types.generated';
11+
import { CorpUser, EntityPrivileges } from '@src/types.generated';
1212
import { getQueryParams } from '../Dataset/Validations/assertionUtils';
1313
import { getAssigneeNamesWithAvatarUrl, getLinkedAssetsCount } from './utils';
1414
import { IncidentResolveButton } from './IncidentResolveButton';
1515
import { IncidentAssigneeAvatarStack } from './IncidentAssigneeAvatarStack';
1616
import { CategoryType } from './styledComponents';
1717

18-
export const useIncidentsTableColumns = () => {
18+
export const useIncidentsTableColumns = (privileges?: EntityPrivileges) => {
1919
return useMemo(() => {
2020
const columns = [
2121
{
@@ -107,13 +107,13 @@ export const useIncidentsTableColumns = () => {
107107
key: 'actions',
108108
width: '15%',
109109
render: (record) => {
110-
return !record.groupName && <IncidentResolveButton incident={record} />;
110+
return !record.groupName && <IncidentResolveButton incident={record} privileges={privileges} />;
111111
},
112112
alignment: 'right' as AlignmentOptions,
113113
},
114114
];
115115
return columns;
116-
}, []);
116+
}, [privileges]);
117117
};
118118

119119
export const useIncidentURNCopyLink = (Urn: string) => {

datahub-web-react/yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -3792,10 +3792,10 @@
37923792
resolved "https://registry.yarnpkg.com/@storybook/theming/-/theming-8.4.7.tgz#c308f6a883999bd35e87826738ab8a76515932b5"
37933793
integrity sha512-99rgLEjf7iwfSEmdqlHkSG3AyLcK0sfExcr0jnc6rLiAkBhzuIsvcHjjUwkR210SOCgXqBPW0ZA6uhnuyppHLw==
37943794

3795-
"@stylistic/eslint-plugin-js@^4.2.0":
3796-
version "4.2.0"
3797-
resolved "https://registry.yarnpkg.com/@stylistic/eslint-plugin-js/-/eslint-plugin-js-4.2.0.tgz#30536fd35dd6aba08c1e234fe37bf66831c6e989"
3798-
integrity sha512-MiJr6wvyzMYl/wElmj8Jns8zH7Q1w8XoVtm+WM6yDaTrfxryMyb8n0CMxt82fo42RoLIfxAEtM6tmQVxqhk0/A==
3795+
"@stylistic/eslint-plugin-js@^3.1.0":
3796+
version "3.1.0"
3797+
resolved "https://registry.yarnpkg.com/@stylistic/eslint-plugin-js/-/eslint-plugin-js-3.1.0.tgz#b36292b09bd810ea1b34e0720512f137335ef745"
3798+
integrity sha512-lQktsOiCr8S6StG29C5fzXYxLOD6ID1rp4j6TRS+E/qY1xd59Fm7dy5qm9UauJIEoSTlYx6yGsCHYh5UkgXPyg==
37993799
dependencies:
38003800
eslint-visitor-keys "^4.2.0"
38013801
espree "^10.3.0"

metadata-ingestion-modules/airflow-plugin/src/datahub_airflow_plugin/datahub_listener.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ def on_dag_start(self, dag_run: "DagRun") -> None:
642642
if dag.dag_id == _DATAHUB_CLEANUP_DAG:
643643
assert self.graph
644644

645-
logger.debug("Initiating the cleanup of obsselete data from datahub")
645+
logger.debug("Initiating the cleanup of obsolete data from datahub")
646646

647647
# get all ingested dataflow and datajob
648648
ingested_dataflow_urns = list(

metadata-ingestion/setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,8 @@ filterwarnings =
7474
ignore::datahub.configuration.pydantic_migration_helpers.PydanticDeprecatedSince20
7575
ignore::datahub.configuration.common.ConfigurationWarning
7676
ignore:The new datahub SDK:datahub.errors.ExperimentalWarning
77+
# We should not be unexpectedly seeing API tracing warnings.
78+
error::datahub.errors.APITracingWarning
7779

7880
[coverage:run]
7981
# Because of some quirks in the way setup.cfg, coverage.py, pytest-cov,

metadata-ingestion/src/datahub/emitter/mce_builder.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,7 @@ def parse_ts_millis(ts: Optional[float]) -> Optional[datetime]:
125125

126126

127127
def make_data_platform_urn(platform: str) -> str:
128-
if platform.startswith("urn:li:dataPlatform:"):
129-
return platform
130-
return DataPlatformUrn.create_from_id(platform).urn()
128+
return DataPlatformUrn(platform).urn()
131129

132130

133131
def make_dataset_urn(platform: str, name: str, env: str = DEFAULT_ENV) -> str:

0 commit comments

Comments
 (0)