You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/ui/Entry.js

93 lines
2.6 KiB
JavaScript

import 'jquery.transit';
import 'normalize.css/normalize.css';
import 'codemirror/lib/codemirror.css';
import _ from 'lodash';
import 'vj/misc/float.styl';
import 'vj/misc/typography.styl';
import 'vj/misc/textalign.styl';
import 'vj/misc/grid.styl';
import 'vj/misc/slideout.styl';
import 'vj/misc/.iconfont/webicon.styl';
import 'vj/misc/immersive.styl';
import 'vj/misc/structure.styl';
import 'vj/misc/section.styl';
import 'vj/misc/nothing.styl';
import { PageLoader } from 'vj/misc/PageLoader';
import delay from 'vj/utils/delay';
// eslint-disable-next-line camelcase
__webpack_public_path__ = UiContext.cdn_prefix;
const pageLoader = new PageLoader();
const currentPage = pageLoader.getNamedPage(document.documentElement.getAttribute('data-page'));
const includedPages = pageLoader.getAutoloadPages();
function buildSequence(pages, type) {
if (process.env.NODE_ENV !== 'production') {
if (['before', 'after'].indexOf(type) === -1) {
throw new Error(`'type' should be one of 'before' or 'after'`); // eslint-disable-line quotes
}
}
return pages
.filter((p) => p && p[`${type}Loading`])
.map((p) => ({
page: p,
func: p[`${type}Loading`],
type,
}));
}
async function load() {
const loadSequence = [
...buildSequence(includedPages, 'before'),
...buildSequence([currentPage], 'before'),
...buildSequence(includedPages, 'after'),
...buildSequence([currentPage], 'after'),
];
// eslint-disable-next-line no-restricted-syntax
for (const { page, func, type } of loadSequence) {
if (typeof func !== 'function') {
if (process.env.NODE_ENV !== 'production') {
throw new Error(`The '${type}Loading' function of '${page.name}' is not callable`);
}
continue;
}
if (process.env.NODE_ENV !== 'production') {
console.time(`${page.name}: ${type}Loading`);
}
try {
await func();
} catch (e) {
console.error(`Failed to call '${type}Loading' of ${page.name}\n${e.stack}`);
}
if (process.env.NODE_ENV !== 'production') {
console.timeEnd(`${page.name}: ${type}Loading`);
}
}
const sections = _.map($('.section').get(), (section, idx) => ({
shouldDelay: idx < 5, // only animate first 5 sections
$element: $(section),
}));
// eslint-disable-next-line no-restricted-syntax
for (const { $element, shouldDelay } of sections) {
$element.addClass('visible');
if (shouldDelay) {
await delay(50);
}
}
await delay(500);
// eslint-disable-next-line no-restricted-syntax
for (const { $element } of sections) {
$element.trigger('vjLayout');
}
$(document).trigger('vjPageFullyInitialized');
}
load();