mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
* Update TeamSettings.tsx * Update navModel.ts * Update ChangePasswordForm.tsx * Update UserProfileEditForm.tsx * Update DashboardImportPage.tsx * Update uploadDashboardDirective.ts * Update ImportDashboardForm.tsx * Update ImportDashboardOverview.tsx * Update validation.ts * Update PlaylistEditPage.tsx * ui text edits * text edits * Update buildCategories.ts * text edits * text edits * Fix formatting * Update test snapshots Co-authored-by: dsotirakis <sotirakis.dim@gmail.com>
44 lines
1.0 KiB
TypeScript
44 lines
1.0 KiB
TypeScript
import React, { FC } from 'react';
|
|
|
|
import { PlaylistTableRow } from './PlaylistTableRow';
|
|
import { PlaylistItem } from './types';
|
|
|
|
interface PlaylistTableRowsProps {
|
|
items: PlaylistItem[];
|
|
onMoveUp: (item: PlaylistItem) => void;
|
|
onMoveDown: (item: PlaylistItem) => void;
|
|
onDelete: (item: PlaylistItem) => void;
|
|
}
|
|
|
|
export const PlaylistTableRows: FC<PlaylistTableRowsProps> = ({ items, onMoveUp, onMoveDown, onDelete }) => {
|
|
if (items.length === 0) {
|
|
return (
|
|
<tr>
|
|
<td>
|
|
<em>Playlist is empty. Add dashboards below.</em>
|
|
</td>
|
|
</tr>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<>
|
|
{items.map((item, index) => {
|
|
const first = index === 0;
|
|
const last = index === items.length - 1;
|
|
return (
|
|
<PlaylistTableRow
|
|
first={first}
|
|
last={last}
|
|
item={item}
|
|
onDelete={onDelete}
|
|
onMoveDown={onMoveDown}
|
|
onMoveUp={onMoveUp}
|
|
key={item.title}
|
|
/>
|
|
);
|
|
})}
|
|
</>
|
|
);
|
|
};
|