mirror of
https://github.com/uetchy/namae.git
synced 2025-07-01 22:10:04 +09:00
38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
import React from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { FaReddit } from 'react-icons/fa';
|
|
|
|
import { Card, Repeater, DedicatedAvailability } from '../core';
|
|
|
|
const SubredditCard: React.FC<{ query: string }> = ({ query }) => {
|
|
const { t } = useTranslation();
|
|
const normalizedQuery = normalize(query, {
|
|
allowUnderscore: false,
|
|
});
|
|
const lowerCase = normalizedQuery.toLowerCase();
|
|
|
|
const names = [normalizedQuery];
|
|
const moreNames = [
|
|
`get${lowerCase}`,
|
|
`${lowerCase}-team`,
|
|
];
|
|
|
|
return (
|
|
<Card title={t('providers.reddit')}>
|
|
<Repeater items={names} moreItems={moreNames}>
|
|
{(name) => (
|
|
<DedicatedAvailability
|
|
name={name}
|
|
service="reddit" // route to http://namae.dev/api/services/reddit/<query> which is /api/services/reddit/[query].ts on GitHub
|
|
link={`https://reddit.com/r/${name}`}
|
|
prefix="reddit.com/r/"
|
|
icon={<FaReddit />}
|
|
/>
|
|
)}
|
|
</Repeater>
|
|
</Card>
|
|
);
|
|
};
|
|
|
|
export default SubredditCard;
|