1
0
mirror of https://github.com/GenderDysphoria/GenderDysphoria.fyi.git synced 2025-11-25 20:42:40 +00:00

Added support for loading posts

This commit is contained in:
Jocelyn Badgley (Twipped)
2020-02-29 16:27:55 -08:00
parent 56d5f33453
commit 27621e0edd
10 changed files with 216 additions and 88 deletions

View File

@@ -31,23 +31,27 @@ module.exports = exports = class Page extends File {
'flags',
);
this.engine = ENGINE[this.type] || ENGINE.COPY;
}
_out () {
var isIndexPage = (this.name === 'index');
var isClean = isCleanUrl(this.ext);
if (isClean && isIndexPage) {
this.output = path.join(this.base, 'index.html');
this.out = path.join(this.base, 'index.html');
this.json = path.join(this.base, 'index.json');
this.url = this.dir;
} else if (isClean) {
this.output = path.join(this.base, this.name, 'index.html');
this.out = path.join(this.base, this.name, 'index.html');
this.json = path.join(this.base, this.name + '.json');
this.url = path.join(this.dir, this.name);
} else if (isIndexPage) {
this.output = path.join(this.base, 'index.html');
this.out = path.join(this.base, 'index.html');
this.json = path.join(this.base, this.name + '.json');
this.url = this.dir;
} else {
this.output = path.join(this.base, this.basename);
this.out = path.join(this.base, this.basename);
this.json = path.join(this.base, this.basename + '.json');
this.url = path.join(this.dir, this.basename);
}
@@ -55,8 +59,6 @@ module.exports = exports = class Page extends File {
const url = new URL(pkg.siteInfo.siteUrl);
url.pathname = this.url;
this.fullurl = url.href;
this.engine = ENGINE[this.type] || ENGINE.COPY;
}
async load (PublicFiles) {
@@ -65,8 +67,6 @@ module.exports = exports = class Page extends File {
fs.stat(this.input).catch(() => ({})),
]);
const { titlecard, assets } = PublicFiles.for(this.dir);
// empty file
if (!raw || !ctime) {
log.error('Could not load page: ' + this.filepath);
@@ -82,20 +82,28 @@ module.exports = exports = class Page extends File {
this.source = body;
this.meta = meta;
this.images = assets;
this.titlecard = titlecard;
this.tweets = (meta.tweets || []).map(parseTweetId);
this.dateCreated = meta.date && new Date(meta.date) || ctime;
this.dateModified = mtime;
this.classes = Array.from(new Set(meta.classes || []));
this._parse(PublicFiles);
return this;
}
_parse (PublicFiles) {
const { titlecard, webready } = PublicFiles.for(this.dir);
this.images = webready;
this.titlecard = titlecard;
this.tweets = (this.meta.tweets || []).map(parseTweetId);
this.classes = Array.from(new Set(this.meta.classes || []));
this.flags = this.classes.reduce((res, item) => {
var camelCased = item.replace(/-([a-z])/g, (g) => g[1].toUpperCase());
res[camelCased] = true;
return res;
}, {});
return this;
}
tasks () {