mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
80 lines
2.1 KiB
TypeScript
80 lines
2.1 KiB
TypeScript
// @ts-nocheck
|
|
import React, { useEffect } from 'react';
|
|
import intl from 'react-intl-universal';
|
|
import { Formik } from 'formik';
|
|
import { Intent } from '@blueprintjs/core';
|
|
|
|
import '@/style/pages/Preferences/GeneralForm.scss';
|
|
|
|
import { AppToaster } from '@/components';
|
|
import GeneralForm from './GeneralForm';
|
|
import { PreferencesGeneralSchema } from './General.schema';
|
|
import { useGeneralFormContext } from './GeneralFormProvider';
|
|
import withDashboardActions from '@/containers/Dashboard/withDashboardActions';
|
|
|
|
import { compose, transformToForm } from '@/utils';
|
|
|
|
const defaultValues = {
|
|
name: '',
|
|
industry: '',
|
|
location: '',
|
|
base_currency: '',
|
|
language: '',
|
|
fiscal_year: '',
|
|
date_format: '',
|
|
timezone: '',
|
|
};
|
|
|
|
/**
|
|
* Preferences - General form Page.
|
|
*/
|
|
function GeneralFormPage({
|
|
// #withDashboardActions
|
|
changePreferencesPageTitle,
|
|
}) {
|
|
const { updateOrganization, organization } = useGeneralFormContext();
|
|
|
|
useEffect(() => {
|
|
changePreferencesPageTitle(intl.get('general'));
|
|
}, [changePreferencesPageTitle]);
|
|
|
|
// Initial values.
|
|
const initialValues = {
|
|
...transformToForm(organization.metadata, defaultValues),
|
|
};
|
|
// Handle the form submit.
|
|
const handleFormSubmit = (values, { setSubmitting, resetForm }) => {
|
|
// Handle request success.
|
|
const onSuccess = (response) => {
|
|
AppToaster.show({
|
|
message: intl.get('preferences.general.success_message'),
|
|
intent: Intent.SUCCESS,
|
|
});
|
|
setSubmitting(false);
|
|
|
|
// Reboot the application if the application's language is mutated.
|
|
if (organization.metadata?.language !== values.language) {
|
|
window.location.reload();
|
|
}
|
|
};
|
|
// Handle request error.
|
|
const onError = (errors) => {
|
|
setSubmitting(false);
|
|
};
|
|
updateOrganization({ ...values })
|
|
.then(onSuccess)
|
|
.catch(onError);
|
|
};
|
|
|
|
return (
|
|
<Formik
|
|
initialValues={initialValues}
|
|
validationSchema={PreferencesGeneralSchema}
|
|
onSubmit={handleFormSubmit}
|
|
component={GeneralForm}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export default compose(withDashboardActions)(GeneralFormPage);
|