147 lines
4.3 KiB
TypeScript
147 lines
4.3 KiB
TypeScript
import {
|
|
mdiAccount,
|
|
mdiChartTimelineVariant,
|
|
mdiMail,
|
|
mdiUpload,
|
|
} from '@mdi/js';
|
|
import Head from 'next/head';
|
|
import React, { ReactElement } from 'react';
|
|
import CardBox from '../../components/CardBox';
|
|
import LayoutAuthenticated from '../../layouts/Authenticated';
|
|
import SectionMain from '../../components/SectionMain';
|
|
import SectionTitleLineWithButton from '../../components/SectionTitleLineWithButton';
|
|
import { getPageTitle } from '../../config';
|
|
|
|
import { Field, Form, Formik } from 'formik';
|
|
import FormField from '../../components/FormField';
|
|
import BaseDivider from '../../components/BaseDivider';
|
|
import BaseButtons from '../../components/BaseButtons';
|
|
import BaseButton from '../../components/BaseButton';
|
|
import FormCheckRadio from '../../components/FormCheckRadio';
|
|
import FormCheckRadioGroup from '../../components/FormCheckRadioGroup';
|
|
import FormFilePicker from '../../components/FormFilePicker';
|
|
import FormImagePicker from '../../components/FormImagePicker';
|
|
import { SwitchField } from '../../components/SwitchField';
|
|
|
|
import { SelectField } from '../../components/SelectField';
|
|
import { SelectFieldMany } from '../../components/SelectFieldMany';
|
|
import { RichTextField } from '../../components/RichTextField';
|
|
|
|
import { create } from '../../stores/orders/ordersSlice';
|
|
import { useAppDispatch } from '../../stores/hooks';
|
|
import { useRouter } from 'next/router';
|
|
import moment from 'moment';
|
|
|
|
const initialValues = {
|
|
strategy: '',
|
|
|
|
trading_pair: '',
|
|
|
|
order_value: '',
|
|
|
|
order_date: '',
|
|
|
|
is_profitable: false,
|
|
};
|
|
|
|
const OrdersNew = () => {
|
|
const router = useRouter();
|
|
const dispatch = useAppDispatch();
|
|
|
|
const handleSubmit = async (data) => {
|
|
await dispatch(create(data));
|
|
await router.push('/orders/orders-list');
|
|
};
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>{getPageTitle('New Item')}</title>
|
|
</Head>
|
|
<SectionMain>
|
|
<SectionTitleLineWithButton
|
|
icon={mdiChartTimelineVariant}
|
|
title='New Item'
|
|
main
|
|
>
|
|
{''}
|
|
</SectionTitleLineWithButton>
|
|
<CardBox>
|
|
<Formik
|
|
initialValues={initialValues}
|
|
onSubmit={(values) => handleSubmit(values)}
|
|
>
|
|
<Form>
|
|
<FormField label='Strategy' labelFor='strategy'>
|
|
<Field
|
|
name='strategy'
|
|
id='strategy'
|
|
component={SelectField}
|
|
options={[]}
|
|
itemRef={'bot'}
|
|
></Field>
|
|
</FormField>
|
|
|
|
<FormField label='TradingPair' labelFor='trading_pair'>
|
|
<Field
|
|
name='trading_pair'
|
|
id='trading_pair'
|
|
component={SelectField}
|
|
options={[]}
|
|
itemRef={'trading_pairs'}
|
|
></Field>
|
|
</FormField>
|
|
|
|
<FormField label='OrderValue'>
|
|
<Field
|
|
type='number'
|
|
name='order_value'
|
|
placeholder='OrderValue'
|
|
/>
|
|
</FormField>
|
|
|
|
<FormField label='OrderDate'>
|
|
<Field
|
|
type='datetime-local'
|
|
name='order_date'
|
|
placeholder='OrderDate'
|
|
/>
|
|
</FormField>
|
|
|
|
<FormField label='IsProfitable' labelFor='is_profitable'>
|
|
<Field
|
|
name='is_profitable'
|
|
id='is_profitable'
|
|
component={SwitchField}
|
|
></Field>
|
|
</FormField>
|
|
|
|
<BaseDivider />
|
|
<BaseButtons>
|
|
<BaseButton type='submit' color='info' label='Submit' />
|
|
<BaseButton type='reset' color='info' outline label='Reset' />
|
|
<BaseButton
|
|
type='reset'
|
|
color='danger'
|
|
outline
|
|
label='Cancel'
|
|
onClick={() => router.push('/orders/orders-list')}
|
|
/>
|
|
</BaseButtons>
|
|
</Form>
|
|
</Formik>
|
|
</CardBox>
|
|
</SectionMain>
|
|
</>
|
|
);
|
|
};
|
|
|
|
OrdersNew.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<LayoutAuthenticated permission={'CREATE_ORDERS'}>
|
|
{page}
|
|
</LayoutAuthenticated>
|
|
);
|
|
};
|
|
|
|
export default OrdersNew;
|