mirror of
https://github.com/grafana/grafana.git
synced 2025-02-09 23:16:16 -06:00
56 lines
1.8 KiB
TypeScript
56 lines
1.8 KiB
TypeScript
import React, { SFC } from 'react';
|
|
import { PluginDashboard } from '../../types';
|
|
|
|
export interface Props {
|
|
dashboards: PluginDashboard[];
|
|
onImport: (dashboard, overwrite) => void;
|
|
onRemove: (dashboard) => void;
|
|
}
|
|
|
|
const DashboardsTable: SFC<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">
|
|
<i className="icon-gf icon-gf-dashboard" />
|
|
</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)}>
|
|
<i className="fa fa-trash" />
|
|
</button>
|
|
)}
|
|
</td>
|
|
</tr>
|
|
);
|
|
})}
|
|
</tbody>
|
|
</table>
|
|
);
|
|
};
|
|
|
|
export default DashboardsTable;
|