2021-04-10 00:44:13 +04:30
|
|
|
/*
|
|
|
|
|
* 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
|
2023-05-18 13:17:41 +02:00
|
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
|
*/
|
2021-04-10 00:44:13 +04:30
|
|
|
|
2022-02-21 01:10:33 +03:30
|
|
|
import { Link } from 'react-router-dom';
|
2023-06-04 21:13:07 +02:00
|
|
|
import { ListItemButton, ListItemButtonProps } from '@mui/material';
|
2021-04-10 00:44:13 +04:30
|
|
|
|
2023-10-28 00:32:02 +02:00
|
|
|
export function ListItemLink(props: ListItemButtonProps<typeof Link, { directLink?: boolean }>) {
|
2022-02-21 01:24:42 +03:30
|
|
|
const { directLink, to } = props;
|
|
|
|
|
if (directLink) {
|
2023-06-04 21:13:07 +02:00
|
|
|
if (typeof to !== 'string') {
|
|
|
|
|
throw new Error('ListItemLink: "to" has to be a string in case it is a directLink');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return <ListItemButton component="a" href={to} {...props} />;
|
2022-02-21 01:24:42 +03:30
|
|
|
}
|
|
|
|
|
|
2023-06-04 21:13:07 +02:00
|
|
|
return <ListItemButton component={Link} {...props} />;
|
2021-04-10 00:44:13 +04:30
|
|
|
}
|