import { useState } from 'react'; import { Dialog } from 'primereact/dialog'; import { Button } from 'primereact/button'; import { Tag } from 'primereact/tag'; import blurayIndicatorIcon from '../assets/media-bluray.svg'; import discIndicatorIcon from '../assets/media-disc.svg'; import otherIndicatorIcon from '../assets/media-other.svg'; import { getProcessStatusLabel, getStatusLabel } from '../utils/statusPresentation'; import { isSeriesDvdJob } from '../utils/jobTaxonomy'; const CD_FORMAT_LABELS = { flac: 'FLAC', wav: 'WAV', mp3: 'MP3', opus: 'Opus', ogg: 'Ogg Vorbis' }; function JsonView({ title, value }) { return (
{value ? JSON.stringify(value, null, 2) : '-'}