1
0
mirror of https://github.com/uetchy/namae.git synced 2025-08-20 18:08:11 +09:00

dev: initial attempt

This commit is contained in:
2022-06-07 13:30:48 +09:00
parent 09f2755410
commit 4ff733e148
63 changed files with 1239 additions and 8090 deletions

View File

@@ -0,0 +1,54 @@
import useFetch from 'fetch-suspense';
import React from 'react';
import { useTranslation } from 'react-i18next';
import { RiChromeFill } from 'react-icons/ri';
import { Card, Result } from '../core';
const Search: React.FC<{ query: string }> = ({ query }) => {
const { t } = useTranslation();
const response = useFetch(
`/api/services/chrome-web-store/${encodeURIComponent(query)}`
) as {
result: Array<{
name: string;
url: string;
description: string;
id: string;
}>;
};
const apps = response.result;
return (
<>
{apps && apps.length > 0 ? (
apps.map((app) => (
<Result
title={app.name}
message={app.description}
link={app.url}
icon={<RiChromeFill />}
key={app.id}
/>
))
) : (
<Result
title={t('noResult')}
message={t('noResult')}
icon={<RiChromeFill />}
/>
)}
</>
);
};
const ChromeWebStoreCard: React.FC<{ query: string }> = ({ query }) => {
const { t } = useTranslation();
return (
<Card title={t('providers.chromeWebStore')}>
<Search query={query} />
</Card>
);
};
export default ChromeWebStoreCard;