Files
www_threefold_io/src/pages/Blog.vue
2021-08-24 12:04:01 +02:00

331 lines
8.2 KiB
Vue

<template>
<Layout>
<!-- <NewsFilterHeader
@selectedTopic="setTopic"
@selectedYear="setYear"
@selectedMonth="setMonth"
@resetAll="resetAll"
:topics="topics"
:years="years"
:months="months"
/> -->
<div class="container sm:pxi-0 mx-auto overflow-hidden">
<div class="flex my-5">
<FilterDropdown
class="xs:w-2/3"
@selectedTopic="setTopic"
:topics="topics"
/>
<SearchBox class="xs:w-1/3" v-model="search" />
</div>
<div v-if="search !== ''">
<div v-if="searchResults.length > 0">
<div class="flex flex-wrap news pt-12 pb-8 mt-8 mx-4 sm:-mx-4">
<PostListItem
v-for="post in searchResults"
:key="post.node.id"
:record="post.node"
/>
</div>
</div>
</div>
<div v-else class="flex flex-wrap news pt-12 pb-8 mt-8 mx-4 sm:-mx-4">
<PostListItem
v-for="post in blogs.edges"
:key="post.node.id"
:record="post.node"
/>
</div>
<div
class="text-center"
v-if="
blogs.edges.length == 0 ||
searchResults.length == 0 ||
searchResults == ''
"
>
<h2 class="inlibe-flex mx-auto text-gray-700 w-3/4">
Your search didn't return any results. Please try again.
</h2>
</div>
<div class="pagination flex justify-center mb-8">
<Pagination
:baseUrl="baseurl"
:currentPage="blogs.pageInfo.currentPage"
:totalPages="blogs.pageInfo.totalPages"
:maxVisibleButtons="5"
v-if="searchResults.length > 7 && blogs.edges.length > 7"
/>
</div>
</div>
</Layout>
</template>
<page-query>
query($page: Int){
entries: allBlog(perPage: 10, page: $page, sortBy: "created", order: DESC, filter: {category: { contains: ["foundation"]}}) @paginate{
totalCount
pageInfo {
totalPages
currentPage
}
edges {
node {
title
tags{
id
title
path
}
excerpt
category{
id
title
}
image(width:800)
path
humanTime : created(format:"DD MMM YYYY")
datetime : created
authors {
id
name
image(width:64, height:64, fit:inside)
path
}
}
}
}
markdownPage(id: "home") {
id
metaImg
}
topics: allBlogTag {
edges{
node{
title
}
}
}
}
</page-query>
<script>
import PostListItem from "~/components/custom/Cards/PostListItem.vue";
import Pagination from "~/components/custom/Pagination.vue";
import NewsFilterHeader from "~/components/custom/NewsFilterHeader.vue";
import SearchBox from "~/components/custom/SearchBox.vue";
import FilterDropdown from "~/components/custom/FilterDropdown.vue";
export default {
data() {
const allMonths = [
"All Months",
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December",
];
const currYear = new Date().getFullYear();
var years = ["All Years"];
var r = this.range(2019, currYear);
r.forEach((year) => years.push(String(year)));
return {
selectedTopic: "Popular Topics",
selectedYear: "All Years",
selectedMonth: "All Months",
months: allMonths,
years: years,
listArchive: false,
archiveButtonText: "Archive",
search: "",
};
},
metaInfo() {
return {
title: "",
titleTemplate: "ThreeFold | Blog",
meta: [
{
key: "description",
name: "description",
content:
"A collection of posts from the ThreeFold Foundation team about our products, our technology, our ecosystem, our why, and more.",
},
{
key: "og:title",
property: "og:title",
content: "ThreeFold | Blog",
},
{
key: "og:description",
property: "og:description",
content:
"A collection of posts from the ThreeFold Foundation team about our products, our technology, our ecosystem, our why, and more.",
},
{
key: "og:image",
property: "og:image",
content: this.getImg,
},
{
key: "twitter:description",
name: "twitter:description",
content:
"A collection of posts from the ThreeFold Foundation team about our products, our technology, our ecosystem, our why, and more.",
},
{
key: "twitter:image",
property: "twitter:image",
content: this.getImg,
},
{
key: "twitter:title",
property: "twitter:title",
content: "ThreeFold | Blog",
},
],
};
},
components: {
PostListItem,
Pagination,
NewsFilterHeader,
SearchBox,
FilterDropdown,
},
methods: {
setTopic: function (topic) {
this.selectedTopic = topic;
},
setYear(year) {
this.selectedYear = year;
},
setMonth(month) {
this.selectedMonth = month;
},
resetAll() {
this.selectedTopic = "Popular Topics";
this.selectedYear = "All Years";
this.selectedMonth = "All Months";
},
range(start, end, step) {
var range = [];
var typeofStart = typeof start;
var typeofEnd = typeof end;
if (step === 0) {
throw TypeError("Step cannot be zero.");
}
if (typeofStart == "undefined" || typeofEnd == "undefined") {
throw TypeError("Must pass start and end arguments.");
} else if (typeofStart != typeofEnd) {
throw TypeError("Start and end arguments must be of same type.");
}
typeof step == "undefined" && (step = 1);
if (end < start) {
step = -step;
}
if (typeofStart == "number") {
while (step > 0 ? end >= start : end <= start) {
range.push(start);
start += step;
}
} else if (typeofStart == "string") {
if (start.length != 1 || end.length != 1) {
throw TypeError("Only strings with one character are supported.");
}
start = start.charCodeAt(0);
end = end.charCodeAt(0);
while (step > 0 ? end >= start : end <= start) {
range.push(String.fromCharCode(start));
start += step;
}
} else {
throw TypeError("Only string and number types are supported");
}
return range;
},
},
computed: {
topics: function () {
var res = ["Popular Topics"];
this.$page.topics.edges.forEach((edge) => res.push(edge.node.title));
return res;
},
contentHeight() {
if (process.isClient) {
return window.innerHeight - 100;
}
},
getImg() {
let img = "";
if (process.isClient) {
img = `${window.location.origin}${this.$page.markdownPage.metaImg.src}`;
}
return img;
},
blogs() {
var res = {};
var old = this.$page.entries;
res.totalCount = old.totalCount;
res.pageInfo = old.pageInfo;
res.edges = [];
for (var i = 0; i < old.edges.length; i++) {
var node = old.edges[i].node;
// Now check topic
var topics = ["Popular Topics"];
node.tags.forEach((tag) => topics.push(tag.title));
var nodeDate = new Date(node.datetime);
if (!topics.includes(this.selectedTopic)) continue;
// Check year
var years = ["All Years", String(nodeDate.getFullYear())];
if (!years.includes(this.selectedYear)) continue;
// Check Month
var months = ["All Months", this.months[nodeDate.getMonth() + 1]];
if (!months.includes(this.selectedMonth)) continue;
res.edges.push({ node: node, id: node.id });
}
return res;
},
baseurl() {
return "/blog/";
},
searchResults() {
return this.$page.entries.edges.filter((blog) => {
return blog.node.title
.toLowerCase()
.includes(this.search.toLowerCase().trim());
});
},
},
};
</script>