Prices can now be properly compared between currencies
This commit is contained in:
parent
386efce0a7
commit
1b25bcc22d
|
@ -4,6 +4,7 @@ import ContentPanel, {
|
||||||
ContentPanelWidthSizes,
|
ContentPanelWidthSizes,
|
||||||
} from "components/Panels/ContentPanel";
|
} from "components/Panels/ContentPanel";
|
||||||
import {
|
import {
|
||||||
|
GetCurrenciesQuery,
|
||||||
GetLibraryItemsPreviewQuery,
|
GetLibraryItemsPreviewQuery,
|
||||||
GetWebsiteInterfaceQuery,
|
GetWebsiteInterfaceQuery,
|
||||||
} from "graphql/operations-types";
|
} from "graphql/operations-types";
|
||||||
|
@ -13,7 +14,7 @@ import AppLayout from "components/AppLayout";
|
||||||
import LibraryItemsPreview from "components/Library/LibraryItemsPreview";
|
import LibraryItemsPreview from "components/Library/LibraryItemsPreview";
|
||||||
import Select from "components/Select";
|
import Select from "components/Select";
|
||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import { prettyDate, prettyinlineTitle } from "queries/helpers";
|
import { convertPrice, prettyDate, prettyinlineTitle } from "queries/helpers";
|
||||||
import Switch from "components/Switch";
|
import Switch from "components/Switch";
|
||||||
import { AppStaticProps, getAppStaticProps } from "queries/getAppStaticProps";
|
import { AppStaticProps, getAppStaticProps } from "queries/getAppStaticProps";
|
||||||
|
|
||||||
|
@ -27,7 +28,7 @@ type GroupLibraryItems = Map<
|
||||||
>;
|
>;
|
||||||
|
|
||||||
export default function Library(props: LibraryProps): JSX.Element {
|
export default function Library(props: LibraryProps): JSX.Element {
|
||||||
const { langui, items } = props;
|
const { langui, items, currencies } = props;
|
||||||
|
|
||||||
const [showSubitems, setShowSubitems] = useState<boolean>(false);
|
const [showSubitems, setShowSubitems] = useState<boolean>(false);
|
||||||
const [showPrimaryItems, setShowPrimaryItems] = useState<boolean>(true);
|
const [showPrimaryItems, setShowPrimaryItems] = useState<boolean>(true);
|
||||||
|
@ -40,7 +41,7 @@ export default function Library(props: LibraryProps): JSX.Element {
|
||||||
);
|
);
|
||||||
|
|
||||||
const [sortedItems, setSortedItem] = useState<LibraryProps["items"]>(
|
const [sortedItems, setSortedItem] = useState<LibraryProps["items"]>(
|
||||||
sortBy(groupingMethod, filteredItems)
|
sortBy(groupingMethod, filteredItems, currencies)
|
||||||
);
|
);
|
||||||
|
|
||||||
const [groups, setGroups] = useState<GroupLibraryItems>(
|
const [groups, setGroups] = useState<GroupLibraryItems>(
|
||||||
|
@ -54,7 +55,7 @@ export default function Library(props: LibraryProps): JSX.Element {
|
||||||
}, [showSubitems, items, showPrimaryItems, showSecondaryItems]);
|
}, [showSubitems, items, showPrimaryItems, showSecondaryItems]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setSortedItem(sortBy(sortingMethod, filteredItems));
|
setSortedItem(sortBy(sortingMethod, filteredItems, currencies));
|
||||||
}, [filteredItems, sortingMethod]);
|
}, [filteredItems, sortingMethod]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
@ -278,7 +279,8 @@ function filterItems(
|
||||||
|
|
||||||
function sortBy(
|
function sortBy(
|
||||||
orderByType: number,
|
orderByType: number,
|
||||||
items: LibraryProps["items"]
|
items: LibraryProps["items"],
|
||||||
|
currencies: GetCurrenciesQuery["currencies"]["data"]
|
||||||
): LibraryProps["items"] {
|
): LibraryProps["items"] {
|
||||||
switch (orderByType) {
|
switch (orderByType) {
|
||||||
case 0:
|
case 0:
|
||||||
|
@ -297,8 +299,12 @@ function sortBy(
|
||||||
});
|
});
|
||||||
case 1:
|
case 1:
|
||||||
return [...items].sort((a, b) => {
|
return [...items].sort((a, b) => {
|
||||||
const priceA = a.attributes.price ? a.attributes.price.amount : 99999;
|
const priceA = a.attributes.price
|
||||||
const priceB = b.attributes.price ? b.attributes.price.amount : 99999;
|
? convertPrice(a.attributes.price, currencies[0])
|
||||||
|
: 99999;
|
||||||
|
const priceB = b.attributes.price
|
||||||
|
? convertPrice(b.attributes.price, currencies[0])
|
||||||
|
: 99999;
|
||||||
return priceA - priceB;
|
return priceA - priceB;
|
||||||
});
|
});
|
||||||
case 2:
|
case 2:
|
||||||
|
|
|
@ -33,10 +33,7 @@ export function prettyPrice(
|
||||||
let result = "";
|
let result = "";
|
||||||
currencies.map((currency) => {
|
currencies.map((currency) => {
|
||||||
if (currency.attributes.code === targetCurrencyCode) {
|
if (currency.attributes.code === targetCurrencyCode) {
|
||||||
let amountInUSD =
|
const amountInTargetCurrency = convertPrice(pricePicker, currency);
|
||||||
pricePicker.amount * pricePicker.currency.data.attributes.rate_to_usd;
|
|
||||||
let amountInTargetCurrency =
|
|
||||||
amountInUSD / currency.attributes.rate_to_usd;
|
|
||||||
result =
|
result =
|
||||||
currency.attributes.symbol +
|
currency.attributes.symbol +
|
||||||
amountInTargetCurrency.toLocaleString(undefined, {
|
amountInTargetCurrency.toLocaleString(undefined, {
|
||||||
|
@ -48,6 +45,16 @@ export function prettyPrice(
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function convertPrice(
|
||||||
|
pricePicker: GetLibraryItemsPreviewQuery["libraryItems"]["data"][number]["attributes"]["price"],
|
||||||
|
targetCurrency: GetCurrenciesQuery["currencies"]["data"][number]
|
||||||
|
): number {
|
||||||
|
return (
|
||||||
|
(pricePicker.amount * pricePicker.currency.data.attributes.rate_to_usd) /
|
||||||
|
targetCurrency.attributes.rate_to_usd
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
export function prettySlug(slug?: string, parentSlug?: string): string {
|
export function prettySlug(slug?: string, parentSlug?: string): string {
|
||||||
if (slug) {
|
if (slug) {
|
||||||
if (parentSlug && slug.startsWith(parentSlug))
|
if (parentSlug && slug.startsWith(parentSlug))
|
||||||
|
|
Loading…
Reference in New Issue