aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2023-11-29 12:28:03 +0100
committerArmand Philippot <git@armandphilippot.com>2023-11-29 13:47:07 +0100
commitdfa894b76ee3584bf169710c78c57330c5d6ee67 (patch)
tree41380a93e2838452236a720f27f85fb14502f56a /src/utils
parent29a1dec4de0aa7ba64ef068a83b1b8589fbc3ad0 (diff)
fix(pages,services): make thematics & topics pages usable again
When I refactored the fetchers and convertors in #f111685 I forgot to convert WPThematicPreview and WPTopicPreview so the thematics and topics pages was broken. I also: * removed the ToC added by error in #70b4f63 * fix heading styles * fix website url in topics pages
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/helpers/pages.tsx8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/utils/helpers/pages.tsx b/src/utils/helpers/pages.tsx
index 9e015db..24f5503 100644
--- a/src/utils/helpers/pages.tsx
+++ b/src/utils/helpers/pages.tsx
@@ -3,6 +3,14 @@ import type { LinksWidgetItemData, PostData } from '../../components';
import type { ArticlePreview, PageLink } from '../../types';
import { ROUTES } from '../constants';
+export const getUniquePageLinks = (pageLinks: PageLink[]): PageLink[] => {
+ const pageLinksIds = pageLinks.map((pageLink) => pageLink.id);
+
+ return pageLinks.filter(
+ ({ id }, index) => !pageLinksIds.includes(id, index + 1)
+ );
+};
+
/**
* Method to sort PageLink objects by name.
*