💄 Prettier repository

This commit is contained in:
ajnart
2023-07-21 18:08:40 +09:00
parent b40cafc65a
commit 739b95888b
197 changed files with 507 additions and 335 deletions

View File

@@ -24,6 +24,7 @@ import {
IconUpload,
} from '@tabler/icons-react';
import { useTranslation } from 'next-i18next';
import { calculateETA } from '../../tools/client/calculateEta';
import { humanFileSize } from '../../tools/humanFileSize';
import { AppType } from '../../types/app';

View File

@@ -1,6 +1,5 @@
import { NormalizedTorrent, TorrentState } from '@ctrl/shared-torrent';
import { describe, it, expect } from 'vitest';
import { describe, expect, it } from 'vitest';
import { ITorrent, filterTorrents } from './TorrentTile';
@@ -186,7 +185,7 @@ const constructTorrent = (
name: string,
isCompleted: boolean,
downloadSpeed: number,
label?: string,
label?: string
): NormalizedTorrent => ({
id,
name,

View File

@@ -1,5 +1,4 @@
import { NormalizedTorrent } from '@ctrl/shared-torrent';
import {
Badge,
Center,
@@ -13,22 +12,18 @@ import {
Title,
} from '@mantine/core';
import { useElementSize } from '@mantine/hooks';
import { IconFileDownload, IconInfoCircle } from '@tabler/icons-react';
import dayjs from 'dayjs';
import duration from 'dayjs/plugin/duration';
import relativeTime from 'dayjs/plugin/relativeTime';
import { useTranslation } from 'next-i18next';
import { defineWidget } from '../helper';
import { IWidget } from '../widgets';
import { MIN_WIDTH_MOBILE } from '../../constants/constants';
import { AppIntegrationType } from '../../types/app';
import { useGetDownloadClientsQueue } from '../../hooks/widgets/download-speed/useGetNetworkSpeed';
import { NormalizedDownloadQueueResponse } from '../../types/api/downloads/queue/NormalizedDownloadQueueResponse';
import { AppIntegrationType } from '../../types/app';
import { defineWidget } from '../helper';
import { IWidget } from '../widgets';
import { BitTorrrentQueueItem } from './TorrentQueueItem';
dayjs.extend(duration);