diff --git a/framework/commerce/types.ts b/framework/commerce/types.ts index 57e707f35..bf635c9dc 100644 --- a/framework/commerce/types.ts +++ b/framework/commerce/types.ts @@ -2,12 +2,6 @@ import type { Wishlist as BCWishlist } from '@framework/api/wishlist' import type { Customer as BCCustomer } from '@framework/api/customers' import type { SearchProductsData as BCSearchProductsData } from '@framework/api/catalog/products' -export type Features = 'wishlist' | 'checkout' | string - -export type CommerceProviderConfig = { - features: Record -} - export type Discount = { // The value of the discount, can be an amount or percentage value: number diff --git a/framework/commerce/utils/features.ts b/framework/commerce/utils/features.ts deleted file mode 100644 index 72ed0d7f5..000000000 --- a/framework/commerce/utils/features.ts +++ /dev/null @@ -1,47 +0,0 @@ -import commerceProviderConfig from '../config.json' -import type { CommerceProviderConfig } from '../types' -import memo from 'lodash.memoize' - -type FeaturesAPI = { - isEnabled: (desideredFeature: string) => boolean -} - -function isFeatureEnabled(config: CommerceProviderConfig) { - const features = config.features - return (desideredFeature: string) => - Object.keys(features) - .filter((k) => features[k]) - .includes(desideredFeature) -} - -export function toEnvConfig( - configMap: CommerceProviderConfig['features'] -): Map { - let toEnvConfigMap = new Map() - Object.keys(configMap).map((r) => - toEnvConfigMap.set(`${r.toUpperCase()}_ENABLED`, configMap[r]) - ) - return toEnvConfigMap -} - -function boostrap(): FeaturesAPI { - const basis = { - isEnabled: () => false, - } - - if (!commerceProviderConfig) { - console.log('No config.json found - Please add a config.json') - return basis - } - - if (commerceProviderConfig.features) { - return { - ...basis, - isEnabled: memo(isFeatureEnabled(commerceProviderConfig)), - } - } - - return basis -} - -export default boostrap() diff --git a/package.json b/package.json index 8a7d64e6a..a8a698112 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,6 @@ }, "dependencies": { "@reach/portal": "^0.11.2", - "@types/lodash.memoize": "^4.1.6", "@vercel/fetch": "^6.1.0", "body-scroll-lock": "^3.1.5", "bowser": "^2.11.0", @@ -34,7 +33,6 @@ "js-cookie": "^2.2.1", "keen-slider": "^5.2.4", "lodash.debounce": "^4.0.8", - "lodash.memoize": "^4.1.2", "lodash.random": "^3.2.0", "lodash.throttle": "^4.1.1", "next": "^10.0.7-canary.3", diff --git a/yarn.lock b/yarn.lock index 3497602b9..47c5781fb 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1060,13 +1060,6 @@ dependencies: "@types/lodash" "*" -"@types/lodash.memoize@^4.1.6": - version "4.1.6" - resolved "https://registry.yarnpkg.com/@types/lodash.memoize/-/lodash.memoize-4.1.6.tgz#3221f981790a415cab1a239f25c17efd8b604c23" - integrity sha512-mYxjKiKzRadRJVClLKxS4wb3Iy9kzwJ1CkbyKiadVxejnswnRByyofmPMscFKscmYpl36BEEhCMPuWhA1R/1ZQ== - dependencies: - "@types/lodash" "*" - "@types/lodash.random@^3.2.6": version "3.2.6" resolved "https://registry.yarnpkg.com/@types/lodash.random/-/lodash.random-3.2.6.tgz#64b08abad168dca39c778ed40cce75b2f9e168eb" @@ -4244,11 +4237,6 @@ lodash.isstring@^4.0.1: resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" integrity sha1-1SfftUVuynzJu5XV2ur4i6VKVFE= -lodash.memoize@^4.1.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" - integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= - lodash.once@^4.0.0: version "4.1.1" resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac"