mirror of
https://github.com/grafana/grafana.git
synced 2025-01-04 13:17:16 -06:00
1c58202b26
* Replace icons in dashboard and settings * Replace icons in alerting * Update batch of icons * Implement icons accross various files * Style updates * Search: Fix recent and starred icons * Update styling and details * Replace new icon created by unicons * Fix e2e test, styling * Minor styling updates Co-authored-by: Clarity-89 <homes89@ukr.net>
57 lines
1.8 KiB
TypeScript
57 lines
1.8 KiB
TypeScript
import React, { FC } from 'react';
|
|
import { PluginDashboard } from '../../types';
|
|
import { Icon } from '@grafana/ui';
|
|
|
|
export interface Props {
|
|
dashboards: PluginDashboard[];
|
|
onImport: (dashboard: PluginDashboard, overwrite: boolean) => void;
|
|
onRemove: (dashboard: PluginDashboard) => void;
|
|
}
|
|
|
|
const DashboardsTable: FC<Props> = ({ dashboards, onImport, onRemove }) => {
|
|
function buttonText(dashboard: PluginDashboard) {
|
|
return dashboard.revision !== dashboard.importedRevision ? 'Update' : 'Re-import';
|
|
}
|
|
|
|
return (
|
|
<table className="filter-table">
|
|
<tbody>
|
|
{dashboards.map((dashboard, index) => {
|
|
return (
|
|
<tr key={`${dashboard.dashboardId}-${index}`}>
|
|
<td className="width-1">
|
|
<Icon name="apps" />
|
|
</td>
|
|
<td>
|
|
{dashboard.imported ? (
|
|
<a href={dashboard.importedUrl}>{dashboard.title}</a>
|
|
) : (
|
|
<span>{dashboard.title}</span>
|
|
)}
|
|
</td>
|
|
<td style={{ textAlign: 'right' }}>
|
|
{!dashboard.imported ? (
|
|
<button className="btn btn-secondary btn-small" onClick={() => onImport(dashboard, false)}>
|
|
Import
|
|
</button>
|
|
) : (
|
|
<button className="btn btn-secondary btn-small" onClick={() => onImport(dashboard, true)}>
|
|
{buttonText(dashboard)}
|
|
</button>
|
|
)}
|
|
{dashboard.imported && (
|
|
<button className="btn btn-danger btn-small" onClick={() => onRemove(dashboard)}>
|
|
<Icon name="trash-alt" />
|
|
</button>
|
|
)}
|
|
</td>
|
|
</tr>
|
|
);
|
|
})}
|
|
</tbody>
|
|
</table>
|
|
);
|
|
};
|
|
|
|
export default DashboardsTable;
|