import { LanguageDescription, LanguageSupport, StreamLanguage } from '@codemirror/language'; import { shell } from '@codemirror/legacy-modes/mode/shell'; import { faScroll } from '@fortawesome/free-solid-svg-icons'; import type { FormikHelpers } from 'formik'; import { Form, Formik } from 'formik'; import tw from 'twin.macro'; import { useEggFromRoute } from '@/api/admin/egg'; import updateEgg from '@/api/admin/eggs/updateEgg'; import AdminBox from '@/components/admin/AdminBox'; import { Button } from '@/components/elements/button'; import { Editor } from '@/components/elements/editor'; import Field from '@/components/elements/Field'; import SpinnerOverlay from '@/components/elements/SpinnerOverlay'; import useFlash from '@/plugins/useFlash'; interface Values { scriptContainer: string; scriptEntry: string; scriptInstall: string; } export default function EggInstallContainer() { const { clearFlashes, clearAndAddHttpError } = useFlash(); const { data: egg } = useEggFromRoute(); if (!egg) { return null; } let fetchFileContent: (() => Promise) | null = null; const submit = async (values: Values, { setSubmitting }: FormikHelpers) => { if (fetchFileContent === null) { return; } values.scriptInstall = await fetchFileContent(); clearFlashes('egg'); updateEgg(egg.id, values) .catch(error => { console.error(error); clearAndAddHttpError({ key: 'egg', error }); }) .then(() => setSubmitting(false)); }; return ( {({ isSubmitting, isValid }) => (
{ fetchFileContent = value; }} language={LanguageDescription.of({ name: 'shell', support: new LanguageSupport(StreamLanguage.define(shell)), })} />
)}
); }