996 lines
10 KiB
TypeScript
996 lines
10 KiB
TypeScript
import { mdiChartTimelineVariant, mdiUpload } from '@mdi/js'
|
|
import Head from 'next/head'
|
|
import React, { ReactElement, useEffect, useState } from 'react'
|
|
import DatePicker from "react-datepicker";
|
|
import "react-datepicker/dist/react-datepicker.css";
|
|
import dayjs from "dayjs";
|
|
|
|
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 { SelectField } from "../../components/SelectField";
|
|
import { SelectFieldMany } from "../../components/SelectFieldMany";
|
|
import { SwitchField } from '../../components/SwitchField'
|
|
import {RichTextField} from "../../components/RichTextField";
|
|
|
|
import { update, fetch } from '../../stores/assets/assetsSlice'
|
|
import { useAppDispatch, useAppSelector } from '../../stores/hooks'
|
|
import { useRouter } from 'next/router'
|
|
import {saveFile} from "../../helpers/fileSaver";
|
|
import dataFormatter from '../../helpers/dataFormatter';
|
|
import ImageField from "../../components/ImageField";
|
|
|
|
|
|
|
|
const EditAssetsPage = () => {
|
|
const router = useRouter()
|
|
const dispatch = useAppDispatch()
|
|
const initVals = {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
id: '',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
'title': '',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
description: '',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
asset_type: '',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
asset_category: '',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
product_categories: [],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
tags: [],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
thumbnail: [],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
original_file: [],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uploaded_at: new Date(),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uploaded_by: null,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
allow_download: false,
|
|
|
|
requiredGdpLevel: 1,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
const [initialValues, setInitialValues] = useState(initVals)
|
|
|
|
const { assets } = useAppSelector((state) => state.assets)
|
|
|
|
|
|
const { id } = router.query
|
|
|
|
useEffect(() => {
|
|
dispatch(fetch({ id: id }))
|
|
}, [id])
|
|
|
|
useEffect(() => {
|
|
if (typeof assets === 'object') {
|
|
setInitialValues(assets)
|
|
}
|
|
}, [assets])
|
|
|
|
useEffect(() => {
|
|
if (typeof assets === 'object') {
|
|
const newInitialVal = {...initVals};
|
|
Object.keys(initVals).forEach(el => newInitialVal[el] = (assets)[el])
|
|
setInitialValues(newInitialVal);
|
|
}
|
|
}, [assets])
|
|
|
|
const handleSubmit = async (data) => {
|
|
await dispatch(update({ id: id, data }))
|
|
await router.push('/assets/assets-list')
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>{getPageTitle('Edit assets')}</title>
|
|
</Head>
|
|
<SectionMain>
|
|
<SectionTitleLineWithButton icon={mdiChartTimelineVariant} title={'Edit assets'} main>
|
|
{''}
|
|
</SectionTitleLineWithButton>
|
|
<CardBox>
|
|
<Formik
|
|
enableReinitialize
|
|
initialValues={initialValues}
|
|
onSubmit={(values) => handleSubmit(values)}
|
|
>
|
|
<Form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField
|
|
label="ID"
|
|
>
|
|
<Field
|
|
type="number"
|
|
name="id"
|
|
placeholder="ID"
|
|
/>
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField
|
|
label="Title"
|
|
>
|
|
<Field
|
|
name="title"
|
|
placeholder="Title"
|
|
/>
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField label='Description' hasTextareaHeight>
|
|
<Field
|
|
name='description'
|
|
id='description'
|
|
component={RichTextField}
|
|
></Field>
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField label="AssetType" labelFor="asset_type">
|
|
<Field name="asset_type" id="asset_type" component="select">
|
|
|
|
<option value="image">image</option>
|
|
|
|
<option value="video">video</option>
|
|
|
|
<option value="artwork">artwork</option>
|
|
|
|
</Field>
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField label="AssetCategory" labelFor="asset_category">
|
|
<Field name="asset_category" id="asset_category" component="select">
|
|
|
|
<option value="ProductPhotos">ProductPhotos</option>
|
|
|
|
<option value="ApplicationScenarios">ApplicationScenarios</option>
|
|
|
|
<option value="Videos">Videos</option>
|
|
|
|
<option value="Packaging&Artwork">Packaging&Artwork</option>
|
|
|
|
<option value="Logos&BrandAssets">Logos&BrandAssets</option>
|
|
|
|
</Field>
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField label='ProductCategories' labelFor='product_categories'>
|
|
<Field
|
|
name='product_categories'
|
|
id='product_categories'
|
|
component={SelectFieldMany}
|
|
options={initialValues.product_categories}
|
|
itemRef={'product_categories'}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
showField={'name'}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
></Field>
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField label='Tags' labelFor='tags'>
|
|
<Field
|
|
name='tags'
|
|
id='tags'
|
|
component={SelectFieldMany}
|
|
options={initialValues.tags}
|
|
itemRef={'tags'}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
showField={'name'}
|
|
|
|
|
|
|
|
|
|
></Field>
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField>
|
|
<Field
|
|
label='Thumbnail'
|
|
color='info'
|
|
icon={mdiUpload}
|
|
path={'assets/thumbnail'}
|
|
name='thumbnail'
|
|
id='thumbnail'
|
|
schema={{
|
|
size: undefined,
|
|
formats: undefined,
|
|
}}
|
|
component={FormImagePicker}
|
|
></Field>
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField>
|
|
<Field
|
|
label='OriginalFile'
|
|
color='info'
|
|
icon={mdiUpload}
|
|
path={'assets/original_file'}
|
|
name='original_file'
|
|
id='original_file'
|
|
schema={{
|
|
size: undefined,
|
|
formats: undefined,
|
|
}}
|
|
component={FormFilePicker}
|
|
></Field>
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField
|
|
label="UploadedAt"
|
|
>
|
|
<DatePicker
|
|
dateFormat="yyyy-MM-dd hh:mm"
|
|
showTimeSelect
|
|
selected={initialValues.uploaded_at ?
|
|
new Date(
|
|
dayjs(initialValues.uploaded_at).format('YYYY-MM-DD hh:mm'),
|
|
) : null
|
|
}
|
|
onChange={(date) => setInitialValues({...initialValues, 'uploaded_at': date})}
|
|
/>
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField label='UploadedBy' labelFor='uploaded_by'>
|
|
<Field
|
|
name='uploaded_by'
|
|
id='uploaded_by'
|
|
component={SelectField}
|
|
options={initialValues.uploaded_by}
|
|
itemRef={'users'}
|
|
|
|
|
|
showField={'firstName'}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
></Field>
|
|
</FormField>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormField label='AllowDownload(GDPPartnersOnly)' labelFor='allow_download'>
|
|
<Field
|
|
name='allow_download'
|
|
id='allow_download'
|
|
component={SwitchField}
|
|
></Field>
|
|
</FormField>
|
|
|
|
<FormField label="Required GDP Level" labelFor="requiredGdpLevel">
|
|
<Field name="requiredGdpLevel" id="requiredGdpLevel" component="select">
|
|
<option value={1}>Blue</option>
|
|
<option value={2}>Silver</option>
|
|
<option value={3}>Gold</option>
|
|
<option value={4}>Platinum</option>
|
|
</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('/assets/assets-list')}/>
|
|
</BaseButtons>
|
|
</Form>
|
|
</Formik>
|
|
</CardBox>
|
|
</SectionMain>
|
|
</>
|
|
)
|
|
}
|
|
|
|
EditAssetsPage.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<LayoutAuthenticated
|
|
|
|
permission={'UPDATE_ASSETS'}
|
|
|
|
>
|
|
{page}
|
|
</LayoutAuthenticated>
|
|
)
|
|
}
|
|
|
|
export default EditAssetsPage |