Migrate to lingui
Switch to "lingui" for better DX. Tried to persist existing languages as much as possible. Removed "vite-plugin-node-polyfills" because it's incompatible with "lingui"
This commit is contained in:
@@ -6,8 +6,9 @@
|
||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
import { MessageDescriptor } from '@lingui/core';
|
||||
import { msg } from '@lingui/core/macro';
|
||||
import { ChapterAction, ChapterListOptions, ChapterSortMode } from '@/features/chapter/Chapter.types.ts';
|
||||
import { TranslationKey } from '@/base/Base.types.ts';
|
||||
|
||||
export const FALLBACK_CHAPTER = { id: -1, name: '', realUrl: '', isDownloaded: false, isBookmarked: false };
|
||||
|
||||
@@ -21,11 +22,11 @@ export const DEFAULT_CHAPTER_OPTIONS: ChapterListOptions = {
|
||||
excludedScanlators: [],
|
||||
};
|
||||
|
||||
export const CHAPTER_SORT_OPTIONS_TO_TRANSLATION_KEY: Record<ChapterSortMode, TranslationKey> = {
|
||||
source: 'global.sort.label.by_source',
|
||||
chapterNumber: 'global.sort.label.by_chapter_number',
|
||||
uploadedAt: 'global.sort.label.by_upload_date',
|
||||
fetchedAt: 'global.sort.label.by_fetch_date',
|
||||
export const CHAPTER_SORT_OPTIONS_TO_TRANSLATION: Record<ChapterSortMode, MessageDescriptor> = {
|
||||
source: msg`By source`,
|
||||
chapterNumber: msg`By chapter number`,
|
||||
uploadedAt: msg`By upload date`,
|
||||
fetchedAt: msg`By date fetched`,
|
||||
};
|
||||
|
||||
export const CHAPTER_ACTION_TO_CONFIRMATION_REQUIRED: Record<
|
||||
@@ -43,65 +44,65 @@ export const CHAPTER_ACTION_TO_CONFIRMATION_REQUIRED: Record<
|
||||
export const CHAPTER_ACTION_TO_TRANSLATION: {
|
||||
[key in ChapterAction]: {
|
||||
action: {
|
||||
single: TranslationKey;
|
||||
selected: TranslationKey;
|
||||
single: MessageDescriptor;
|
||||
selected: MessageDescriptor;
|
||||
};
|
||||
confirmation?: TranslationKey;
|
||||
success: TranslationKey;
|
||||
error: TranslationKey;
|
||||
confirmation?: MessageDescriptor;
|
||||
success: MessageDescriptor;
|
||||
error: MessageDescriptor;
|
||||
};
|
||||
} = {
|
||||
download: {
|
||||
action: {
|
||||
single: 'chapter.action.download.add.label.action',
|
||||
selected: 'chapter.action.download.add.button.selected',
|
||||
single: msg`Download`,
|
||||
selected: msg`Download selected`,
|
||||
},
|
||||
confirmation: 'chapter.action.download.add.label.confirmation',
|
||||
success: 'chapter.action.download.add.label.success',
|
||||
error: 'chapter.action.download.add.label.error',
|
||||
confirmation: msg`{count, plural, one {You are about to download one chapter} other {You are about to download # chapters.\nSuwayomi is not a mass downloader and too many downloads can get you banned from sources and/or cause performance issues.}}`,
|
||||
success: msg`{count, plural, one {Download added} other {# downloads added}}`,
|
||||
error: msg`{count, plural, one {Could not add the download} other {Could not add downloads}}`,
|
||||
},
|
||||
delete: {
|
||||
action: {
|
||||
single: 'chapter.action.download.delete.label.action',
|
||||
selected: 'chapter.action.download.delete.button.selected',
|
||||
single: msg`Delete`,
|
||||
selected: msg`Delete selected`,
|
||||
},
|
||||
confirmation: 'chapter.action.download.delete.label.confirmation',
|
||||
success: 'chapter.action.download.delete.label.success',
|
||||
error: 'chapter.action.download.delete.label.error',
|
||||
confirmation: msg`{count, plural, one {You are about to delete one download} other {You are about to delete # downloads}}`,
|
||||
success: msg`{count, plural, one {Chapter deleted} other {# chapters deleted}}`,
|
||||
error: msg`{count, plural, one {Could not delete the chapter} other {Could not delete chapters}}`,
|
||||
},
|
||||
bookmark: {
|
||||
action: {
|
||||
single: 'chapter.action.bookmark.add.label.action',
|
||||
selected: 'chapter.action.bookmark.add.button.selected',
|
||||
single: msg`Add bookmark`,
|
||||
selected: msg`Bookmark selected`,
|
||||
},
|
||||
success: 'chapter.action.bookmark.add.label.success',
|
||||
error: 'chapter.action.bookmark.add.label.error',
|
||||
success: msg`{count, plural, one {Chapter bookmarked} other {# chapters bookmarked}}`,
|
||||
error: msg`{count, plural, one {Could not bookmark the chapter} other {Could not bookmark chapters}}`,
|
||||
},
|
||||
unbookmark: {
|
||||
action: {
|
||||
single: 'chapter.action.bookmark.remove.label.action',
|
||||
selected: 'chapter.action.bookmark.remove.button.selected',
|
||||
single: msg`Remove bookmark`,
|
||||
selected: msg`Remove bookmarks from selected`,
|
||||
},
|
||||
confirmation: 'chapter.action.bookmark.remove.label.confirmation',
|
||||
success: 'chapter.action.bookmark.remove.label.success',
|
||||
error: 'chapter.action.bookmark.remove.label.error',
|
||||
confirmation: msg`{count, plural, one {You are about to remove one bookmark} other {You are about to remove # bookmarks}}`,
|
||||
success: msg`{count, plural, one {Chapter bookmark removed} other {# chapter bookmarks removed}}`,
|
||||
error: msg`{count, plural, one {Could not remove the bookmark} other {Could not remove the bookmarks}}`,
|
||||
},
|
||||
mark_as_read: {
|
||||
action: {
|
||||
single: 'chapter.action.mark_as_read.add.label.action.current',
|
||||
selected: 'chapter.action.mark_as_read.add.button.selected',
|
||||
single: msg`Mark as read`,
|
||||
selected: msg`Mark selected as read`,
|
||||
},
|
||||
confirmation: 'chapter.action.mark_as_read.add.label.confirmation',
|
||||
success: 'chapter.action.mark_as_read.add.label.success',
|
||||
error: 'chapter.action.mark_as_read.add.label.error',
|
||||
confirmation: msg`{count, plural, one {You are about to mark one chapter as read} other {You are about to mark # chapters as read}}`,
|
||||
success: msg`{count, plural, one {Chapter marked as read} other {# chapters marked as read}}`,
|
||||
error: msg`{count, plural, one {Could not mark the chapter as read} other {Could not mark chapters as read}}`,
|
||||
},
|
||||
mark_as_unread: {
|
||||
action: {
|
||||
single: 'chapter.action.mark_as_read.remove.label.action',
|
||||
selected: 'chapter.action.mark_as_read.remove.button.selected',
|
||||
single: msg`Mark as unread`,
|
||||
selected: msg`Mark selected as unread`,
|
||||
},
|
||||
confirmation: 'chapter.action.mark_as_read.remove.label.confirmation',
|
||||
success: 'chapter.action.mark_as_read.remove.label.success',
|
||||
error: 'chapter.action.mark_as_read.remove.label.error',
|
||||
confirmation: msg`{count, plural, one {You are about to mark one chapter as unread} other {You are about to mark # chapters as unread}}`,
|
||||
success: msg`{count, plural, one {Chapter marked as unread} other {# chapters marked as unread}}`,
|
||||
error: msg`{count, plural, one {Could not mark the chapter as unread} other {Could not mark chapters as unread}}`,
|
||||
},
|
||||
};
|
||||
|
||||
@@ -7,9 +7,9 @@
|
||||
*/
|
||||
|
||||
import { bindTrigger, usePopupState } from 'material-ui-popup-state/hooks';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import PeopleAltOutlinedIcon from '@mui/icons-material/PeopleAltOutlined';
|
||||
import DisabledByDefaultRounded from '@mui/icons-material/DisabledByDefaultRounded';
|
||||
import { useLingui } from '@lingui/react/macro';
|
||||
import { CheckboxListSetting } from '@/base/components/settings/CheckboxListSetting.tsx';
|
||||
import { updateChapterListOptions } from '@/features/chapter/utils/ChapterList.util.tsx';
|
||||
import { CheckboxInput } from '@/base/components/inputs/CheckboxInput.tsx';
|
||||
@@ -23,7 +23,7 @@ export const ChapterExcludeSanlatorsFilter = ({
|
||||
scanlators: string[];
|
||||
excludedScanlators: string[];
|
||||
}) => {
|
||||
const { t } = useTranslation();
|
||||
const { t } = useLingui();
|
||||
const popupState = usePopupState({ variant: 'dialog', popupId: 'chapter-list-options-scanlator-filter-dialog' });
|
||||
|
||||
if (!scanlators.length) {
|
||||
@@ -34,13 +34,13 @@ export const ChapterExcludeSanlatorsFilter = ({
|
||||
<>
|
||||
<CheckboxInput
|
||||
{...bindTrigger(popupState)}
|
||||
label={t('global.label.scanlator')}
|
||||
label={t`Scanlator`}
|
||||
icon={<PeopleAltOutlinedIcon />}
|
||||
checkedIcon={<PeopleAltOutlinedIcon color="warning" />}
|
||||
checked={!!excludedScanlators.length}
|
||||
/>
|
||||
<CheckboxListSetting
|
||||
title={t('chapter.option.exclude_scanlators')}
|
||||
title={t`Exclude scanlators`}
|
||||
open={popupState.isOpen}
|
||||
onClose={(selectedScanlators) => {
|
||||
if (selectedScanlators) {
|
||||
|
||||
@@ -11,7 +11,8 @@ import Stack from '@mui/material/Stack';
|
||||
import { styled } from '@mui/material/styles';
|
||||
import Typography from '@mui/material/Typography';
|
||||
import { ComponentProps, useCallback, useMemo, useState } from 'react';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import { useLingui } from '@lingui/react/macro';
|
||||
import { plural } from '@lingui/core/macro';
|
||||
import { requestManager } from '@/lib/requests/RequestManager.ts';
|
||||
import { ResumeFab } from '@/features/manga/components/ResumeFAB.tsx';
|
||||
import {
|
||||
@@ -82,7 +83,7 @@ const ChapterListFAB = ({
|
||||
}) => {
|
||||
if (selectedChapters.length) {
|
||||
return (
|
||||
<SelectionFAB selectedItemsCount={selectedChapters.length} title="chapter.title_one">
|
||||
<SelectionFAB title={plural(selectedChapters.length, { one: '# chapter', other: '# chapters' })}>
|
||||
{(handleClose) => (
|
||||
<ChapterActionMenuItems
|
||||
selectedChapters={selectedChapters}
|
||||
@@ -110,7 +111,7 @@ export const ChapterList = ({
|
||||
manga: Pick<MangaScreenFieldsFragment, 'id' | 'firstUnreadChapter' | 'chapters' | 'unreadCount' | 'downloadCount'>;
|
||||
isRefreshing: boolean;
|
||||
}) => {
|
||||
const { t } = useTranslation();
|
||||
const { t } = useLingui();
|
||||
const { appBarHeight } = useNavBarContext();
|
||||
|
||||
const isMobileWidth = MediaQuery.useIsBelowWidth('md');
|
||||
@@ -126,7 +127,7 @@ export const ChapterList = ({
|
||||
|
||||
const options = useChapterListOptions(manga);
|
||||
const updateOption = updateChapterListOptions(manga, (e) =>
|
||||
makeToast(t('global.error.label.failed_to_save_changes'), 'error', getErrorMessage(e)),
|
||||
makeToast(t`Failed to save changes`, 'error', getErrorMessage(e)),
|
||||
);
|
||||
const {
|
||||
data: chaptersData,
|
||||
@@ -173,7 +174,7 @@ export const ChapterList = ({
|
||||
return (
|
||||
<Stack sx={{ justifyContent: 'center', position: 'relative', flexGrow: 1 }}>
|
||||
<EmptyViewAbsoluteCentered
|
||||
message={t('global.error.label.failed_to_load_data')}
|
||||
message={t`Unable to load data`}
|
||||
messageExtra={getErrorMessage(error)}
|
||||
retry={() => refetch().catch(defaultPromiseErrorHandler('ChapterList::refetch'))}
|
||||
/>
|
||||
@@ -193,13 +194,17 @@ export const ChapterList = ({
|
||||
>
|
||||
<Stack>
|
||||
<Typography variant="h5" component="h3">
|
||||
{t('chapter.value', { count: visibleChapters.length })}
|
||||
{plural(visibleChapters.length, {
|
||||
one: '# chapter',
|
||||
other: '# chapters',
|
||||
})}
|
||||
</Typography>
|
||||
{!!missingChapterCount && (
|
||||
<Typography variant="body2" color="warning">
|
||||
{`${t('chapter.missing', {
|
||||
count: missingChapterCount,
|
||||
})}`}
|
||||
{plural(missingChapterCount, {
|
||||
one: 'Missing # chapter',
|
||||
other: 'Missing # chapters',
|
||||
})}
|
||||
</Typography>
|
||||
)}
|
||||
</Stack>
|
||||
@@ -225,10 +230,8 @@ export const ChapterList = ({
|
||||
</Stack>
|
||||
</ChapterListHeader>
|
||||
|
||||
{noChaptersFound && <EmptyViewAbsoluteCentered message={t('chapter.error.label.no_chapter_found')} />}
|
||||
{noChaptersMatchingFilter && (
|
||||
<EmptyViewAbsoluteCentered message={t('chapter.error.label.no_matches')} />
|
||||
)}
|
||||
{noChaptersFound && <EmptyViewAbsoluteCentered message={t`No chapters found`} />}
|
||||
{noChaptersMatchingFilter && <EmptyViewAbsoluteCentered message={t`No chapters matching filter`} />}
|
||||
|
||||
<StyledVirtuoso
|
||||
persistKey={`manga-${manga.id}-chapter-list`}
|
||||
|
||||
@@ -6,18 +6,19 @@
|
||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
import { MessageDescriptor } from '@lingui/core';
|
||||
import RadioGroup from '@mui/material/RadioGroup';
|
||||
import React from 'react';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import { useLingui } from '@lingui/react/macro';
|
||||
import { msg } from '@lingui/core/macro';
|
||||
import { RadioInput } from '@/base/components/inputs/RadioInput.tsx';
|
||||
import { SortRadioInput } from '@/base/components/inputs/SortRadioInput.tsx';
|
||||
import { ThreeStateCheckboxInput } from '@/base/components/inputs/ThreeStateCheckboxInput.tsx';
|
||||
import { OptionsTabs } from '@/base/components/modals/OptionsTabs.tsx';
|
||||
import { CHAPTER_SORT_OPTIONS_TO_TRANSLATION_KEY } from '@/features/chapter/Chapter.constants.ts';
|
||||
import { CHAPTER_SORT_OPTIONS_TO_TRANSLATION } from '@/features/chapter/Chapter.constants.ts';
|
||||
import { ChapterListOptions } from '@/features/chapter/Chapter.types.ts';
|
||||
import { updateChapterListOptions } from '@/features/chapter/utils/ChapterList.util.tsx';
|
||||
import { ChapterExcludeSanlatorsFilter } from '@/features/chapter/components/ChapterExcludeSanlatorsFilter.tsx';
|
||||
import { TranslationKey } from '@/base/Base.types.ts';
|
||||
|
||||
interface IProps {
|
||||
open: boolean;
|
||||
@@ -28,10 +29,10 @@ interface IProps {
|
||||
excludedScanlators: string[];
|
||||
}
|
||||
|
||||
const TITLES: { [key in 'filter' | 'sort' | 'display']: TranslationKey } = {
|
||||
filter: 'global.label.filter',
|
||||
sort: 'global.label.sort',
|
||||
display: 'global.label.display',
|
||||
const TITLES: { [key in 'filter' | 'sort' | 'display']: MessageDescriptor } = {
|
||||
filter: msg`Filter`,
|
||||
sort: msg`Sort`,
|
||||
display: msg`Display`,
|
||||
};
|
||||
|
||||
export const ChapterOptions: React.FC<IProps> = ({
|
||||
@@ -42,7 +43,7 @@ export const ChapterOptions: React.FC<IProps> = ({
|
||||
scanlators,
|
||||
excludedScanlators,
|
||||
}) => {
|
||||
const { t } = useTranslation();
|
||||
const { t } = useLingui();
|
||||
|
||||
return (
|
||||
<OptionsTabs<'filter' | 'sort' | 'display'>
|
||||
@@ -56,17 +57,17 @@ export const ChapterOptions: React.FC<IProps> = ({
|
||||
return (
|
||||
<>
|
||||
<ThreeStateCheckboxInput
|
||||
label={t('global.filter.label.unread')}
|
||||
label={t`Unread`}
|
||||
checked={options.unread}
|
||||
onChange={(c) => updateOption('unread', c)}
|
||||
/>
|
||||
<ThreeStateCheckboxInput
|
||||
label={t('global.filter.label.downloaded')}
|
||||
label={t`Downloaded`}
|
||||
checked={options.downloaded}
|
||||
onChange={(c) => updateOption('downloaded', c)}
|
||||
/>
|
||||
<ThreeStateCheckboxInput
|
||||
label={t('global.filter.label.bookmarked')}
|
||||
label={t`Bookmarked`}
|
||||
checked={options.bookmarked}
|
||||
onChange={(c) => updateOption('bookmarked', c)}
|
||||
/>
|
||||
@@ -79,7 +80,7 @@ export const ChapterOptions: React.FC<IProps> = ({
|
||||
);
|
||||
}
|
||||
if (key === 'sort') {
|
||||
return Object.entries(CHAPTER_SORT_OPTIONS_TO_TRANSLATION_KEY).map(([mode, label]) => (
|
||||
return Object.entries(CHAPTER_SORT_OPTIONS_TO_TRANSLATION).map(([mode, label]) => (
|
||||
<SortRadioInput
|
||||
key={mode}
|
||||
label={t(label)}
|
||||
@@ -87,10 +88,7 @@ export const ChapterOptions: React.FC<IProps> = ({
|
||||
sortDescending={options.reverse}
|
||||
onClick={() =>
|
||||
mode !== options.sortBy
|
||||
? updateOption(
|
||||
'sortBy',
|
||||
mode as keyof typeof CHAPTER_SORT_OPTIONS_TO_TRANSLATION_KEY,
|
||||
)
|
||||
? updateOption('sortBy', mode as keyof typeof CHAPTER_SORT_OPTIONS_TO_TRANSLATION)
|
||||
: updateOption('reverse', !options.reverse)
|
||||
}
|
||||
/>
|
||||
@@ -102,8 +100,8 @@ export const ChapterOptions: React.FC<IProps> = ({
|
||||
onChange={() => updateOption('showChapterNumber', !options.showChapterNumber)}
|
||||
value={options.showChapterNumber}
|
||||
>
|
||||
<RadioInput label={t('chapter.option.display.label.source_title')} value={false} />
|
||||
<RadioInput label={t('chapter.option.display.label.chapter_number')} value />
|
||||
<RadioInput label={t`Source title`} value={false} />
|
||||
<RadioInput label={t`Chapter number`} value />
|
||||
</RadioGroup>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -9,12 +9,12 @@
|
||||
import FilterList from '@mui/icons-material/FilterList';
|
||||
import IconButton from '@mui/material/IconButton';
|
||||
import * as React from 'react';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import PopupState, { bindMenu, bindTrigger } from 'material-ui-popup-state';
|
||||
import Menu from '@mui/material/Menu';
|
||||
import DownloadIcon from '@mui/icons-material/Download';
|
||||
import DoneAllIcon from '@mui/icons-material/DoneAll';
|
||||
import { useMemo } from 'react';
|
||||
import { useLingui } from '@lingui/react/macro';
|
||||
import { CustomTooltip } from '@/base/components/CustomTooltip.tsx';
|
||||
import { ChapterOptions } from '@/features/chapter/components/ChapterOptions.tsx';
|
||||
import { isFilterActive, updateChapterListOptions } from '@/features/chapter/utils/ChapterList.util.tsx';
|
||||
@@ -45,7 +45,7 @@ export const ChaptersToolbarMenu = ({
|
||||
scanlators,
|
||||
excludeScanlators,
|
||||
}: IProps) => {
|
||||
const { t } = useTranslation();
|
||||
const { t } = useLingui();
|
||||
|
||||
const [open, setOpen] = React.useState(false);
|
||||
const isFiltered = isFilterActive(options);
|
||||
@@ -55,7 +55,7 @@ export const ChaptersToolbarMenu = ({
|
||||
|
||||
return (
|
||||
<>
|
||||
<CustomTooltip title={t('chapter.action.mark_as_read.add.label.action.all')} disabled={areAllChaptersRead}>
|
||||
<CustomTooltip title={t`Mark all as read`} disabled={areAllChaptersRead}>
|
||||
<IconButton
|
||||
disabled={areAllChaptersRead}
|
||||
onClick={() => Chapters.markAsRead(Chapters.getNonRead(chapters), true, mangaId)}
|
||||
@@ -67,7 +67,7 @@ export const ChaptersToolbarMenu = ({
|
||||
<PopupState variant="popover" popupId="chapterlist-download-button">
|
||||
{(popupState) => (
|
||||
<>
|
||||
<CustomTooltip title={t('global.button.download')} disabled={areAllChaptersRead}>
|
||||
<CustomTooltip title={t`Download`} disabled={areAllChaptersRead}>
|
||||
<IconButton
|
||||
disabled={areAllChaptersDownloaded}
|
||||
{...bindTrigger(popupState)}
|
||||
@@ -84,7 +84,7 @@ export const ChaptersToolbarMenu = ({
|
||||
</>
|
||||
)}
|
||||
</PopupState>
|
||||
<CustomTooltip title={t('chapter.action.filter_and_sort.label')}>
|
||||
<CustomTooltip title={t`Filter and sort`}>
|
||||
<IconButton onClick={() => setOpen(true)} color="inherit">
|
||||
<FilterList color={isFiltered ? 'warning' : undefined} />
|
||||
</IconButton>
|
||||
|
||||
@@ -17,40 +17,43 @@
|
||||
import Box from '@mui/material/Box';
|
||||
import Stack from '@mui/material/Stack';
|
||||
import Typography from '@mui/material/Typography';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import { plural } from '@lingui/core/macro';
|
||||
|
||||
export const MissingChaptersInfoSeparator = ({ missingChaptersGap }: { missingChaptersGap: number }) => {
|
||||
const { t } = useTranslation();
|
||||
|
||||
return (
|
||||
<Stack
|
||||
export const MissingChaptersInfoSeparator = ({
|
||||
missingChaptersGap: missingChapterCount,
|
||||
}: {
|
||||
missingChaptersGap: number;
|
||||
}) => (
|
||||
<Stack
|
||||
sx={{
|
||||
width: '100%',
|
||||
flexDirection: 'row',
|
||||
justifyContent: 'center',
|
||||
alignItems: 'center',
|
||||
p: 2,
|
||||
pt: 3.5,
|
||||
pb: 2.5,
|
||||
}}
|
||||
>
|
||||
<Box
|
||||
sx={{
|
||||
width: '100%',
|
||||
flexDirection: 'row',
|
||||
justifyContent: 'center',
|
||||
alignItems: 'center',
|
||||
p: 2,
|
||||
pt: 3.5,
|
||||
pb: 2.5,
|
||||
flexGrow: 1,
|
||||
border: '1px solid',
|
||||
borderColor: (theme) => theme.palette.text.secondary,
|
||||
}}
|
||||
>
|
||||
<Box
|
||||
sx={{
|
||||
flexGrow: 1,
|
||||
border: '1px solid',
|
||||
borderColor: (theme) => theme.palette.text.secondary,
|
||||
}}
|
||||
/>
|
||||
<Typography sx={{ px: 2 }} variant="body2" color="textSecondary">
|
||||
{t('chapter.missing', { count: missingChaptersGap })}
|
||||
</Typography>
|
||||
<Box
|
||||
sx={{
|
||||
flexGrow: 1,
|
||||
border: '1px solid',
|
||||
borderColor: (theme) => theme.palette.text.secondary,
|
||||
}}
|
||||
/>
|
||||
</Stack>
|
||||
);
|
||||
};
|
||||
/>
|
||||
<Typography sx={{ px: 2 }} variant="body2" color="textSecondary">
|
||||
{plural(missingChapterCount, {
|
||||
one: 'Missing # chapter',
|
||||
other: 'Missing # chapters',
|
||||
})}
|
||||
</Typography>
|
||||
<Box
|
||||
sx={{
|
||||
flexGrow: 1,
|
||||
border: '1px solid',
|
||||
borderColor: (theme) => theme.palette.text.secondary,
|
||||
}}
|
||||
/>
|
||||
</Stack>
|
||||
);
|
||||
|
||||
@@ -11,11 +11,11 @@ import Delete from '@mui/icons-material/Delete';
|
||||
import Download from '@mui/icons-material/Download';
|
||||
import RemoveDone from '@mui/icons-material/RemoveDone';
|
||||
import Done from '@mui/icons-material/Done';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import BookmarkRemove from '@mui/icons-material/BookmarkRemove';
|
||||
import BookmarkAdd from '@mui/icons-material/BookmarkAdd';
|
||||
import DoneAll from '@mui/icons-material/DoneAll';
|
||||
import { ComponentProps, useMemo } from 'react';
|
||||
import { useLingui } from '@lingui/react/macro';
|
||||
import { SelectableCollectionReturnType } from '@/base/collection/hooks/useSelectableCollection.ts';
|
||||
import { Chapters } from '@/features/chapter/services/Chapters.ts';
|
||||
import { MenuItem } from '@/base/components/menu/MenuItem.tsx';
|
||||
@@ -74,7 +74,7 @@ export const ChapterActionMenuItems = ({
|
||||
onClose,
|
||||
selectable = true,
|
||||
}: Props) => {
|
||||
const { t } = useTranslation();
|
||||
const { t } = useLingui();
|
||||
|
||||
const isSingleMode = !!chapter;
|
||||
const { isDownloaded, isRead, isBookmarked } = chapter ?? {};
|
||||
@@ -173,7 +173,7 @@ export const ChapterActionMenuItems = ({
|
||||
return (
|
||||
<>
|
||||
{isSingleMode && selectable && (
|
||||
<MenuItem onClick={handleSelect} Icon={CheckBoxOutlineBlank} title={t('chapter.action.label.select')} />
|
||||
<MenuItem onClick={handleSelect} Icon={CheckBoxOutlineBlank} title={t`Select`} />
|
||||
)}
|
||||
{isSingleMode && (
|
||||
<>
|
||||
@@ -184,7 +184,7 @@ export const ChapterActionMenuItems = ({
|
||||
window.open(chapter!.realUrl!, '_blank', 'noopener,noreferrer');
|
||||
onClose();
|
||||
}}
|
||||
title={t('global.button.open_browser')}
|
||||
title={t`Open in browser`}
|
||||
/>
|
||||
<MenuItem
|
||||
Icon={IconWebView}
|
||||
@@ -197,7 +197,7 @@ export const ChapterActionMenuItems = ({
|
||||
);
|
||||
onClose();
|
||||
}}
|
||||
title={t('global.button.open_webview')}
|
||||
title={t`Open in WebView`}
|
||||
/>
|
||||
</>
|
||||
)}
|
||||
@@ -255,7 +255,7 @@ export const ChapterActionMenuItems = ({
|
||||
<MenuItem
|
||||
onClick={() => performAction('mark_prev_as_read', [])}
|
||||
Icon={DoneAll}
|
||||
title={t('chapter.action.mark_as_read.add.label.action.previous')}
|
||||
title={t`Mark previous as read`}
|
||||
/>
|
||||
)}
|
||||
</>
|
||||
|
||||
@@ -6,9 +6,10 @@
|
||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
import { MessageDescriptor } from '@lingui/core';
|
||||
import MenuItem from '@mui/material/MenuItem';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import gql from 'graphql-tag';
|
||||
import { msg } from '@lingui/core/macro';
|
||||
import { useMetadataServerSettings } from '@/features/settings/services/ServerSettingsMetadata.ts';
|
||||
import { Mangas } from '@/features/manga/services/Mangas.ts';
|
||||
import { defaultPromiseErrorHandler } from '@/lib/DefaultPromiseErrorHandler.ts';
|
||||
@@ -28,26 +29,46 @@ import { Chapters } from '@/features/chapter/services/Chapters.ts';
|
||||
import { makeToast } from '@/base/utils/Toast.ts';
|
||||
import { CHAPTER_ACTION_TO_TRANSLATION } from '@/features/chapter/Chapter.constants.ts';
|
||||
import { getErrorMessage } from '@/lib/HelperFunctions.ts';
|
||||
import { TranslationKey } from '@/base/Base.types.ts';
|
||||
import { i18n } from '@/i18n';
|
||||
|
||||
const DOWNLOAD_OPTIONS: {
|
||||
title: TranslationKey;
|
||||
title: MessageDescriptor;
|
||||
getCount: (downloadAheadLimit: number) => number | undefined;
|
||||
onlyUnread?: boolean;
|
||||
isDownloadAhead?: boolean;
|
||||
}[] = [
|
||||
{ title: 'chapter.action.download.add.label.next', getCount: () => 1 },
|
||||
{ title: 'chapter.action.download.add.label.next', getCount: () => 5 },
|
||||
{ title: 'chapter.action.download.add.label.next', getCount: () => 10 },
|
||||
{ title: 'chapter.action.download.add.label.next', getCount: () => 25 },
|
||||
{
|
||||
title: 'chapter.action.download.add.label.ahead',
|
||||
title: msg`{count, plural, one {Next chapter} other {Next # chapters}}`,
|
||||
getCount: () => 1,
|
||||
},
|
||||
{
|
||||
title: msg`{count, plural, one {Next chapter} other {Next # chapters}}`,
|
||||
getCount: () => 5,
|
||||
},
|
||||
{
|
||||
title: msg`{count, plural, one {Next chapter} other {Next # chapters}}`,
|
||||
getCount: () => 10,
|
||||
},
|
||||
{
|
||||
title: msg`{count, plural, one {Next chapter} other {Next # chapters}}`,
|
||||
getCount: () => 25,
|
||||
},
|
||||
{
|
||||
title: msg`Download ahead ({count})`,
|
||||
getCount: (downloadAheadLimit) => downloadAheadLimit,
|
||||
onlyUnread: true,
|
||||
isDownloadAhead: true,
|
||||
},
|
||||
{ title: 'chapter.action.download.add.label.unread', getCount: () => undefined, onlyUnread: true },
|
||||
{ title: 'chapter.action.download.add.label.all', getCount: () => undefined, onlyUnread: false },
|
||||
{
|
||||
title: msg`Unread`,
|
||||
getCount: () => undefined,
|
||||
onlyUnread: true,
|
||||
},
|
||||
{
|
||||
title: msg`All`,
|
||||
getCount: () => undefined,
|
||||
onlyUnread: false,
|
||||
},
|
||||
];
|
||||
|
||||
const handleDownload = async (
|
||||
@@ -131,8 +152,6 @@ export const ChaptersDownloadActionMenuItems = ({
|
||||
mangaIds: MangaType['id'][];
|
||||
closeMenu: () => void;
|
||||
}) => {
|
||||
const { t } = useTranslation();
|
||||
|
||||
const {
|
||||
settings: { downloadAheadLimit },
|
||||
} = useMetadataServerSettings();
|
||||
@@ -140,8 +159,10 @@ export const ChaptersDownloadActionMenuItems = ({
|
||||
const handleSelect = (size?: number, onlyUnread: boolean = true, downloadAhead: boolean = false) => {
|
||||
handleDownload(mangaIds, onlyUnread, size, downloadAhead).catch((e) =>
|
||||
makeToast(
|
||||
t(CHAPTER_ACTION_TO_TRANSLATION.download.error, {
|
||||
count: size,
|
||||
/* lingui-extract-ignore */
|
||||
i18n.t({
|
||||
...CHAPTER_ACTION_TO_TRANSLATION.download.error,
|
||||
values: { count: size },
|
||||
}),
|
||||
'error',
|
||||
getErrorMessage(e),
|
||||
@@ -155,10 +176,16 @@ export const ChaptersDownloadActionMenuItems = ({
|
||||
<>
|
||||
{DOWNLOAD_OPTIONS.map(({ title, getCount, onlyUnread, isDownloadAhead }) => (
|
||||
<MenuItem
|
||||
key={t(title, { count: getCount(downloadAheadLimit) })}
|
||||
key={
|
||||
/* lingui-extract-ignore */
|
||||
i18n.t({ ...title, values: { count: getCount(downloadAheadLimit) } })
|
||||
}
|
||||
onClick={() => handleSelect(getCount(downloadAheadLimit), onlyUnread, isDownloadAhead)}
|
||||
>
|
||||
{t(title, { count: getCount(downloadAheadLimit) })}
|
||||
{
|
||||
/* lingui-extract-ignore */
|
||||
i18n.t({ ...title, values: { count: getCount(downloadAheadLimit) } })
|
||||
}
|
||||
</MenuItem>
|
||||
))}
|
||||
</>
|
||||
|
||||
@@ -7,8 +7,8 @@
|
||||
*/
|
||||
|
||||
import IconButton from '@mui/material/IconButton';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import DownloadIcon from '@mui/icons-material/Download';
|
||||
import { useLingui } from '@lingui/react/macro';
|
||||
import { CustomTooltip } from '@/base/components/CustomTooltip.tsx';
|
||||
import { Chapters } from '@/features/chapter/services/Chapters.ts';
|
||||
import { requestManager } from '@/lib/requests/RequestManager.ts';
|
||||
@@ -24,15 +24,13 @@ export const ChapterDownloadButton = ({
|
||||
chapterId: ChapterIdInfo['id'];
|
||||
isDownloaded: boolean;
|
||||
}) => {
|
||||
const { t } = useTranslation();
|
||||
const { t } = useLingui();
|
||||
const download = Chapters.useDownloadStatusFromCache(chapterId);
|
||||
|
||||
const downloadChapter = () => {
|
||||
requestManager
|
||||
.addChapterToDownloadQueue(chapterId)
|
||||
.response.catch((e) =>
|
||||
makeToast(t('global.error.label.failed_to_save_changes'), 'error', getErrorMessage(e)),
|
||||
);
|
||||
.response.catch((e) => makeToast(t`Failed to save changes`, 'error', getErrorMessage(e)));
|
||||
};
|
||||
|
||||
if (download == null && isDownloaded) {
|
||||
@@ -40,7 +38,7 @@ export const ChapterDownloadButton = ({
|
||||
}
|
||||
|
||||
return (
|
||||
<CustomTooltip title={t('chapter.action.download.add.label.action')}>
|
||||
<CustomTooltip title={t`Download`}>
|
||||
<IconButton
|
||||
{...MUIUtil.preventRippleProp()}
|
||||
onClick={(e) => {
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
import Refresh from '@mui/icons-material/Refresh';
|
||||
import IconButton from '@mui/material/IconButton';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import { useLingui } from '@lingui/react/macro';
|
||||
import { DownloadState } from '@/lib/graphql/generated/graphql.ts';
|
||||
import { CustomTooltip } from '@/base/components/CustomTooltip.tsx';
|
||||
import { Chapters } from '@/features/chapter/services/Chapters.ts';
|
||||
@@ -19,14 +19,14 @@ import { MUIUtil } from '@/lib/mui/MUI.util.ts';
|
||||
import { ChapterIdInfo } from '@/features/chapter/Chapter.types.ts';
|
||||
|
||||
export const ChapterDownloadRetryButton = ({ chapterId }: { chapterId: ChapterIdInfo['id'] }) => {
|
||||
const { t } = useTranslation();
|
||||
const { t } = useLingui();
|
||||
const download = Chapters.useDownloadStatusFromCache(chapterId);
|
||||
|
||||
const handleRetry = async () => {
|
||||
try {
|
||||
await requestManager.addChapterToDownloadQueue(chapterId).response;
|
||||
} catch (e) {
|
||||
makeToast(t('download.queue.error.label.failed_to_retry'), 'error', getErrorMessage(e));
|
||||
makeToast(t`Could not retry failed download.`, 'error', getErrorMessage(e));
|
||||
}
|
||||
};
|
||||
|
||||
@@ -35,7 +35,7 @@ export const ChapterDownloadRetryButton = ({ chapterId }: { chapterId: ChapterId
|
||||
}
|
||||
|
||||
return (
|
||||
<CustomTooltip title={t('global.button.retry')}>
|
||||
<CustomTooltip title={t`Retry`}>
|
||||
<IconButton
|
||||
{...MUIUtil.preventRippleProp()}
|
||||
onClick={(e) => {
|
||||
|
||||
@@ -16,9 +16,9 @@ import IconButton from '@mui/material/IconButton';
|
||||
import { useTheme } from '@mui/material/styles';
|
||||
import React, { memo, MouseEvent, TouchEvent, useRef } from 'react';
|
||||
import { Link } from 'react-router-dom';
|
||||
import { useTranslation } from 'react-i18next';
|
||||
import PopupState, { bindMenu, bindTrigger } from 'material-ui-popup-state';
|
||||
import { useLongPress } from 'use-long-press';
|
||||
import { useLingui } from '@lingui/react/macro';
|
||||
import { CustomTooltip } from '@/base/components/CustomTooltip.tsx';
|
||||
import { getDateString } from '@/base/utils/DateHelper.ts';
|
||||
import { DownloadStateIndicator } from '@/base/components/downloads/DownloadStateIndicator.tsx';
|
||||
@@ -61,7 +61,7 @@ interface IProps {
|
||||
}
|
||||
|
||||
export const ChapterCard = memo((props: IProps) => {
|
||||
const { t } = useTranslation();
|
||||
const { t } = useLingui();
|
||||
const theme = useTheme();
|
||||
const preventMobileContextMenu = MediaQuery.usePreventMobileContextMenu();
|
||||
|
||||
@@ -134,13 +134,11 @@ export const ChapterCard = memo((props: IProps) => {
|
||||
>
|
||||
<ListCardContent>
|
||||
<ChapterCardMetadata
|
||||
title={
|
||||
showChapterNumber
|
||||
? `${t('chapter.title_one')} ${chapter.chapterNumber}`
|
||||
: chapter.name
|
||||
}
|
||||
title={showChapterNumber ? `${t`Chapter`} ${chapter.chapterNumber}` : chapter.name}
|
||||
secondaryText={chapter.scanlator}
|
||||
ternaryText={`${getDateString(Number(chapter.uploadDate ?? 0), true)}${isDownloaded ? ` • ${t('chapter.status.label.downloaded')}` : ''}`}
|
||||
ternaryText={`${getDateString(Number(chapter.uploadDate ?? 0), true)}${
|
||||
isDownloaded ? ` • ${t`Downloaded`}` : ''
|
||||
}`}
|
||||
infoIcons={
|
||||
chapter.isBookmarked && (
|
||||
<BookmarkIcon
|
||||
@@ -180,7 +178,7 @@ export const ChapterCard = memo((props: IProps) => {
|
||||
|
||||
<Stack sx={{ minHeight: '48px' }}>
|
||||
{selected === null ? (
|
||||
<CustomTooltip title={t('global.button.options')}>
|
||||
<CustomTooltip title={t`Options`}>
|
||||
<IconButton
|
||||
ref={menuButtonRef}
|
||||
{...MUIUtil.preventRippleProp(bindTrigger(popupState), {
|
||||
@@ -198,9 +196,7 @@ export const ChapterCard = memo((props: IProps) => {
|
||||
</IconButton>
|
||||
</CustomTooltip>
|
||||
) : (
|
||||
<CustomTooltip
|
||||
title={t(selected ? 'global.button.deselect' : 'global.button.select')}
|
||||
>
|
||||
<CustomTooltip title={selected ? t`Deselect` : t`Select`}>
|
||||
<Checkbox checked={selected} />
|
||||
</CustomTooltip>
|
||||
)}
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
||||
*/
|
||||
|
||||
import { t as translate } from 'i18next';
|
||||
import { DocumentNode, MaybeMasked, Unmasked, useFragment } from '@apollo/client';
|
||||
import { t } from '@lingui/core/macro';
|
||||
import { makeToast } from '@/base/utils/Toast.ts';
|
||||
import { requestManager } from '@/lib/requests/RequestManager.ts';
|
||||
import { getMetadataServerSettings } from '@/features/settings/services/ServerSettingsMetadata.ts';
|
||||
@@ -18,8 +18,8 @@ import {
|
||||
DownloadTypeFieldsFragment,
|
||||
} from '@/lib/graphql/generated/graphql.ts';
|
||||
import { CHAPTER_LIST_FIELDS } from '@/lib/graphql/chapter/ChapterFragments.ts';
|
||||
|
||||
import { MangaIdInfo } from '@/features/manga/Manga.types.ts';
|
||||
|
||||
import { ReaderOpenChapterLocationState, ReaderResumeMode } from '@/features/reader/Reader.types.ts';
|
||||
import { AppRoutes } from '@/base/AppRoute.constants.ts';
|
||||
import { getErrorMessage } from '@/lib/HelperFunctions.ts';
|
||||
@@ -43,6 +43,7 @@ import {
|
||||
import { assertIsDefined } from '@/base/Asserts.ts';
|
||||
import { DirectionOffset } from '@/base/Base.types.ts';
|
||||
import { Confirmation } from '@/base/AppAwaitableComponent.ts';
|
||||
import { i18n } from '@/i18n';
|
||||
|
||||
export class Chapters {
|
||||
static getIds(chapters: { id: number }[]): number[] {
|
||||
@@ -276,11 +277,12 @@ export class Chapters {
|
||||
|
||||
try {
|
||||
await Confirmation.show({
|
||||
title: translate('global.label.are_you_sure'),
|
||||
message: translate(confirmationMessage, { count: itemCount }),
|
||||
title: t`Are you sure?`,
|
||||
/* lingui-extract-ignore */
|
||||
message: i18n.t({ ...confirmationMessage, values: { count: itemCount } }),
|
||||
actions: {
|
||||
confirm: {
|
||||
title: translate('global.button.ok'),
|
||||
title: t`Ok`,
|
||||
},
|
||||
},
|
||||
});
|
||||
@@ -290,10 +292,15 @@ export class Chapters {
|
||||
}
|
||||
|
||||
await fnToExecute();
|
||||
makeToast(translate(CHAPTER_ACTION_TO_TRANSLATION[action].success, { count: itemCount }), 'success');
|
||||
makeToast(
|
||||
/* lingui-extract-ignore */
|
||||
i18n.t({ ...CHAPTER_ACTION_TO_TRANSLATION[action].success, values: { count: itemCount } }),
|
||||
'success',
|
||||
);
|
||||
} catch (e) {
|
||||
makeToast(
|
||||
translate(CHAPTER_ACTION_TO_TRANSLATION[action].error, { count: itemCount }),
|
||||
/* lingui-extract-ignore */
|
||||
i18n.t({ ...CHAPTER_ACTION_TO_TRANSLATION[action].error, values: { count: itemCount } }),
|
||||
'error',
|
||||
getErrorMessage(e),
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user