hexo-theme-volantis
Version:
Elegant and powerful theme for Hexo.
91 lines (78 loc) • 2.71 kB
JavaScript
;
const path = require('path')
const { version } = require('../../../package.json');
function isObject(item) {
return item && typeof item === 'object' && !Array.isArray(item);
}
function merge(target, source) {
for (const key in source) {
if (isObject(target[key]) && isObject(source[key])) {
merge(target[key], source[key]);
} else {
target[key] = source[key];
}
}
return target;
}
module.exports = hexo => {
if (!hexo.locals.get) return;
var data = hexo.locals.get('data');
if (!data) return;
/**
* Merge configs from _data/volantis.yml into hexo.theme.config.
* If `override`, configs in volantis.yml will rewrite configs in hexo.theme.config.
* If volantis.yml not exists, merge all `theme_config.*` into hexo.theme.config.
*/
if (data.volantis) {
if (data.volantis.override) {
hexo.theme.config = data.volantis;
} else {
merge(hexo.config, data.volantis);
merge(hexo.theme.config, data.volantis);
}
} else {
merge(hexo.theme.config, hexo.config.theme_config);
}
if (hexo.theme.config.cache && hexo.theme.config.cache.enable && hexo.config.relative_link) {
hexo.log.warn('Since caching is turned on, the `relative_link` option in Hexo `_config.yml` is set to `false` to avoid potential hazards.');
hexo.config.relative_link = false;
}
hexo.config.meta_generator = false;
hexo.theme.config.getStartTime = Date.now();
// volantis 主题不支持 highlight.hljs 配置
hexo.config.highlight.hljs = false;
// Custom languages support. Introduced in NexT v6.3.0.
if (data.languages) {
var { language } = hexo.config;
var { i18n } = hexo.theme;
var mergeLang = lang => {
i18n.set(lang, merge(i18n.get([lang]), data.languages[lang]));
};
if (Array.isArray(language)) {
for (const lang of language) {
mergeLang(lang);
}
} else {
mergeLang(language);
}
}
hexo.theme.config.info.theme_version = version;
// merge widgets
var widgets = hexo.render.renderSync({ path: path.join(hexo.theme_dir, '_data/widgets.yml'), engine: 'yaml' })
if (typeof hexo.theme.config.sidebar.widget_library == "undefined"){
hexo.theme.config.sidebar.widget_library = {}
}
merge(widgets, hexo.theme.config.sidebar.widget_library)
if (data.widgets) {
merge(widgets, data.widgets);
}
hexo.theme.config.sidebar.widget_library = widgets;
// merge icons
var icons = hexo.render.renderSync({ path: path.join(hexo.theme_dir, '_data/icons.yml'), engine: 'yaml' })
if (data.icons) {
merge(icons, data.icons);
}
hexo.theme.config.icons = icons
// chat users
hexo.theme.config.chat_users = data.chat_users;
};