From 6f0c3f5ab210d2958cee7820a72b1cdd3d0d1274 Mon Sep 17 00:00:00 2001 From: NilsOveTen Date: Tue, 31 Oct 2023 15:43:49 +0100 Subject: [PATCH] chore: rm concept-catalog-frontend toggle --- .../breadcrumbs/breadcrumbs.component.tsx | 2 +- src/config.ts | 3 -- .../form-concept/index.tsx | 6 +-- .../use-of-concept/useOfConcept.component.tsx | 45 +++++++++---------- 4 files changed, 22 insertions(+), 34 deletions(-) diff --git a/src/components/breadcrumbs/breadcrumbs.component.tsx b/src/components/breadcrumbs/breadcrumbs.component.tsx index 7c6158bc..010df4a1 100644 --- a/src/components/breadcrumbs/breadcrumbs.component.tsx +++ b/src/components/breadcrumbs/breadcrumbs.component.tsx @@ -22,7 +22,7 @@ const Breadcrumb = ({ item }) => { return ( // eslint-disable-next-line react/jsx-no-useless-fragment <> - {config.enableConceptCatalogFrontend && matchUrl.match('^/\\d+$') ? ( + {matchUrl.match('^/\\d+$') ? ( {label} diff --git a/src/config.ts b/src/config.ts index 2b3cf72c..10fdc5f7 100644 --- a/src/config.ts +++ b/src/config.ts @@ -64,9 +64,6 @@ const config = { host: env.CATALOG_COMMENTS_SERVICE_HOST }, conceptCatalogFrontendBaseUri: env.CONCEPT_CATALOG_FRONTEND_BASE_URI, - enableConceptCatalogFrontend: ['staging', 'demo'].some(environment => - window.location.hostname.includes(environment) - ), catalogAdminServiceBaseUri: env.CATALOG_ADMIN_SERVICE_BASE_URI, useDemoLogo: env.USE_DEMO_LOGO }; diff --git a/src/pages/concept-registration-page/form-concept/index.tsx b/src/pages/concept-registration-page/form-concept/index.tsx index fc0d483d..ce0d8fe1 100644 --- a/src/pages/concept-registration-page/form-concept/index.tsx +++ b/src/pages/concept-registration-page/form-concept/index.tsx @@ -187,11 +187,7 @@ export const FormConceptPure: FC = ({ } if (deleteCalled) { - if (config.enableConceptCatalogFrontend) { - window.location.href = `${config.conceptCatalogFrontendBaseUri}/${catalogId}`; - } else { - history.push(`/${catalogId}`); - } + window.location.href = `${config.conceptCatalogFrontendBaseUri}/${catalogId}`; } // since this is not dirty, don't do anything return () => {}; diff --git a/src/pages/concept-registration-page/form-concept/use-of-concept/useOfConcept.component.tsx b/src/pages/concept-registration-page/form-concept/use-of-concept/useOfConcept.component.tsx index 578d149e..e0edd98d 100644 --- a/src/pages/concept-registration-page/form-concept/use-of-concept/useOfConcept.component.tsx +++ b/src/pages/concept-registration-page/form-concept/use-of-concept/useOfConcept.component.tsx @@ -18,14 +18,11 @@ import { OptionProps, SelectField } from '../../../../components/fields/field-select/field-select.component'; -import { getConfig } from '../../../../config'; interface Props { languages: Language[]; } -const config = getConfig(); - export const UseOfTerm = ({ languages }: Props): JSX.Element => { const { values }: any = useFormikContext(); const { catalogFields } = useAppSelector(state => state.catalogFields); @@ -61,29 +58,27 @@ export const UseOfTerm = ({ languages }: Props): JSX.Element => { return (
- {config.enableConceptCatalogFrontend && ( -
- + + {statusOptions && ( + handleClearConceptStatus(form)} + defaultValue={statusOptions.find( + option => option.value === values.statusURI + )} + onChange={(form, _thisFieldName, option) => + handleChangeConceptStatus(form, option) + } /> - {statusOptions && ( - handleClearConceptStatus(form)} - defaultValue={statusOptions.find( - option => option.value === values.statusURI - )} - onChange={(form, _thisFieldName, option) => - handleChangeConceptStatus(form, option) - } - /> - )} -
- )} + )} +