hexo-theme-keep/scripts/helpers/export-config.js

57 lines
1.5 KiB
JavaScript
Raw Normal View History

/* global hexo */
'use strict';
const url = require('url');
const fs = require('fs');
const path = require('path');
const yaml = require('js-yaml');
/**
* Export theme config to js
*/
hexo.extend.helper.register('export_config', function () {
let {config, theme} = this;
2021-01-07 15:15:39 +08:00
// ------------------------ export language to js ------------------------
const languageDir = path.join(__dirname, '../../languages');
let file = fs.readdirSync(languageDir).find(v => v === `${config.language}.yml`);
file = languageDir + '/' + (file ? file : 'en.yml');
let languageContent = fs.readFileSync(file, 'utf8');
try {
languageContent = yaml.safeLoad(languageContent);
} catch (e) {
console.log(e);
}
2021-01-07 15:15:39 +08:00
// -----------------------------------------------------------------------
let hexo_config = {
hostname: url.parse(config.url).hostname || config.url,
root: config.root
};
if (config.search) {
hexo_config.path = config.search.path;
}
let theme_config = {
toc: theme.toc,
2020-11-25 23:39:24 +08:00
style: theme.style,
local_search: theme.local_search,
2021-01-05 17:01:15 +08:00
code_copy: theme.code_copy,
side_tools: theme.side_tools,
pjax: theme.pjax,
2021-01-07 15:15:39 +08:00
lazyload: theme.lazyload,
version: theme.version,
}
return `<script id="hexo-configurations">
2020-11-20 12:02:22 +08:00
let KEEP = window.KEEP || {};
KEEP.hexo_config = ${JSON.stringify(hexo_config)};
KEEP.theme_config = ${JSON.stringify(theme_config)};
KEEP.language_ago = ${JSON.stringify(languageContent['ago'])};
</script>`;
});