aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/helpers/pages.tsx
blob: 7b6bdcaac06fc754ea9d6e538f3745898e14475e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
import NextImage from 'next/image';
import type { LinksWidgetItemData, PostData } from '../../components';
import { getArticleFromRawData } from '../../services/graphql';
import type {
  Article,
  EdgesResponse,
  PageLink,
  RawArticle,
  RawThematicPreview,
  RawTopicPreview,
} from '../../types';
import { ROUTES } from '../constants';
import { getImageFromRawData } from './images';

/**
 * Convert raw data to a Link object.
 *
 * @param data - An object.
 * @param {number} data.databaseId - The data id.
 * @param {number} [data.logo] - The data logo.
 * @param {string} data.slug - The data slug.
 * @param {string} data.title - The data name.
 * @returns {PageLink} The link data (id, slug and title).
 */
export const getPageLinkFromRawData = (
  data: RawThematicPreview | RawTopicPreview,
  kind: 'thematic' | 'topic'
): PageLink => {
  const { databaseId, featuredImage, slug, title } = data;
  const baseUrl = `${
    kind === 'thematic' ? ROUTES.THEMATICS.INDEX : ROUTES.TOPICS
  }/`;

  return {
    id: databaseId,
    logo: featuredImage ? getImageFromRawData(featuredImage.node) : undefined,
    name: title,
    url: `${baseUrl}${slug}`,
  };
};

/**
 * Method to sort PageLink objects by name.
 *
 * @param {PageLink} a - A PageLink object.
 * @param {PageLink} b - Another PageLink object.
 * @returns {1 | -1 | 0}
 */
export const sortPageLinksByName = (a: PageLink, b: PageLink) => {
  const nameA = a.name.toUpperCase();
  const nameB = b.name.toUpperCase();

  if (nameA < nameB) return -1;
  if (nameA > nameB) return 1;
  return 0;
};

/**
 * Convert page link data to an array of links items.
 *
 * @param {PageLink[]} links - An array of page links.
 * @returns {LinksListItem[]} An array of links items.
 */
export const getLinksItemData = (links: PageLink[]): LinksWidgetItemData[] =>
  links.map((link) => {
    return {
      id: `${link.id}`,
      label: link.name,
      url: link.url,
    };
  });

/**
 * Retrieve the posts list with the article URL.
 *
 * @param {Article[]} posts - An array of articles.
 * @returns {PostData[]} An array of posts with full article URL.
 */
export const getPostsWithUrl = (posts: Article[]): PostData[] =>
  posts.map(({ intro, meta, slug, title, ...post }) => {
    return {
      ...post,
      cover: meta.cover ? <NextImage {...meta.cover} /> : undefined,
      excerpt: intro,
      heading: title,
      meta: {
        publicationDate: meta.dates.publication,
        updateDate: meta.dates.update,
        wordsCount: meta.wordsCount,
        author: meta.author?.name,
        thematics: meta.thematics,
        topics: meta.topics,
        comments:
          meta.commentsCount === undefined
            ? undefined
            : {
                count: meta.commentsCount,
                postHeading: title,
                url: `${ROUTES.ARTICLE}/${slug}#comments`,
              },
      },
      url: `${ROUTES.ARTICLE}/${slug}`,
    };
  });

/**
 * Retrieve the posts list from raw data.
 *
 * @param {EdgesResponse<RawArticle>[]} rawData - The raw data.
 * @returns {PostData[]} An array of posts.
 */
export const getPostsList = async (
  rawData: EdgesResponse<RawArticle>[]
): Promise<PostData[]> => {
  const articlesList: RawArticle[] = [];
  rawData.forEach((articleData) => {
    articleData.edges.forEach((edge) => {
      articlesList.push(edge.node);
    });
  });

  return getPostsWithUrl(
    await Promise.all(
      articlesList.map(async (article) => getArticleFromRawData(article))
    )
  );
};