fix: dont cross import SyncStatus type

This commit is contained in:
sct
2020-10-30 14:48:10 +00:00
parent 0b239f0bdf
commit e032e385a5
2 changed files with 15 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ const imdbRegex = new RegExp(/imdb:\/\/(tt[0-9]+)/);
const tmdbRegex = new RegExp(/tmdb:\/\/([0-9]+)/);
const plexRegex = new RegExp(/plex:\/\//);
export interface SyncStatus {
interface SyncStatus {
running: boolean;
progress: number;
total: number;

View File

@@ -1,7 +1,6 @@
import React, { useState } from 'react';
import LoadingSpinner from '../Common/LoadingSpinner';
import type { PlexSettings } from '../../../server/lib/settings';
import type { SyncStatus } from '../../../server/job/plexsync';
import useSWR from 'swr';
import { useFormik } from 'formik';
import Button from '../Common/Button';
@@ -35,6 +34,20 @@ const messages = defineMessages({
cancelscan: 'Cancel Scan',
});
interface Library {
id: string;
name: string;
enabled: boolean;
}
interface SyncStatus {
running: boolean;
progress: number;
total: number;
currentLibrary: Library;
libraries: Library[];
}
const SettingsPlex: React.FC = () => {
const intl = useIntl();
const { data, error, revalidate } = useSWR<PlexSettings>(