'use client'; import { FC, useEffect, useState } from 'react'; import { useCustomProviderFunction } from '@gitroom/frontend/components/new-launch/helpers/use.custom.provider.function'; import { Select } from '@gitroom/react/form/select'; import { useSettings } from '@gitroom/frontend/components/new-launch/helpers/use.values'; import { useT } from '@gitroom/react/translation/get.transation.service.client'; export const HashnodePublications: FC<{ name: string; onChange: (event: { target: { value: string; name: string; }; }) => void; }> = (props) => { const { onChange, name } = props; const t = useT(); const customFunc = useCustomProviderFunction(); const [publications, setOrgs] = useState([]); const { getValues } = useSettings(); const [currentMedia, setCurrentMedia] = useState(); const onChangeInner = (event: { target: { value: string; name: string; }; }) => { setCurrentMedia(event.target.value); onChange(event); }; useEffect(() => { customFunc.get('publications').then((data) => setOrgs(data)); const settings = getValues()[props.name]; if (settings) { setCurrentMedia(settings); } }, []); if (!publications.length) { return null; } return ( ); };