2019-07-31 13:11:00 +09:00
|
|
|
import React from 'react'
|
2019-08-03 13:36:29 +09:00
|
|
|
import { useTranslation } from 'react-i18next'
|
2019-07-31 13:11:00 +09:00
|
|
|
import { IoIosBeer } from 'react-icons/io'
|
2019-08-06 00:45:18 +09:00
|
|
|
|
|
|
|
import { Card, Repeater, ExistentialAvailability } from '../Cards'
|
2019-07-31 13:11:00 +09:00
|
|
|
|
|
|
|
export default function HomebrewCard({ name }) {
|
2019-08-03 13:36:29 +09:00
|
|
|
const { t } = useTranslation()
|
2019-07-31 13:11:00 +09:00
|
|
|
const lowerCase = name.toLowerCase()
|
|
|
|
|
2019-08-06 00:45:18 +09:00
|
|
|
const names = [lowerCase]
|
|
|
|
|
2019-07-31 13:11:00 +09:00
|
|
|
return (
|
2019-08-06 00:45:18 +09:00
|
|
|
<Card title={t('providers.homebrew')}>
|
|
|
|
<Repeater items={names}>
|
|
|
|
{(name) => (
|
|
|
|
<>
|
|
|
|
<ExistentialAvailability
|
|
|
|
name={name}
|
|
|
|
target={`https://formulae.brew.sh/api/formula/${name}.json`}
|
|
|
|
link={`https://formulae.brew.sh/formula/${name}`}
|
|
|
|
icon={<IoIosBeer />}
|
|
|
|
/>
|
|
|
|
<ExistentialAvailability
|
|
|
|
name={name}
|
|
|
|
target={`https://formulae.brew.sh/api/cask/${name}.json`}
|
|
|
|
link={`https://formulae.brew.sh/cask/${name}`}
|
|
|
|
suffix=" (Cask)"
|
|
|
|
icon={<IoIosBeer />}
|
|
|
|
/>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
</Repeater>
|
2019-07-31 13:11:00 +09:00
|
|
|
</Card>
|
|
|
|
)
|
|
|
|
}
|