mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 12:14:08 -06:00
8232b6ebbc
* Fixes under public/app/plugins * Fixes under public/app/plugins/datasource * Fixes under public/app/features * Fixes under public/app/features * Fixes under public/app/features * Fixes under public/app/components * Fix PanelNotSupported test * Fix one more warning * Fix warning in usePanelSave * Fix traceview empty response * Azure monitor fixes * More fixes * Fix tests for azure monitor * Fixes after merging master * Add comment for disabled rules * Fixes after merging master * Fixes after merging master * Adress review comments * Fix azure tests * Address review feedbacks
24 lines
640 B
TypeScript
24 lines
640 B
TypeScript
import { useEffect, useState } from 'react';
|
|
import { Playlist } from './types';
|
|
import { getPlaylist } from './api';
|
|
|
|
export function usePlaylist(playlistId?: number) {
|
|
const [playlist, setPlaylist] = useState<Playlist>({ items: [], interval: '5m', name: '' });
|
|
const [loading, setLoading] = useState<boolean>(true);
|
|
|
|
useEffect(() => {
|
|
const initPlaylist = async () => {
|
|
if (!playlistId) {
|
|
setLoading(false);
|
|
return;
|
|
}
|
|
const list = await getPlaylist(playlistId);
|
|
setPlaylist(list);
|
|
setLoading(false);
|
|
};
|
|
initPlaylist();
|
|
}, [playlistId]);
|
|
|
|
return { playlist, loading };
|
|
}
|