Skip to content

Commit

Permalink
Merge pull request #1076 from w3bdesign/1001-refactor-code
Browse files Browse the repository at this point in the history
Re-enable SSR
  • Loading branch information
w3bdesign committed Jun 9, 2023
2 parents b1af793 + 1c97c59 commit d5c899c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 11 deletions.
3 changes: 1 addition & 2 deletions nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
import { defineNuxtConfig } from "nuxt/config";

export default defineNuxtConfig({
//ssr: true,
ssr: false,
ssr: true,
components: true,
css: ["~/assets/css/main.css", "~/assets/css/animate.min.css"],
modules: [
Expand Down
25 changes: 16 additions & 9 deletions utils/functions.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import { uid } from "uid";

const config = useRuntimeConfig();

/**
* Checks if the given data object has any variations by accessing the product's variations nodes array.
*
Expand All @@ -15,19 +13,28 @@ export function hasVariations(data) {
}

/**
* Formats the given price to the currency specified in the config file using the Intl.NumberFormat object.
* Formats a given price into a string with a currency symbol and locale.
*
* @param {number} price - The price to be formatted.
* @return {string} The formatted price as a string with the currency symbol and no decimal places.
* @param {string} price - The price to format.
* @param {string} currency - The currency to use. Defaults to "NOK".
* @param {string} currencyLocale - The locale to use for the currency symbol. Defaults to "nb-NO".
* @return {string} The formatted price as a string with the currency symbol and locale.
*/
export function formatPrice(price) {
// Convert the price string to a numerical float value
export function formatPrice(price, currency, currencyLocale) {
// Set default values
const currencyPrice = currency || "NOK";
const currencySymbol = currencyLocale || "nb-NO";

if (!price) {
return;
}

// Convert the price string to a numerical float value
const numericPrice = parseFloat(price.replace(/[^\d.]/g, ""));

return new Intl.NumberFormat(config.public.currencyLocale, {
return new Intl.NumberFormat(currencySymbol, {
style: "currency",
currency: config.public.currency,
currency: currencyPrice,
minimumFractionDigits: 0,
maximumFractionDigits: 0,
}).format(numericPrice);
Expand Down

1 comment on commit d5c899c

@vercel
Copy link

@vercel vercel bot commented on d5c899c Jun 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.