blob: 1be44f01068474df39e1b487ccea4efb0cf72291 (
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
|
/**
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import type { IAppDiscoverCarousel, IAppDiscoverElement, IAppDiscoverElements, IAppDiscoverPost, IAppDiscoverShowcase } from '../constants/AppDiscoverTypes.ts'
/**
* Helper to transform the JSON API results to proper frontend objects (app discover section elements)
*
* @param element The JSON API element to transform
*/
export const parseApiResponse = (element: Record<string, unknown>): IAppDiscoverElements => {
const appElement = { ...element }
if (appElement.date) {
appElement.date = Date.parse(appElement.date as string)
}
if (appElement.expiryDate) {
appElement.expiryDate = Date.parse(appElement.expiryDate as string)
}
if (appElement.type === 'post') {
return appElement as unknown as IAppDiscoverPost
} else if (appElement.type === 'showcase') {
return appElement as unknown as IAppDiscoverShowcase
} else if (appElement.type === 'carousel') {
return appElement as unknown as IAppDiscoverCarousel
}
throw new Error(`Invalid argument, app discover element with type ${element.type ?? 'unknown'} is unknown`)
}
/**
* Filter outdated or upcoming elements
* @param element Element to check
*/
export const filterElements = (element: IAppDiscoverElement) => {
const now = Date.now()
// Element not yet published
if (element.date && element.date > now) {
return false
}
// Element expired
if (element.expiryDate && element.expiryDate < now) {
return false
}
return true
}
|