| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- import { useState } from 'react'
- import { useTranslation } from 'react-i18next'
- import {
- RiArrowDownSLine,
- RiCheckLine,
- } from '@remixicon/react'
- import { AUTO_UPDATE_STRATEGY } from './types'
- import {
- PortalToFollowElem,
- PortalToFollowElemContent,
- PortalToFollowElemTrigger,
- } from '@/app/components/base/portal-to-follow-elem'
- import Button from '@/app/components/base/button'
- const i18nPrefix = 'plugin.autoUpdate.strategy'
-
- type Props = {
- value: AUTO_UPDATE_STRATEGY
- onChange: (value: AUTO_UPDATE_STRATEGY) => void
- }
- const StrategyPicker = ({
- value,
- onChange,
- }: Props) => {
- const { t } = useTranslation()
- const [open, setOpen] = useState(false)
- const options = [
- {
- value: AUTO_UPDATE_STRATEGY.disabled,
- label: t(`${i18nPrefix}.disabled.name`),
- description: t(`${i18nPrefix}.disabled.description`),
- },
- {
- value: AUTO_UPDATE_STRATEGY.fixOnly,
- label: t(`${i18nPrefix}.fixOnly.name`),
- description: t(`${i18nPrefix}.fixOnly.description`),
- },
- {
- value: AUTO_UPDATE_STRATEGY.latest,
- label: t(`${i18nPrefix}.latest.name`),
- description: t(`${i18nPrefix}.latest.description`),
- },
- ]
- const selectedOption = options.find(option => option.value === value)
-
- return (
- <PortalToFollowElem
- open={open}
- onOpenChange={setOpen}
- placement='top-end'
- offset={4}
- >
- <PortalToFollowElemTrigger onClick={(e) => {
- e.stopPropagation()
- e.nativeEvent.stopImmediatePropagation()
- setOpen(v => !v)
- }}>
- <Button
- size='small'
- >
- {selectedOption?.label}
- <RiArrowDownSLine className='h-3.5 w-3.5' />
- </Button>
- </PortalToFollowElemTrigger>
- <PortalToFollowElemContent className='z-[99]'>
- <div className='w-[280px] rounded-xl border-[0.5px] border-components-panel-border bg-components-panel-bg-blur p-1 shadow-lg'>
- {
- options.map(option => (
- <div
- key={option.value}
- className='flex cursor-pointer rounded-lg p-2 pr-3 hover:bg-state-base-hover'
- onClick={(e) => {
- e.stopPropagation()
- e.nativeEvent.stopImmediatePropagation()
- onChange(option.value)
- setOpen(false)
- }}
- >
- <div className='mr-1 w-4 shrink-0'>
- {
- value === option.value && (
- <RiCheckLine className='h-4 w-4 text-text-accent' />
- )
- }
- </div>
- <div className='grow'>
- <div className='system-sm-semibold mb-0.5 text-text-secondary'>{option.label}</div>
- <div className='system-xs-regular text-text-tertiary'>{option.description}</div>
- </div>
- </div>
- ))
- }
- </div>
- </PortalToFollowElemContent>
- </PortalToFollowElem>
- )
- }
-
- export default StrategyPicker
|