mirror of
https://github.com/uetchy/namae.git
synced 2025-07-05 23:56:00 +09:00
48 lines
1.2 KiB
TypeScript
48 lines
1.2 KiB
TypeScript
import React from 'react';
|
|
import useFetch from 'fetch-suspense';
|
|
import {useTranslation} from 'react-i18next';
|
|
import {FaAppStore, FaInfoCircle} from 'react-icons/fa';
|
|
|
|
import {Card, Result} from '../core';
|
|
|
|
const Search: React.FC<{query: string}> = ({query}) => {
|
|
const {t} = useTranslation();
|
|
const term = encodeURIComponent(query);
|
|
const response = useFetch(
|
|
`/availability/appstore/${term}?country=${t('countryCode')}`,
|
|
) as {
|
|
result: Array<{name: string; viewURL: string; price: number; id: string}>;
|
|
};
|
|
const apps = response.result;
|
|
|
|
return (
|
|
<>
|
|
{apps.length > 0 ? (
|
|
apps.map((app) => (
|
|
<Result
|
|
title={app.name.split(/[-–—\-:]/)[0]}
|
|
message={`Price: ${app.price}`}
|
|
link={app.viewURL}
|
|
icon={<FaAppStore />}
|
|
key={app.id}
|
|
/>
|
|
))
|
|
) : (
|
|
<Result title={t('noResult')} icon={<FaInfoCircle />} />
|
|
)}
|
|
</>
|
|
);
|
|
};
|
|
|
|
const AppStoreCard: React.FC<{query: string}> = ({query}) => {
|
|
const {t} = useTranslation();
|
|
|
|
return (
|
|
<Card title={t('providers.appStore')}>
|
|
<Search query={query} />
|
|
</Card>
|
|
);
|
|
};
|
|
|
|
export default AppStoreCard;
|