52 lines
1.2 KiB
JavaScript
52 lines
1.2 KiB
JavaScript
/*eslint-disable */
|
|
import * as R from 'ramda'
|
|
|
|
/// Types
|
|
const Category = {
|
|
title: String,
|
|
slug: String,
|
|
resources: [Resource],
|
|
}
|
|
|
|
const Resource = {
|
|
title: String,
|
|
cleanTitle: String,
|
|
desc: String,
|
|
path: String,
|
|
url: String,
|
|
tags: [String],
|
|
}
|
|
|
|
/// Functions
|
|
// isNotEmpty [a] -> Bool
|
|
export const isNotEmpty = R.compose(R.not, R.isEmpty)
|
|
|
|
// getAllResources :: [Category] -> [Resource]
|
|
export const getAllResources = R.compose(R.flatten, R.pluck('resources'))
|
|
|
|
// getAllTags :: [Category] -> [String]
|
|
export const getAllTags = R.compose(
|
|
R.uniq,
|
|
R.flatten,
|
|
R.pluck('tags'),
|
|
getAllResources
|
|
)
|
|
|
|
// tagsNotEmpty :: Resource -> Bool
|
|
export const tagsNotEmpty = R.compose(isNotEmpty, R.prop('tags'))
|
|
|
|
// cleanString :: String -> String
|
|
export const cleanString = R.compose(R.toLower, R.trim)
|
|
|
|
// true if list2 has element that appears in list1 else false
|
|
// includesElOf :: [a] -> [a] -> Bool
|
|
export const includesElOf = R.curry((list1, list2) => R.any(el => R.includes(el, list2), list1))
|
|
|
|
// Similar to includesElOf, but partially included strings are also allowed
|
|
// partiallyIncludesElOf :: [String] -> [String] -> Bool
|
|
export const partiallyIncludesElOf = R.curry((list1, list2) =>
|
|
R.any(el2 =>
|
|
R.any(R.includes(el2), list1),
|
|
list2)
|
|
)
|