mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-18 21:54:09 +00:00
2586b0b10c
* addtime endpoint * create universal Subscription * add http integration * catch error from HTTP integration emit * unify osc and http validateSubscriptionEntry * add necessary endpoint for http subscription * make subscription part of modal generic * add http subscription to integration modal * remove log * Revert "addtime endpoint" This reverts commit4c039220dc. * reuse agent and test url compatibility * simplify retun path * add todo in UI * test for http protocol * import not needed yet * lint * fix merge * lint * fix httpPlaceholder * wip: prepare endpoints * wip: temporary fix to get form to work * disable HTTP integration if enabledOut==false * register/unregister http * refactor: subscription types and form register * refactor: validation * cleanup * cleanup * try GOT * allow https * split url and searchParams allow for post option * add options to post * add retry count * fix test * Revert "fix test" This reverts commit927e88370f. * Revert "add options to post" This reverts commit0523a68ef4. * Revert "split url and searchParams allow for post option" This reverts commit54ab8d4ffe. * missing retryCount in httpPlaceholder * remove global this * remove retry count * remove https --------- Co-authored-by: Carlos Valente <carlosvalente@pm.me>
140 lines
4.2 KiB
TypeScript
140 lines
4.2 KiB
TypeScript
import { useEffect, useState } from 'react';
|
|
import { useForm } from 'react-hook-form';
|
|
import type { OscSubscription } from 'ontime-types';
|
|
import { TimerLifeCycle } from 'ontime-types';
|
|
|
|
import useOscSettings, { usePostOscSubscriptions } from '../../../../common/hooks-query/useOscSettings';
|
|
import { useEmitLog } from '../../../../common/stores/logger';
|
|
import ModalLoader from '../../modal-loader/ModalLoader';
|
|
import OntimeModalFooter from '../../OntimeModalFooter';
|
|
import { type OntimeCycle, sectionText } from '../integration.utils';
|
|
|
|
import OscSubscriptionRow from './OscSubscriptionRow';
|
|
|
|
import styles from '../../Modal.module.scss';
|
|
|
|
export default function OscIntegration() {
|
|
const { data, isFetching } = useOscSettings();
|
|
const { mutateAsync } = usePostOscSubscriptions();
|
|
const { emitError } = useEmitLog();
|
|
const {
|
|
control,
|
|
handleSubmit,
|
|
register,
|
|
reset,
|
|
formState: { isSubmitting, isDirty, isValid },
|
|
} = useForm<OscSubscription>({
|
|
defaultValues: data.subscriptions,
|
|
values: data.subscriptions,
|
|
resetOptions: {
|
|
keepDirtyValues: true,
|
|
},
|
|
});
|
|
|
|
const [showSection, setShowSection] = useState<OntimeCycle>(TimerLifeCycle.onLoad);
|
|
|
|
useEffect(() => {
|
|
if (data) {
|
|
reset(data.subscriptions);
|
|
}
|
|
}, [data, reset]);
|
|
|
|
const resetForm = () => {
|
|
reset(data.subscriptions);
|
|
};
|
|
|
|
const onSubmit = async (values: OscSubscription) => {
|
|
try {
|
|
const subscriptions = {
|
|
onLoad: values.onLoad ?? [],
|
|
onStart: values.onStart ?? [],
|
|
onPause: values.onPause ?? [],
|
|
onStop: values.onStop ?? [],
|
|
onUpdate: values.onUpdate ?? [],
|
|
onFinish: values.onFinish ?? [],
|
|
};
|
|
|
|
await mutateAsync(subscriptions);
|
|
} catch (error) {
|
|
emitError(`Error setting OSC: ${error}`);
|
|
}
|
|
};
|
|
|
|
if (isFetching) {
|
|
return <ModalLoader />;
|
|
}
|
|
|
|
const placeholder = 'OSC message';
|
|
return (
|
|
<form onSubmit={handleSubmit(onSubmit)} className={styles.sectionContainer} id='osc-subscriptions'>
|
|
<OscSubscriptionRow
|
|
cycle={TimerLifeCycle.onLoad}
|
|
title={sectionText.onLoad.title}
|
|
subtitle={sectionText.onLoad.subtitle}
|
|
visible={showSection === TimerLifeCycle.onLoad}
|
|
setShowSection={setShowSection}
|
|
register={register}
|
|
control={control}
|
|
placeholder={placeholder}
|
|
/>
|
|
<OscSubscriptionRow
|
|
cycle={TimerLifeCycle.onStart}
|
|
title={sectionText.onStart.title}
|
|
subtitle={sectionText.onStart.subtitle}
|
|
visible={showSection === TimerLifeCycle.onStart}
|
|
setShowSection={setShowSection}
|
|
register={register}
|
|
control={control}
|
|
placeholder={placeholder}
|
|
/>
|
|
<OscSubscriptionRow
|
|
cycle={TimerLifeCycle.onPause}
|
|
title={sectionText.onPause.title}
|
|
subtitle={sectionText.onPause.subtitle}
|
|
visible={showSection === TimerLifeCycle.onPause}
|
|
setShowSection={setShowSection}
|
|
register={register}
|
|
control={control}
|
|
placeholder={placeholder}
|
|
/>
|
|
<OscSubscriptionRow
|
|
cycle={TimerLifeCycle.onStop}
|
|
title={sectionText.onStop.title}
|
|
subtitle={sectionText.onStop.subtitle}
|
|
visible={showSection === TimerLifeCycle.onStop}
|
|
setShowSection={setShowSection}
|
|
register={register}
|
|
control={control}
|
|
placeholder={placeholder}
|
|
/>
|
|
<OscSubscriptionRow
|
|
cycle={TimerLifeCycle.onUpdate}
|
|
title={sectionText.onUpdate.title}
|
|
subtitle={sectionText.onUpdate.subtitle}
|
|
visible={showSection === TimerLifeCycle.onUpdate}
|
|
setShowSection={setShowSection}
|
|
register={register}
|
|
control={control}
|
|
placeholder={placeholder}
|
|
/>
|
|
<OscSubscriptionRow
|
|
cycle={TimerLifeCycle.onFinish}
|
|
title={sectionText.onFinish.title}
|
|
subtitle={sectionText.onFinish.subtitle}
|
|
visible={showSection === TimerLifeCycle.onFinish}
|
|
setShowSection={setShowSection}
|
|
register={register}
|
|
control={control}
|
|
placeholder={placeholder}
|
|
/>
|
|
<OntimeModalFooter
|
|
formId='osc-subscriptions'
|
|
handleRevert={resetForm}
|
|
isDirty={isDirty}
|
|
isValid={isValid}
|
|
isSubmitting={isSubmitting}
|
|
/>
|
|
</form>
|
|
);
|
|
}
|