/* * Copyright (C) Contributors to the Suwayomi project * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ // adopted from: https://github.com/tachiyomiorg/tachiyomi/blob/master/app/src/main/java/eu/kanade/tachiyomi/widget/EmptyView.kt import { useMemo } from 'react'; import Typography from '@mui/material/Typography'; import { useTheme } from '@mui/material/styles'; import { Box, useMediaQuery } from '@mui/material'; const ERROR_FACES = ['(・o・;)', 'Σ(ಠ_ಠ)', 'ಥ_ಥ', '(˘・_・˘)', '(; ̄Д ̄)', '(・Д・。']; function getRandomErrorFace() { const randIndex = Math.floor(Math.random() * ERROR_FACES.length); return ERROR_FACES[randIndex]; } interface IProps { message: string; messageExtra?: JSX.Element | string; } export function EmptyView({ message, messageExtra }: IProps) { const theme = useTheme(); const isMobileWidth = useMediaQuery(theme.breakpoints.down('sm')); const errorFace = useMemo(() => getRandomErrorFace(), []); return ( {errorFace} {message} {messageExtra} ); } EmptyView.defaultProps = { messageExtra: undefined, };