-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathparsers.js
42 lines (38 loc) · 990 Bytes
/
parsers.js
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
const dateOptions = {
weekday: 'long',
year: 'numeric',
month: 'long',
day: 'numeric',
timeZone: 'UTC'
}
export function flattenIssue (issue) {
return {
id: issue.sys.id,
issueNumber: issue.fields.issueNumber,
publishedOn: issue.fields.publishedOn,
title: issue.fields.title,
description: issue.fields.description,
authors: issue.fields.authors,
stories: issue.fields.stories,
podcast: flattenPodcast(issue.fields.podcast)
}
}
export function flattenPodcast (podcast) {
return {
id: podcast.fields.id,
source: podcast.fields.source,
title: podcast.fields.issue.fields.title,
issueNumber: podcast.fields.issue.fields.issueNumber,
publishedOn: podcast.fields.issue.fields.publishedOn
}
}
export function flattenTag (tag) {
return {
id: tag.sys.id,
name: tag.fields.name
}
}
export function parseDate (publishedOn) {
const date = new Date(publishedOn)
return date.toLocaleString('en-US', dateOptions)
}