Skip to content

Commit

Permalink
Merge pull request #358 from photogabble/feature/331-content-type-lis…
Browse files Browse the repository at this point in the history
…t-on-writing

Add content type list on /writing/ page
  • Loading branch information
carbontwelve authored Oct 3, 2024
2 parents 63c8e83 + 3f12b62 commit 5da88a9
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 23 deletions.
31 changes: 12 additions & 19 deletions lib/filters.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,17 +109,23 @@ export const randomItems = (arr, count) => {
}

/**
* Returns list filtered to only include items where key matches value.
* Returns list filtered to only include items where key matches value. This supports
* wildcards for example value='type/*'.
*
* @param {Array<any>} collection
* @param {String} key
* @param {String|Array<String>}value
* @param {String|boolean|Array<String>}value
* @return {Array<any>}
*/
export const whereKeyEquals = (collection, key, value) =>
Array.isArray(value)
? collection.filter(item => value.includes(item[key]) || (item.data && value.includes(item.data[key])))
: collection.filter(item => item[key] === value || (item.data && item.data[key] === value));
: collection.filter(item => {
if (typeof value === 'string' && value.includes('/*')) {
return item[key].startsWith(`${value.split('/')[0]}/`);
}
return item[key] === value || (item.data && item.data[key] === value);
});

export const whereKeyFalse = (collection, key) => collection.filter(item => item[key] === false || typeof item[key] === 'undefined');

Expand Down Expand Up @@ -178,25 +184,12 @@ export const specialTagMeta = (list) => {
* Takes a list of tags and returns them mapped as topic or list items.
*
* @param list {Array<string>}
* @param topics {Array<any>}
* @returns {Array<{title: string, description: string, slug:string, url: string}>}
*/
export const formatTagList = (list) => {
export const formatTagList = (list, topics = []) => {
return (list)
? list.map((tag) => {

if (isSpecialTag(tag)) {
return specialTagMeta(tag);
}

const slug = slugify(tag);

return {
title: tag,
description: '',
slug,
permalink: `/topic/${slug}`,
}
})
? topics.filter(({topic}) => list.includes(topic))
: [];
};

Expand Down
7 changes: 3 additions & 4 deletions src/_includes/components/side-bars/writing.njk
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@

<hr/>

{% set contentTypes = collections | specialTagsInCollection('type', ['type/resource', 'type/project', 'type/topic', 'stage/stub']) %}
{% set contentTypes = collections.topics | whereKeyEquals('topic', 'type/*') %}
<section>
<nav>
{% for contentType in contentTypes %}
{% set isContentType = tags | includes(contentType.name) %}
{% set currentContentType = metadata.contentTypes[contentType.name] %}
<a href="{{ contentType.permalink }}">{{ contentType.title or contentType.name }} ({{ contentType.usages }}){% if isContentType %}*{% endif %}</a>
{% set isContentType = tags | includes(contentType.topic) %}
<a href="{{ contentType.permalink }}">{{ contentType.title or contentType.name }}{% if isContentType %}*{% endif %}</a>
{% endfor %}
</nav>
</section>

0 comments on commit 5da88a9

Please sign in to comment.