Skip to content
Open
Show file tree
Hide file tree
Changes from all 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 @@ -38,7 +38,9 @@ const KanbanIssueBlockLoader = forwardRef(function KanbanIssueBlockLoader(
props: Record<string, unknown>,
ref: React.ForwardedRef<HTMLSpanElement>
) {
return <span ref={ref} className="block h-28 m-1.5 animate-pulse bg-layer-1 rounded-sm" />;
return (
<span ref={ref} className="block h-28 m-1.5 animate-pulse bg-[var(--illustration-fill-quaternary)] rounded-sm" />
);
});
KanbanIssueBlockLoader.displayName = "KanbanIssueBlockLoader";

Expand Down Expand Up @@ -113,7 +115,17 @@ export const KanbanGroup = observer(function KanbanGroup(props: IKanbanGroup) {
scrollableContainerRef={scrollableContainerRef}
/>

{shouldLoadMore && (isSubGroup ? <>{loadMore}</> : <KanbanIssueBlockLoader ref={setIntersectionElement} />)}
{shouldLoadMore &&
(isSubGroup ? (
<>{loadMore}</>
) : (
<div className="flex flex-col gap-2">
{Array.from({ length: 2 }).map((_, index) => (
<KanbanIssueBlockLoader key={index} />
))}
<KanbanIssueBlockLoader ref={setIntersectionElement} />
</div>
))}
</div>
);
});
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,17 @@ export const KanbanGroup = observer(function KanbanGroup(props: IKanbanGroup) {
isEpic={isEpic}
/>

{shouldLoadMore && (isSubGroup ? <>{loadMore}</> : <KanbanIssueBlockLoader ref={setIntersectionElement} />)}
{shouldLoadMore &&
(isSubGroup ? (
<>{loadMore}</>
) : (
<div className="flex flex-col gap-2">
{Array.from({ length: 2 }).map((_, index) => (
<KanbanIssueBlockLoader key={index} />
))}
<KanbanIssueBlockLoader ref={setIntersectionElement} />
</div>
))}

{enableQuickIssueCreate &&
!disableIssueCreation &&
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,17 @@ export const ListGroup = observer(function ListGroup(props: Props) {
/>
)}

{shouldLoadMore && (group_by ? <>{loadMore}</> : <ListLoaderItemRow ref={setIntersectionElement} />)}
{shouldLoadMore &&
(group_by ? (
<>{loadMore}</>
) : (
<>
{Array.from({ length: 2 }).map((_, index) => (
<ListLoaderItemRow key={index} />
))}
<ListLoaderItemRow ref={setIntersectionElement} />
</>
))}

{enableIssueQuickAdd &&
!disableIssueCreation &&
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,9 @@ export const SpreadsheetTable = observer(function SpreadsheetTable(props: Props)
</tbody>
{canLoadMoreIssues && (
<tfoot ref={setIntersectionElement}>
<SpreadsheetIssueRowLoader columnCount={displayPropertiesCount} />
{Array.from({ length: 3 }).map((_, index) => (
<SpreadsheetIssueRowLoader key={index} columnCount={displayPropertiesCount} />
))}
</tfoot>
)}
</table>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const KanbanIssueBlockLoader = forwardRef(function KanbanIssueBlockLoader
return (
<span
ref={ref}
className={cn(`block bg-layer-1 rounded-sm`, { " animate-pulse": shouldAnimate })}
className={cn(`block bg-[var(--illustration-fill-secondary)] rounded-sm`, { " animate-pulse": shouldAnimate })}
style={{ height: `${cardHeight}px` }}
/>
);
Expand Down
21 changes: 12 additions & 9 deletions apps/web/core/components/ui/loader/layouts/list-layout-loader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,26 @@ export const ListLoaderItemRow = forwardRef(function ListLoaderItemRow(
return (
<Row
ref={ref}
className={cn("flex items-center justify-between h-11 py-3 ", {
className={cn("flex items-center justify-between h-11 py-3", {
"bg-surface-1": renderForPlaceHolder,
"border-b border-subtle": !renderForPlaceHolder,
"border-t border-subtle": !renderForPlaceHolder,
})}
>
<div className="flex items-center gap-3">
<span
className={cn("h-5 w-10 bg-layer-1 rounded-sm", {
className={cn("h-5 w-10 bg-[var(--illustration-fill-tertiary)] rounded-sm", {
"animate-pulse": shouldAnimate,
"bg-surface-2": renderForPlaceHolder,
})}
/>
<span
className={cn(`h-5 w-${getRandomLength(["32", "52", "72"])} bg-layer-1 rounded-sm`, {
"animate-pulse": shouldAnimate,
"bg-surface-2": renderForPlaceHolder,
})}
className={cn(
`h-5 w-${getRandomLength(["32", "52", "72"])} bg-[var(--illustration-fill-tertiary)] rounded-sm`,
{
"animate-pulse": shouldAnimate,
"bg-surface-2": renderForPlaceHolder,
}
)}
/>
</div>
<div className="flex items-center gap-2">
Expand All @@ -42,14 +45,14 @@ export const ListLoaderItemRow = forwardRef(function ListLoaderItemRow(
{getRandomInt(1, 2) % 2 === 0 ? (
<span
key={index}
className={cn("h-5 w-5 bg-layer-1 rounded-sm", {
className={cn("h-5 w-5 bg-[var(--illustration-fill-tertiary)] rounded-sm", {
"animate-pulse": shouldAnimate,
"bg-surface-2": renderForPlaceHolder,
})}
/>
) : (
<span
className={cn("h-5 w-16 bg-layer-1 rounded-sm", {
className={cn("h-5 w-16 bg-[var(--illustration-fill-tertiary)] rounded-sm", {
"animate-pulse": shouldAnimate,
"bg-surface-2": renderForPlaceHolder,
})}
Expand Down
Loading