1
0
Fork 0
mirror of https://github.com/dilllxd/gitfolio.git synced 2024-08-14 22:28:09 +00:00

Fix some mistakes and use xo

This commit is contained in:
Kaustubh Ladiya 2020-01-11 22:18:56 +05:30
parent b7a21d8bd7
commit 957ada3ea7
No known key found for this signature in database
GPG key ID: A77FFE5465BD4E7D
14 changed files with 4316 additions and 560 deletions

View file

@ -1,18 +0,0 @@
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
}
}

View file

@ -1,4 +1,5 @@
{ {
"singleQuote": false,
"overrides": [ "overrides": [
{ {
"files": ["*.html", "*.ejs"], "files": ["*.html", "*.ejs"],

View file

@ -2,3 +2,4 @@
[![Dependency Status](https://img.shields.io/david/k4ustu3h/gitfolio?style=for-the-badge)](https://david-dm.org/k4ustu3h/gitfolio) [![Dependency Status](https://img.shields.io/david/k4ustu3h/gitfolio?style=for-the-badge)](https://david-dm.org/k4ustu3h/gitfolio)
[![devDependencies Status](https://img.shields.io/david/dev/k4ustu3h/gitfolio?style=for-the-badge)](https://david-dm.org/k4ustu3h/gitfolio?type=dev) [![devDependencies Status](https://img.shields.io/david/dev/k4ustu3h/gitfolio?style=for-the-badge)](https://david-dm.org/k4ustu3h/gitfolio?type=dev)
[![Code Style: Prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=for-the-badge)](https://github.com/prettier/prettier) [![Code Style: Prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=for-the-badge)](https://github.com/prettier/prettier)
[![XO code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg?style=for-the-badge)](https://github.com/xojs/xo)

15
api.js
View file

@ -14,7 +14,7 @@ async function getRepos(username, opts = {}) {
let page = 1; let page = 1;
let repos = []; let repos = [];
const sort = opts.sort; const {sort} = opts;
const order = opts.order || (sort === "full_name" ? "asc" : "desc"); const order = opts.order || (sort === "full_name" ? "asc" : "desc");
const types = opts.types || []; const types = opts.types || [];
let type = "all"; let type = "all";
@ -33,18 +33,19 @@ async function getRepos(username, opts = {}) {
if (sort && sort !== "star") { if (sort && sort !== "star") {
requestUrl += `&sort=${sort}&direction=${order}`; requestUrl += `&sort=${sort}&direction=${order}`;
} }
tempRepos = await got(requestUrl); tempRepos = await got(requestUrl);
tempRepos = JSON.parse(tempRepos.body); tempRepos = JSON.parse(tempRepos.body);
repos = repos.concat(tempRepos); repos = repos.concat(tempRepos);
} while (tempRepos.length == 100); } while (tempRepos.length === 100);
if (sort == "star") { if (sort === "star") {
repos = repos.sort(function(a, b) { repos = repos.sort((a, b) => {
if (order == "desc") { if (order === "desc") {
return b.stargazers_count - a.stargazers_count; return b.stargazers_count - a.stargazers_count;
} else {
return a.stargazers_count - b.stargazers_count;
} }
return a.stargazers_count - b.stargazers_count;
}); });
} }

View file

@ -7,7 +7,7 @@ if (workbox) {
debug: false debug: false
}); });
var defaultStrategy = workbox.strategies.networkFirst({ const defaultStrategy = workbox.strategies.networkFirst({
cacheName: "fallback", cacheName: "fallback",
plugins: [ plugins: [
new workbox.expiration.Plugin({ new workbox.expiration.Plugin({
@ -16,16 +16,16 @@ if (workbox) {
purgeOnQuotaError: true // Opt-in to automatic cleanup purgeOnQuotaError: true // Opt-in to automatic cleanup
}), }),
new workbox.cacheableResponse.Plugin({ new workbox.cacheableResponse.Plugin({
statuses: [0, 200] // for opague requests statuses: [0, 200] // For opague requests
}) })
] ]
}); });
workbox.routing.setDefaultHandler(args => { workbox.routing.setDefaultHandler(args => {
if (args.event.request.method === "GET") { if (args.event.request.method === "GET") {
return defaultStrategy.handle(args); // use default strategy return defaultStrategy.handle(args); // Use default strategy
} else {
return null;
} }
return null;
}); });
workbox.routing.registerRoute( workbox.routing.registerRoute(
@ -38,5 +38,5 @@ if (workbox) {
workbox.strategies.cacheFirst() workbox.strategies.cacheFirst()
); );
} else { } else {
console.log(`No workbox on this browser 😬`); console.log("No workbox on this browser 😬");
} }

View file

@ -5,11 +5,11 @@ const program = require("commander");
process.env.OUT_DIR = process.env.OUT_DIR || process.cwd(); process.env.OUT_DIR = process.env.OUT_DIR || process.cwd();
const { buildCommand } = require("../build"); const {buildCommand} = require("../build");
const { updateCommand } = require("../update"); const {updateCommand} = require("../update");
const { uiCommand } = require("../ui"); const {uiCommand} = require("../ui");
const { runCommand } = require("../run"); const {runCommand} = require("../run");
const { version } = require("../package.json"); const {version} = require("../package.json");
function collect(val, memo) { function collect(val, memo) {
memo.push(val); memo.push(val);
@ -41,6 +41,11 @@ program
.description("Update user and repository data") .description("Update user and repository data")
.action(updateCommand); .action(updateCommand);
program
.command("ui")
.description("Create and Manage gitfolio with ease")
.action(uiCommand);
program program
.command("run") .command("run")
.description("Run build files") .description("Run build files")
@ -57,4 +62,6 @@ program
.usage("<command> [options]") .usage("<command> [options]")
.parse(process.argv); .parse(process.argv);
if (program.args.length === 0) program.help(); if (program.args.length === 0) {
program.help();
}

View file

@ -6,8 +6,8 @@ const hbs = require("handlebars");
/* Creates promise-returning async functions /* Creates promise-returning async functions
from callback-passed async functions */ from callback-passed async functions */
const fs = bluebird.promisifyAll(require("fs")); const fs = bluebird.promisifyAll(require("fs"));
const { updateHTML } = require("./populate"); const {updateHTML} = require("./populate");
const { getConfig, outDir } = require("./utils"); const {getConfig, outDir} = require("./utils");
const assetDir = path.resolve(`${__dirname}/assets/`); const assetDir = path.resolve(`${__dirname}/assets/`);
const config = path.join(outDir, "config.json"); const config = path.join(outDir, "config.json");
@ -24,29 +24,31 @@ async function populateCSS({
} = {}) { } = {}) {
/* Get the theme the user requests. Defaults to 'light' */ /* Get the theme the user requests. Defaults to 'light' */
theme = `${theme}.css`; theme = `${theme}.css`;
let template = path.resolve(assetDir, "index.css"); const template = path.resolve(assetDir, "index.css");
let stylesheet = path.join(outDir, "index.css"); const stylesheet = path.join(outDir, "index.css");
try { try {
await fs.accessAsync(outDir, fs.constants.F_OK); await fs.accessAsync(outDir, fs.constants.F_OK);
} catch (err) { } catch (error) {
await fs.mkdirAsync(outDir); await fs.mkdirAsync(outDir);
} }
/* Copy over the template CSS stylesheet */ /* Copy over the template CSS stylesheet */
await fs.copyFileAsync(template, stylesheet); await fs.copyFileAsync(template, stylesheet);
/* Get an array of every available theme */ /* Get an array of every available theme */
let themes = await fs.readdirAsync(path.join(assetDir, "themes")); const themes = await fs.readdirAsync(path.join(assetDir, "themes"));
if (!themes.includes(theme)) { if (!themes.includes(theme)) {
console.error('Error: Requested theme not found. Defaulting to "light".'); console.error('Error: Requested theme not found. Defaulting to "light".');
theme = "light"; theme = "light";
} }
/* Read in the theme stylesheet */ /* Read in the theme stylesheet */
let themeSource = await fs.readFileSync(path.join(assetDir, "themes", theme)); let themeSource = await fs.readFileSync(path.join(assetDir, "themes", theme));
themeSource = themeSource.toString("utf-8"); themeSource = themeSource.toString("utf-8");
let themeTemplate = hbs.compile(themeSource); const themeTemplate = hbs.compile(themeSource);
let styles = themeTemplate({ const styles = themeTemplate({
background: `${background}` background: `${background}`
}); });
/* Add the user-specified styles to the new stylesheet */ /* Add the user-specified styles to the new stylesheet */
@ -72,10 +74,11 @@ async function buildCommand(username, program) {
} else { } else {
types = program.include; types = program.include;
} }
const opts = { const opts = {
sort: program.sort, sort: program.sort,
order: program.order, order: program.order,
includeFork: program.fork ? true : false, includeFork: Boolean(program.fork),
types, types,
codepen: program.codepen, codepen: program.codepen,
dev: program.dev, dev: program.dev,

3791
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,98 +1,52 @@
{ {
"name": "gitfolio",
"name": "gitfolio", "version": "0.1.5",
"description": "a portfolio website for everyone to showcase their work",
"version": "0.1.5", "main": "build.js",
"bin": "bin/gitfolio.js",
"description": "a portfolio website for everyone to showcase their work", "scripts": {
"cli": "OUT_DIR='./dist' node bin/gitfolio.js",
"main": "build.js", "clean": "rm -rf ./dist/*",
"prettier": "prettier --write \"./**/*.{js,jsx,json,html,css,md}\"",
"bin": "bin/gitfolio.js", "test": "xo && OUT_DIR='./dist' node bin/gitfolio.js build k4ustu3h --fork --theme dark --sort updated --twitter k4ustu3h_ --dribbble k4ustu3h --email k4ustu3h@gmail.com --codepen k4ustu3h --dev k4ustu3h --instagram k4ustu3h --telegram k4ustu3h --reddit kaustubhladiya"
},
"scripts": { "xo": {
"prettier": true
"cli": "OUT_DIR='./dist' node bin/gitfolio.js", },
"author": {
"clean": "rm -rf ./dist/*", "name": "@imfunniee and community",
"email": "imfunny@wybemf.com",
"prettier": "prettier --write \"./**/*.{js,jsx,json,html,css,md}\"", "url": "https://imfunniee.github.io"
},
"test": "OUT_DIR='./dist' node bin/gitfolio.js build k4ustu3h --fork --theme dark --sort updated --twitter k4ustu3h_ --dribbble k4ustu3h --email k4ustu3h@gmail.com --codepen k4ustu3h --dev k4ustu3h --instagram k4ustu3h --telegram k4ustu3h --reddit kaustubhladiya" "bugs": "https://github.com/imfunniee/gitfolio/issues",
"homepage": "https://github.com/imfunniee/gitfolio",
}, "keywords": [
"personal-website",
"author": { "github",
"portfolio",
"name": "@imfunniee and community", "portfolio website",
"gitfolio",
"email": "imfunny@wybemf.com", "git"
],
"url": "https://imfunniee.github.io" "repository": {
"type": "git",
}, "url": "https://github.com/imfunniee/gitfolio"
},
"bugs": "https://github.com/imfunniee/gitfolio/issues", "license": "GPL-3.0",
"dependencies": {
"homepage": "https://github.com/imfunniee/gitfolio", "bluebird": "^3.5.4",
"body-parser": "^1.19.0",
"keywords": [ "commander": "^2.20.0",
"ejs": "^2.6.2",
"personal-website", "express": "^4.17.0",
"github-emoji": "^1.1.1",
"github", "got": "^9.6.0",
"handlebars": "^4.1.2",
"portfolio", "jsdom": "^15.1.0",
"ncp": "^2.0.0"
"portfolio website", },
"devDependencies": {
"gitfolio", "prettier": "1.19.1",
"xo": "^0.25.3"
"git" }
],
"repository": {
"type": "git",
"url": "https://github.com/imfunniee/gitfolio"
},
"license": "GPL-3.0",
"dependencies": {
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"commander": "4.0.1",
"ejs": "3.0.1",
"express": "^4.17.1",
"github-emoji": "^1.1.1",
"got": "10.0.4",
"handlebars": "^4.5.3",
"jsdom": "^15.2.1",
"ncp": "^2.0.0"
},
"devDependencies": {
"eslint": "^6.7.2",
"prettier": "1.19.1"
} }
}

View file

@ -1,33 +1,37 @@
const fs = require("fs"); const fs = require("fs");
const emoji = require("github-emoji"); const emoji = require("github-emoji");
const jsdom = require("jsdom").JSDOM, const jsdom = require("jsdom").JSDOM;
options = { const options = {
resources: "usable" resources: "usable"
}; };
const { getConfig, outDir } = require("./utils"); const {getConfig, outDir} = require("./utils");
const { getRepos, getUser } = require("./api"); const {getRepos, getUser} = require("./api");
function convertToEmoji(text) { function convertToEmoji(text) {
if (text == null) return; if (text === null) {
return;
}
text = text.toString(); text = text.toString();
var pattern = /(?<=:\s*).*?(?=\s*:)/gs; const pattern = /(?<=:\s*).*?(?=\s*:)/gs;
if (text.match(pattern) != null) { if (text.match(pattern) !== null) {
var str = text.match(pattern); let str = text.match(pattern);
str = str.filter(function(arr) { str = str.filter(arr => {
return /\S/.test(arr); return /\S/.test(arr);
}); });
for (i = 0; i < str.length; i++) { for (i = 0; i < str.length; i++) {
if (emoji.URLS[str[i]] != undefined) { if (emoji.URLS[str[i]] !== undefined) {
text = text.replace( text = text.replace(
`:${str[i]}:`, `:${str[i]}:`,
`<img src="${emoji.URLS[str[i]]}" class="emoji">` `<img src="${emoji.URLS[str[i]]}" class="emoji">`
); );
} }
} }
return text;
} else {
return text; return text;
} }
return text;
} }
module.exports.updateHTML = (username, opts) => { module.exports.updateHTML = (username, opts) => {
@ -42,65 +46,67 @@ module.exports.updateHTML = (username, opts) => {
telegram, telegram,
twitter twitter
} = opts; } = opts;
//add data to assets/index.html // add data to assets/index.html
jsdom jsdom
.fromFile(`${__dirname}/assets/index.html`, options) .fromFile(`${__dirname}/assets/index.html`, options)
.then(function(dom) { .then(dom => {
let window = dom.window, const {window} = dom;
document = window.document; const {document} = window;
(async () => { (async () => {
try { try {
console.log("Building HTML/CSS..."); console.log("Building HTML/CSS...");
const repos = await getRepos(username, opts); const repos = await getRepos(username, opts);
for (var i = 0; i < repos.length; i++) { for (const element of repos) {
let element; let element;
if (repos[i].fork == false) { if (element.fork === false) {
element = document.getElementById("work_section"); element = document.querySelector("#work_section");
} else if (includeFork == true) { } else if (includeFork === true) {
document.getElementById("forks").style.display = "block"; document.querySelector("#forks").style.display = "block";
element = document.getElementById("forks_section"); element = document.querySelector("#forks_section");
} else { } else {
continue; continue;
} }
element.innerHTML += ` element.innerHTML += `
<a href="${repos[i].html_url}" target="_blank"> <a href="${element.html_url}" target="_blank">
<section> <section>
<div class="section_title">${repos[i].name}</div> <div class="section_title">${element.name}</div>
<div class="about_section"> <div class="about_section">
<span style="display:${ <span style="display:${
repos[i].description == undefined element.description === undefined
? "none" ? "none"
: "block" : "block"
};">${convertToEmoji(repos[i].description)}</span> };">${convertToEmoji(element.description)}</span>
</div> </div>
<div class="bottom_section"> <div class="bottom_section">
<span style="display:${ <span style="display:${
repos[i].language == null element.language === null
? "none" ? "none"
: "inline-block" : "inline-block"
};"><i class="mdi mdi-code-tags"></i>&nbsp; ${ };"><i class="mdi mdi-code-tags"></i>&nbsp; ${
repos[i].language element.language
}</span> }</span>
<span><i class="mdi mdi-star"></i>&nbsp; ${ <span><i class="mdi mdi-star"></i>&nbsp; ${
repos[i].stargazers_count element.stargazers_count
}</span> }</span>
<span><i class="mdi mdi-source-branch"></i>&nbsp; ${ <span><i class="mdi mdi-source-branch"></i>&nbsp; ${
repos[i].forks_count element.forks_count
}</span> }</span>
</div> </div>
</section> </section>
</a>`; </a>`;
} }
const user = await getUser(username); const user = await getUser(username);
document.title = user.login; document.title = user.login;
var icon = document.createElement("link"); const icon = document.createElement("link");
icon.setAttribute("rel", "icon"); icon.setAttribute("rel", "icon");
icon.setAttribute("href", user.avatar_url); icon.setAttribute("href", user.avatar_url);
icon.setAttribute("type", "image/png"); icon.setAttribute("type", "image/png");
document.getElementsByTagName("head")[0].appendChild(icon); document.querySelectorAll("head")[0].append(icon);
document.getElementsByTagName("head")[0].innerHTML += ` document.querySelectorAll("head")[0].innerHTML += `
<meta name="description" content="${user.bio}" /> <meta name="description" content="${user.bio}" />
<meta property="og:image" content="${user.avatar_url}" /> <meta property="og:image" content="${user.avatar_url}" />
<meta property="og:type" content="profile" /> <meta property="og:type" content="profile" />
@ -112,20 +118,20 @@ module.exports.updateHTML = (username, opts) => {
<meta name="twitter:card" content="summary" /> <meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="${user.login}" /> <meta name="twitter:title" content="${user.login}" />
<meta name="twitter:description" content="${user.bio}" />`; <meta name="twitter:description" content="${user.bio}" />`;
document.getElementById( document.querySelector(
"username" "#username"
).innerHTML = `<span id="text" style="display:${ ).innerHTML = `<span id="text" style="display:${
user.name == null || !user.name ? "none" : "block" user.name === null || !user.name ? "none" : "block"
};"></span><div class='console-underscore' id='console'>&#95;</div><br><a href="${ };"></span><div class='console-underscore' id='console'>&#95;</div><br><a href="${
user.html_url user.html_url
}">@${user.login}</a>`; }">@${user.login}</a>`;
//document.getElementById("github_link").href = `https://github.com/${user.login}`; // document.getElementById("github_link").href = `https://github.com/${user.login}`;
document.getElementById("userbio").innerHTML = convertToEmoji( document.querySelector("#userbio").innerHTML = convertToEmoji(
user.bio user.bio
); );
document.getElementById("userbio").style.display = document.querySelector("#userbio").style.display =
user.bio == null || !user.bio ? "none" : "block"; user.bio == null || !user.bio ? "none" : "block";
document.getElementById("about").innerHTML = ` document.querySelector("#about").innerHTML = `
<span style="display:${ <span style="display:${
user.company == null || !user.company ? "none" : "block" user.company == null || !user.company ? "none" : "block"
};"><i class="mdi-face"></i> &nbsp; ${user.company}</span> };"><i class="mdi-face"></i> &nbsp; ${user.company}</span>
@ -167,7 +173,7 @@ module.exports.updateHTML = (username, opts) => {
};"><a href="https://www.twitter.com/${twitter}" target="_blank" class="socials"><i class="mdi mdi-twitter"></i></a></span> };"><a href="https://www.twitter.com/${twitter}" target="_blank" class="socials"><i class="mdi mdi-twitter"></i></a></span>
</div> </div>
`; `;
//add data to config.json // add data to config.json
const data = await getConfig(); const data = await getConfig();
data[0].username = user.login; data[0].username = user.login;
data[0].name = user.name; data[0].name = user.name;
@ -176,16 +182,22 @@ module.exports.updateHTML = (username, opts) => {
await fs.writeFile( await fs.writeFile(
`${outDir}/config.json`, `${outDir}/config.json`,
JSON.stringify(data, null, " "), JSON.stringify(data, null, " "),
function(err) { err => {
if (err) throw err; if (err) {
throw err;
}
console.log("Config file updated."); console.log("Config file updated.");
} }
); );
await fs.writeFile( await fs.writeFile(
`${outDir}/index.html`, `${outDir}/index.html`,
"<!DOCTYPE html>" + window.document.documentElement.outerHTML, "<!DOCTYPE html>" + window.document.documentElement.outerHTML,
function(error) { error => {
if (error) throw error; if (error) {
throw error;
}
console.log(`Build Complete, Files can be Found @ ${outDir}\n`); console.log(`Build Complete, Files can be Found @ ${outDir}\n`);
} }
); );
@ -194,7 +206,7 @@ module.exports.updateHTML = (username, opts) => {
} }
})(); })();
}) })
.catch(function(error) { .catch(error => {
console.log(error); console.log(error);
}); });
}; };

6
run.js
View file

@ -1,13 +1,13 @@
const express = require("express");
const path = require("path"); const path = require("path");
const express = require("express");
const outDir = path.resolve("./dist/" || process.env.OUT_DIR); const outDir = path.resolve("./dist/" || process.env.OUT_DIR);
const app = express(); const app = express();
app.use(express.static(`${outDir}`)); app.use(express.static(`${outDir}`));
function runCommand(program) { function runCommand(program) {
let port = program.port ? program.port : 3000; const port = program.port ? program.port : 3000;
app.get("/", function(req, res) { app.get("/", (req, res) => {
res.sendFile("/index.html"); res.sendFile("/index.html");
}); });

78
ui.js
View file

@ -1,8 +1,12 @@
const fs = require("fs"); const fs = require("fs");
const express = require("express"); const express = require("express");
const { updateHTML } = require("./populate"); const jsdom = require("jsdom").JSDOM;
const { populateCSS, populateConfig } = require("./build"); const options = {
const { updateCommand } = require("./update"); resources: "usable"
};
const {updateHTML} = require("./populate");
const {populateCSS, populateConfig} = require("./build");
const {updateCommand} = require("./update");
const app = express(); const app = express();
app.set("view engine", "ejs"); app.set("view engine", "ejs");
app.use(express.static(__dirname + "/views")); app.use(express.static(__dirname + "/views"));
@ -21,67 +25,65 @@ app.use(
const port = 3000; const port = 3000;
const jsdom = require("jsdom").JSDOM,
options = {
resources: "usable"
};
global.DOMParser = new jsdom().window.DOMParser; global.DOMParser = new jsdom().window.DOMParser;
function uiCommand() { function uiCommand() {
app.get("/", function(req, res) { app.get("/", (req, res) => {
res.render("index.ejs"); res.render("index.ejs");
}); });
app.get("/update", function(req, res) { app.get("/update", (req, res) => {
if (!fs.existsSync(`${outDir}/config.json`)) { if (!fs.existsSync(`${outDir}/config.json`)) {
return res.send( return res.send(
'You need to run build command before using update<br><a href="/">Go Back</a>' 'You need to run build command before using update<br><a href="/">Go Back</a>'
); );
} }
updateCommand(); updateCommand();
res.redirect("/"); res.redirect("/");
}); });
app.post("/build", function(req, res) { app.post("/build", (req, res) => {
let username = req.body.username; const {username} = req.body;
if (!username) { if (!username) {
return res.send("username can't be empty"); return res.send("username can't be empty");
} }
let sort = req.body.sort ? req.body.sort : "created";
let order = req.body.order ? req.body.order : "asc"; const sort = req.body.sort ? req.body.sort : "created";
let includeFork = req.body.fork == "true" ? true : false; const order = req.body.order ? req.body.order : "asc";
let types = ["owner"]; const includeFork = req.body.fork === "true";
let codepen = req.body.codepen ? req.body.codepen : null; const types = ["owner"];
let dev = req.body.dev ? req.body.dev : null; const codepen = req.body.codepen ? req.body.codepen : null;
let dribbble = req.body.dribbble ? req.body.dribbble : null; const dev = req.body.dev ? req.body.dev : null;
let email = req.body.email ? req.body.email : null; const dribbble = req.body.dribbble ? req.body.dribbble : null;
let instagram = req.body.instagram ? req.body.instagram : null; const email = req.body.email ? req.body.email : null;
let reddit = req.body.reddit ? req.body.reddit : null; const instagram = req.body.instagram ? req.body.instagram : null;
let telegram = req.body.telegram ? req.body.telegram : null; const reddit = req.body.reddit ? req.body.reddit : null;
let twitter = req.body.twitter ? req.body.twitter : null; const telegram = req.body.telegram ? req.body.telegram : null;
let background = req.body.background const twitter = req.body.twitter ? req.body.twitter : null;
const background = req.body.background
? req.body.background ? req.body.background
: "https://source.unsplash.com/1280x720/?wallpaper"; : "https://source.unsplash.com/1280x720/?wallpaper";
let theme = req.body.theme == "on" ? "dark" : "light"; const theme = req.body.theme === "on" ? "dark" : "light";
const opts = { const opts = {
sort: sort, sort,
order: order, order,
includeFork: includeFork, includeFork,
types, types,
codepen: codepen, codepen,
dev: dev, dev,
dribbble: dribbble, dribbble,
email: email, email,
instagram: instagram, instagram,
reddit: reddit, reddit,
telegram: telegram, telegram,
twitter: twitter twitter
}; };
updateHTML(username, opts); updateHTML(username, opts);
populateCSS({ populateCSS({
background: background, background,
theme: theme theme
}); });
populateConfig(opts); populateConfig(opts);
res.redirect("/"); res.redirect("/");

View file

@ -1,15 +1,16 @@
const { getConfig } = require("./utils"); const {getConfig} = require("./utils");
const { updateHTML } = require("./populate"); const {updateHTML} = require("./populate");
async function updateCommand() { async function updateCommand() {
const data = await getConfig(); const data = await getConfig();
var username = data[0].username; const {username} = data[0];
if (username == null) { if (username === null) {
console.log( console.log(
"username not found in config.json, please run build command before using update" "username not found in config.json, please run build command before using update"
); );
return; return;
} }
const opts = { const opts = {
sort: data[0].sort, sort: data[0].sort,
order: data[0].order, order: data[0].order,

View file

@ -14,10 +14,11 @@ const defaultConfigPath = path.resolve(`${__dirname}/default/config.json`);
async function getFileWithDefaults(file, defaultFile) { async function getFileWithDefaults(file, defaultFile) {
try { try {
await fs.accessAsync(file, fs.constants.F_OK); await fs.accessAsync(file, fs.constants.F_OK);
} catch (err) { } catch (error) {
const defaultData = await fs.readFileAsync(defaultFile); const defaultData = await fs.readFileAsync(defaultFile);
return JSON.parse(defaultData); return JSON.parse(defaultData);
} }
const data = await fs.readFileAsync(file); const data = await fs.readFileAsync(file);
return JSON.parse(data); return JSON.parse(data);
} }