Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix ui freezing due to images in feed changes #17703

Merged
merged 7 commits into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
import { Typography } from 'antd';
import { isEmpty } from 'lodash';
import React, { ReactNode, useEffect, useState } from 'react';
import React, { ReactNode, useEffect, useMemo, useState } from 'react';
import { ReactComponent as FeedEmptyIcon } from '../../../assets/svg/activity-feed-no-data-placeholder.svg';
import ErrorPlaceHolder from '../../../components/common/ErrorWithPlaceholder/ErrorPlaceHolder';
import { ERROR_PLACEHOLDER_TYPE, SIZE } from '../../../enums/common.enum';
Expand Down Expand Up @@ -68,28 +68,9 @@ const ActivityFeedListV1 = ({
}
}, [entityThread, selectedThread, onFeedClick]);

if (isLoading) {
return <Loader />;
}

return isEmpty(entityThread) ? (
<div
className="h-full p-x-md"
data-testid="no-data-placeholder-container"
id="feedData">
<ErrorPlaceHolder
icon={<FeedEmptyIcon height={SIZE.X_SMALL} width={SIZE.X_SMALL} />}
type={ERROR_PLACEHOLDER_TYPE.CUSTOM}>
<Typography.Paragraph
className="tw-max-w-md"
style={{ marginBottom: '0' }}>
{emptyPlaceholderText}
</Typography.Paragraph>
</ErrorPlaceHolder>
</div>
) : (
<div className="feed-list-container p-md" id="feedData">
{entityThread.map((feed) => (
const feeds = useMemo(
() =>
entityThread.map((feed) => (
<FeedPanelBodyV1
componentsVisibility={componentsVisibility}
feed={feed}
Expand All @@ -100,7 +81,43 @@ const ActivityFeedListV1 = ({
showThread={showThread}
onFeedClick={onFeedClick}
/>
))}
)),
[
entityThread,
activeFeedId,
componentsVisibility,
hidePopover,
isForFeedTab,
showThread,
]
);

if (isLoading) {
return <Loader />;
}

if (isEmpty(entityThread)) {
return (
<div
className="h-full p-x-md"
data-testid="no-data-placeholder-container"
id="feedData">
<ErrorPlaceHolder
icon={<FeedEmptyIcon height={SIZE.X_SMALL} width={SIZE.X_SMALL} />}
type={ERROR_PLACEHOLDER_TYPE.CUSTOM}>
<Typography.Paragraph
className="tw-max-w-md"
style={{ marginBottom: '0' }}>
{emptyPlaceholderText}
</Typography.Paragraph>
</ErrorPlaceHolder>
</div>
);
}

return (
<div className="feed-list-container p-md" id="feedData">
{feeds}
</div>
);
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ import {
ActivityFeedTabs,
} from './ActivityFeedTab.interface';

const componentsVisibility = {
showThreadIcon: false,
showRepliesContainer: true,
};

export const ActivityFeedTab = ({
fqn,
owners = [],
Expand Down Expand Up @@ -429,10 +434,7 @@ export const ActivityFeedTab = ({
<ActivityFeedListV1
hidePopover
activeFeedId={selectedThread?.id}
componentsVisibility={{
showThreadIcon: false,
showRepliesContainer: true,
}}
componentsVisibility={componentsVisibility}
emptyPlaceholderText={placeholderText}
feedList={entityThread}
isForFeedTab={isForFeedTab}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,21 @@ const FeedsWidget = ({
!isUndefined(handleRemoveWidget) && handleRemoveWidget(widgetKey);
}, [widgetKey]);

const emptyPlaceholderText = useMemo(
() => (
<Transi18next
i18nKey="message.no-activity-feed"
renderElement={
<Link rel="noreferrer" to={{ pathname: ROUTES.EXPLORE }} />
}
values={{
explored: t('message.have-not-explored-yet'),
}}
/>
),
[]
);

return (
<div
className="feeds-widget-container h-full"
Expand All @@ -189,20 +204,7 @@ const FeedsWidget = ({
children: (
<>
<ActivityFeedListV1
emptyPlaceholderText={
<Transi18next
i18nKey="message.no-activity-feed"
renderElement={
<Link
rel="noreferrer"
to={{ pathname: ROUTES.EXPLORE }}
/>
}
values={{
explored: t('message.have-not-explored-yet'),
}}
/>
}
emptyPlaceholderText={emptyPlaceholderText}
feedList={isTourOpen ? mockFeedData : threads}
hidePopover={isEditView}
isLoading={loading && !isTourOpen}
Expand Down
3 changes: 3 additions & 0 deletions openmetadata-ui/src/main/resources/ui/src/styles/app.less
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,9 @@ a[href].link-text-grey,
.text-underline {
text-decoration: underline;
}
.text-line-through {
text-decoration: line-through;
}

// image property

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,33 +137,31 @@ export const getDiffValue = (oldValue: string, newValue: string) => {

export const getAddedDiffElement = (text: string) => {
return (
<Typography.Text
underline
className="diff-added"
<span
className="diff-added text-underline"
data-testid="diff-added"
key={uniqueId()}>
{text}
</Typography.Text>
</span>
);
};

export const getRemovedDiffElement = (text: string) => {
return (
<Typography.Text
delete
className="text-grey-muted"
<span
Ashish8689 marked this conversation as resolved.
Show resolved Hide resolved
className="text-grey-muted text-line-through"
data-testid="diff-removed"
key={uniqueId()}>
{text}
</Typography.Text>
</span>
);
};

export const getNormalDiffElement = (text: string) => {
return (
<Typography.Text data-testid="diff-normal" key={uniqueId()}>
<span data-testid="diff-normal" key={uniqueId()}>
{text}
</Typography.Text>
</span>
);
};

Expand All @@ -172,10 +170,18 @@ export const getTextDiff = (
newText: string,
latestText?: string
) => {
const imagePlaceholder = 'data:image';
if (isEmpty(oldText) && isEmpty(newText)) {
return latestText ?? '';
}

if (
newText.includes(imagePlaceholder) ||
oldText.includes(imagePlaceholder)
) {
return newText;
}

const diffArr = diffWords(toString(oldText), toString(newText));

const result = diffArr.map((diff) => {
Expand Down
Loading