dumi 2.2.7 → 2.3.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client/pages/Demo/index.js +3 -4
- package/dist/client/theme-api/DumiDemo/DemoErrorBoundary.d.ts +5 -0
- package/dist/client/theme-api/DumiDemo/DemoErrorBoundary.js +16 -0
- package/dist/client/theme-api/{DumiDemo.d.ts → DumiDemo/index.d.ts} +1 -1
- package/dist/client/theme-api/DumiDemo/index.js +37 -0
- package/dist/client/theme-api/DumiDemoGrid.js +4 -1
- package/dist/client/theme-api/{context.d.ts → context/index.d.ts} +10 -7
- package/dist/client/theme-api/context/index.js +49 -0
- package/dist/client/theme-api/context/use.d.ts +7 -0
- package/dist/client/theme-api/context/use.js +22 -0
- package/dist/client/theme-api/index.d.ts +2 -2
- package/dist/client/theme-api/index.js +2 -2
- package/dist/client/theme-api/useRouteMeta.js +27 -26
- package/dist/constants.d.ts +1 -0
- package/dist/constants.js +4 -0
- package/dist/features/compile/index.js +13 -1
- package/dist/features/exports.js +2 -1
- package/dist/features/meta.js +33 -76
- package/dist/features/theme/index.js +19 -55
- package/dist/loaders/markdown/index.d.ts +15 -3
- package/dist/loaders/markdown/index.js +117 -38
- package/dist/templates/ContextWrapper.ts.tpl +89 -0
- package/dist/templates/meta-demos.ts.tpl +34 -0
- package/dist/templates/meta-frontmatter.ts.tpl +9 -0
- package/dist/templates/meta-route.ts.tpl +43 -0
- package/dist/templates/meta-runtime.ts.tpl +48 -0
- package/dist/templates/meta.ts.tpl +23 -0
- package/package.json +2 -1
- package/theme-default/slots/ContentTabs/index.js +0 -1
- package/dist/client/theme-api/DumiDemo.js +0 -46
- package/dist/client/theme-api/context.js +0 -16
|
@@ -1,12 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { useDemoData, useParams } from 'dumi';
|
|
2
2
|
import { createElement } from 'react';
|
|
3
3
|
import "./index.less";
|
|
4
4
|
var DemoRenderPage = function DemoRenderPage() {
|
|
5
5
|
var _useParams = useParams(),
|
|
6
6
|
id = _useParams.id;
|
|
7
|
-
var
|
|
8
|
-
|
|
9
|
-
var _ref = demos[id] || {},
|
|
7
|
+
var demoInfo = useDemoData(id);
|
|
8
|
+
var _ref = demoInfo,
|
|
10
9
|
component = _ref.component;
|
|
11
10
|
return component && /*#__PURE__*/createElement(component);
|
|
12
11
|
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import Container from 'dumi/theme/builtins/Container';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { ErrorBoundary } from 'react-error-boundary';
|
|
4
|
+
var DemoErrorBoundary = function DemoErrorBoundary(props) {
|
|
5
|
+
return /*#__PURE__*/React.createElement(ErrorBoundary, {
|
|
6
|
+
fallbackRender: function fallbackRender(_ref) {
|
|
7
|
+
var error = _ref.error;
|
|
8
|
+
return /*#__PURE__*/React.createElement(Container, {
|
|
9
|
+
type: "error"
|
|
10
|
+
}, /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("strong", null, error.message || 'This demo has been crashed.')), error.stack && /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("details", {
|
|
11
|
+
open: true
|
|
12
|
+
}, /*#__PURE__*/React.createElement("summary", null, "Error stack"), /*#__PURE__*/React.createElement("pre", null, error.stack))));
|
|
13
|
+
}
|
|
14
|
+
}, props.children);
|
|
15
|
+
};
|
|
16
|
+
export default DemoErrorBoundary;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
+
import { SP_ROUTE_PREFIX } from "../../../constants";
|
|
3
|
+
import { useAppData, useDemoData, useSiteData } from 'dumi';
|
|
4
|
+
import React, { createElement } from 'react';
|
|
5
|
+
import Previewer from 'dumi/theme/builtins/Previewer';
|
|
6
|
+
import DemoErrorBoundary from "./DemoErrorBoundary";
|
|
7
|
+
var InternalDumiDemo = function InternalDumiDemo(props) {
|
|
8
|
+
var _useSiteData = useSiteData(),
|
|
9
|
+
historyType = _useSiteData.historyType;
|
|
10
|
+
var _useAppData = useAppData(),
|
|
11
|
+
basename = _useAppData.basename;
|
|
12
|
+
var demoInfo = useDemoData(props.demo.id);
|
|
13
|
+
|
|
14
|
+
// hide debug demo in production
|
|
15
|
+
if (process.env.NODE_ENV === 'production' && props.previewerProps.debug) return null;
|
|
16
|
+
var component = demoInfo.component,
|
|
17
|
+
asset = demoInfo.asset;
|
|
18
|
+
var demoNode = /*#__PURE__*/React.createElement(DemoErrorBoundary, null, /*#__PURE__*/createElement(component));
|
|
19
|
+
if (props.demo.inline) {
|
|
20
|
+
return demoNode;
|
|
21
|
+
}
|
|
22
|
+
var isHashRoute = historyType === 'hash';
|
|
23
|
+
return /*#__PURE__*/React.createElement(Previewer, _extends({
|
|
24
|
+
asset: asset,
|
|
25
|
+
demoUrl:
|
|
26
|
+
// allow user override demoUrl by frontmatter
|
|
27
|
+
props.previewerProps.demoUrl || // when use hash route, browser can automatically handle relative paths starting with #
|
|
28
|
+
"".concat(isHashRoute ? "#" : '').concat(basename).concat(SP_ROUTE_PREFIX, "demos/").concat(props.demo.id)
|
|
29
|
+
}, props.previewerProps), props.previewerProps.iframe ? null : demoNode);
|
|
30
|
+
};
|
|
31
|
+
export var DumiDemo = /*#__PURE__*/React.memo(InternalDumiDemo, function (prev, next) {
|
|
32
|
+
// compare length for performance
|
|
33
|
+
return JSON.stringify(prev).length === JSON.stringify(next).length;
|
|
34
|
+
});
|
|
35
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
36
|
+
InternalDumiDemo.displayName = 'DumiDemo';
|
|
37
|
+
}
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
import type { PICKED_PKG_FIELDS } from "
|
|
1
|
+
import type { PICKED_PKG_FIELDS } from "../../../constants";
|
|
2
2
|
import type { AtomComponentAsset } from 'dumi-assets-types';
|
|
3
3
|
import { type ComponentType } from 'react';
|
|
4
|
-
import type { ILocalesConfig, IPreviewerProps, IThemeConfig } from '
|
|
4
|
+
import type { ILocalesConfig, IPreviewerProps, IThemeConfig } from '../types';
|
|
5
|
+
export type DemoInfo = {
|
|
6
|
+
component: ComponentType;
|
|
7
|
+
asset: IPreviewerProps['asset'];
|
|
8
|
+
routeId: string;
|
|
9
|
+
};
|
|
5
10
|
interface ISiteContext {
|
|
6
11
|
pkg: Partial<Record<keyof typeof PICKED_PKG_FIELDS, any>>;
|
|
7
12
|
historyType: 'browser' | 'hash' | 'memory';
|
|
8
13
|
entryExports: Record<string, any>;
|
|
9
|
-
demos: Record<string,
|
|
10
|
-
component: ComponentType;
|
|
11
|
-
asset: IPreviewerProps['asset'];
|
|
12
|
-
routeId: string;
|
|
13
|
-
}>;
|
|
14
|
+
demos: Record<string, DemoInfo>;
|
|
14
15
|
components: Record<string, AtomComponentAsset>;
|
|
15
16
|
locales: ILocalesConfig;
|
|
16
17
|
themeConfig: IThemeConfig;
|
|
@@ -21,7 +22,9 @@ interface ISiteContext {
|
|
|
21
22
|
* private field, do not use it in your code
|
|
22
23
|
*/
|
|
23
24
|
_2_level_nav_available: boolean;
|
|
25
|
+
getDemoById: (id: string) => Promise<DemoInfo | null>;
|
|
24
26
|
}
|
|
25
27
|
export declare const SiteContext: import("react").Context<ISiteContext>;
|
|
26
28
|
export declare const useSiteData: () => ISiteContext;
|
|
29
|
+
export declare function useDemoData(demoId: string): DemoInfo | null;
|
|
27
30
|
export {};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
2
|
+
function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return exports; }; var exports = {}, Op = Object.prototype, hasOwn = Op.hasOwnProperty, defineProperty = Object.defineProperty || function (obj, key, desc) { obj[key] = desc.value; }, $Symbol = "function" == typeof Symbol ? Symbol : {}, iteratorSymbol = $Symbol.iterator || "@@iterator", asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator", toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag"; function define(obj, key, value) { return Object.defineProperty(obj, key, { value: value, enumerable: !0, configurable: !0, writable: !0 }), obj[key]; } try { define({}, ""); } catch (err) { define = function define(obj, key, value) { return obj[key] = value; }; } function wrap(innerFn, outerFn, self, tryLocsList) { var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator, generator = Object.create(protoGenerator.prototype), context = new Context(tryLocsList || []); return defineProperty(generator, "_invoke", { value: makeInvokeMethod(innerFn, self, context) }), generator; } function tryCatch(fn, obj, arg) { try { return { type: "normal", arg: fn.call(obj, arg) }; } catch (err) { return { type: "throw", arg: err }; } } exports.wrap = wrap; var ContinueSentinel = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var IteratorPrototype = {}; define(IteratorPrototype, iteratorSymbol, function () { return this; }); var getProto = Object.getPrototypeOf, NativeIteratorPrototype = getProto && getProto(getProto(values([]))); NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype); var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype); function defineIteratorMethods(prototype) { ["next", "throw", "return"].forEach(function (method) { define(prototype, method, function (arg) { return this._invoke(method, arg); }); }); } function AsyncIterator(generator, PromiseImpl) { function invoke(method, arg, resolve, reject) { var record = tryCatch(generator[method], generator, arg); if ("throw" !== record.type) { var result = record.arg, value = result.value; return value && "object" == _typeof(value) && hasOwn.call(value, "__await") ? PromiseImpl.resolve(value.__await).then(function (value) { invoke("next", value, resolve, reject); }, function (err) { invoke("throw", err, resolve, reject); }) : PromiseImpl.resolve(value).then(function (unwrapped) { result.value = unwrapped, resolve(result); }, function (error) { return invoke("throw", error, resolve, reject); }); } reject(record.arg); } var previousPromise; defineProperty(this, "_invoke", { value: function value(method, arg) { function callInvokeWithMethodAndArg() { return new PromiseImpl(function (resolve, reject) { invoke(method, arg, resolve, reject); }); } return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(innerFn, self, context) { var state = "suspendedStart"; return function (method, arg) { if ("executing" === state) throw new Error("Generator is already running"); if ("completed" === state) { if ("throw" === method) throw arg; return doneResult(); } for (context.method = method, context.arg = arg;;) { var delegate = context.delegate; if (delegate) { var delegateResult = maybeInvokeDelegate(delegate, context); if (delegateResult) { if (delegateResult === ContinueSentinel) continue; return delegateResult; } } if ("next" === context.method) context.sent = context._sent = context.arg;else if ("throw" === context.method) { if ("suspendedStart" === state) throw state = "completed", context.arg; context.dispatchException(context.arg); } else "return" === context.method && context.abrupt("return", context.arg); state = "executing"; var record = tryCatch(innerFn, self, context); if ("normal" === record.type) { if (state = context.done ? "completed" : "suspendedYield", record.arg === ContinueSentinel) continue; return { value: record.arg, done: context.done }; } "throw" === record.type && (state = "completed", context.method = "throw", context.arg = record.arg); } }; } function maybeInvokeDelegate(delegate, context) { var methodName = context.method, method = delegate.iterator[methodName]; if (undefined === method) return context.delegate = null, "throw" === methodName && delegate.iterator.return && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method) || "return" !== methodName && (context.method = "throw", context.arg = new TypeError("The iterator does not provide a '" + methodName + "' method")), ContinueSentinel; var record = tryCatch(method, delegate.iterator, context.arg); if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel; var info = record.arg; return info ? info.done ? (context[delegate.resultName] = info.value, context.next = delegate.nextLoc, "return" !== context.method && (context.method = "next", context.arg = undefined), context.delegate = null, ContinueSentinel) : info : (context.method = "throw", context.arg = new TypeError("iterator result is not an object"), context.delegate = null, ContinueSentinel); } function pushTryEntry(locs) { var entry = { tryLoc: locs[0] }; 1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry); } function resetTryEntry(entry) { var record = entry.completion || {}; record.type = "normal", delete record.arg, entry.completion = record; } function Context(tryLocsList) { this.tryEntries = [{ tryLoc: "root" }], tryLocsList.forEach(pushTryEntry, this), this.reset(!0); } function values(iterable) { if (iterable) { var iteratorMethod = iterable[iteratorSymbol]; if (iteratorMethod) return iteratorMethod.call(iterable); if ("function" == typeof iterable.next) return iterable; if (!isNaN(iterable.length)) { var i = -1, next = function next() { for (; ++i < iterable.length;) if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next; return next.value = undefined, next.done = !0, next; }; return next.next = next; } } return { next: doneResult }; } function doneResult() { return { value: undefined, done: !0 }; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, defineProperty(Gp, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), defineProperty(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction"), exports.isGeneratorFunction = function (genFun) { var ctor = "function" == typeof genFun && genFun.constructor; return !!ctor && (ctor === GeneratorFunction || "GeneratorFunction" === (ctor.displayName || ctor.name)); }, exports.mark = function (genFun) { return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, "GeneratorFunction")), genFun.prototype = Object.create(Gp), genFun; }, exports.awrap = function (arg) { return { __await: arg }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () { return this; }), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) { void 0 === PromiseImpl && (PromiseImpl = Promise); var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl); return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) { return result.done ? result.value : iter.next(); }); }, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, "Generator"), define(Gp, iteratorSymbol, function () { return this; }), define(Gp, "toString", function () { return "[object Generator]"; }), exports.keys = function (val) { var object = Object(val), keys = []; for (var key in object) keys.push(key); return keys.reverse(), function next() { for (; keys.length;) { var key = keys.pop(); if (key in object) return next.value = key, next.done = !1, next; } return next.done = !0, next; }; }, exports.values = values, Context.prototype = { constructor: Context, reset: function reset(skipTempReset) { if (this.prev = 0, this.next = 0, this.sent = this._sent = undefined, this.done = !1, this.delegate = null, this.method = "next", this.arg = undefined, this.tryEntries.forEach(resetTryEntry), !skipTempReset) for (var name in this) "t" === name.charAt(0) && hasOwn.call(this, name) && !isNaN(+name.slice(1)) && (this[name] = undefined); }, stop: function stop() { this.done = !0; var rootRecord = this.tryEntries[0].completion; if ("throw" === rootRecord.type) throw rootRecord.arg; return this.rval; }, dispatchException: function dispatchException(exception) { if (this.done) throw exception; var context = this; function handle(loc, caught) { return record.type = "throw", record.arg = exception, context.next = loc, caught && (context.method = "next", context.arg = undefined), !!caught; } for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i], record = entry.completion; if ("root" === entry.tryLoc) return handle("end"); if (entry.tryLoc <= this.prev) { var hasCatch = hasOwn.call(entry, "catchLoc"), hasFinally = hasOwn.call(entry, "finallyLoc"); if (hasCatch && hasFinally) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } else if (hasCatch) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); } else { if (!hasFinally) throw new Error("try statement without catch or finally"); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } } } }, abrupt: function abrupt(type, arg) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc) { var finallyEntry = entry; break; } } finallyEntry && ("break" === type || "continue" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null); var record = finallyEntry ? finallyEntry.completion : {}; return record.type = type, record.arg = arg, finallyEntry ? (this.method = "next", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record); }, complete: function complete(record, afterLoc) { if ("throw" === record.type) throw record.arg; return "break" === record.type || "continue" === record.type ? this.next = record.arg : "return" === record.type ? (this.rval = this.arg = record.arg, this.method = "return", this.next = "end") : "normal" === record.type && afterLoc && (this.next = afterLoc), ContinueSentinel; }, finish: function finish(finallyLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel; } }, catch: function _catch(tryLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc === tryLoc) { var record = entry.completion; if ("throw" === record.type) { var thrown = record.arg; resetTryEntry(entry); } return thrown; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(iterable, resultName, nextLoc) { return this.delegate = { iterator: values(iterable), resultName: resultName, nextLoc: nextLoc }, "next" === this.method && (this.arg = undefined), ContinueSentinel; } }, exports; }
|
|
3
|
+
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
|
4
|
+
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
|
5
|
+
import { createContext, useContext } from 'react';
|
|
6
|
+
import use from "./use";
|
|
7
|
+
export var SiteContext = /*#__PURE__*/createContext({
|
|
8
|
+
pkg: {},
|
|
9
|
+
historyType: 'browser',
|
|
10
|
+
entryExports: {},
|
|
11
|
+
demos: {},
|
|
12
|
+
components: {},
|
|
13
|
+
locales: [],
|
|
14
|
+
themeConfig: {},
|
|
15
|
+
loading: false,
|
|
16
|
+
setLoading: function setLoading() {},
|
|
17
|
+
_2_level_nav_available: true,
|
|
18
|
+
getDemoById: function () {
|
|
19
|
+
var _getDemoById = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() {
|
|
20
|
+
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
21
|
+
while (1) switch (_context.prev = _context.next) {
|
|
22
|
+
case 0:
|
|
23
|
+
return _context.abrupt("return", null);
|
|
24
|
+
case 1:
|
|
25
|
+
case "end":
|
|
26
|
+
return _context.stop();
|
|
27
|
+
}
|
|
28
|
+
}, _callee);
|
|
29
|
+
}));
|
|
30
|
+
function getDemoById() {
|
|
31
|
+
return _getDemoById.apply(this, arguments);
|
|
32
|
+
}
|
|
33
|
+
return getDemoById;
|
|
34
|
+
}()
|
|
35
|
+
});
|
|
36
|
+
export var useSiteData = function useSiteData() {
|
|
37
|
+
return useContext(SiteContext);
|
|
38
|
+
};
|
|
39
|
+
var cache = new Map();
|
|
40
|
+
|
|
41
|
+
// Async load demo data
|
|
42
|
+
export function useDemoData(demoId) {
|
|
43
|
+
var _useSiteData = useSiteData(),
|
|
44
|
+
getDemoById = _useSiteData.getDemoById;
|
|
45
|
+
if (!cache.has(demoId)) {
|
|
46
|
+
cache.set(demoId, getDemoById(demoId));
|
|
47
|
+
}
|
|
48
|
+
return use(cache.get(demoId));
|
|
49
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
// Copy from React official demo.
|
|
2
|
+
// This will be replace if React release new version of use hooks
|
|
3
|
+
|
|
4
|
+
export default function use(promise) {
|
|
5
|
+
if (promise.status === 'fulfilled') {
|
|
6
|
+
return promise.value;
|
|
7
|
+
} else if (promise.status === 'rejected') {
|
|
8
|
+
throw promise.reason;
|
|
9
|
+
} else if (promise.status === 'pending') {
|
|
10
|
+
throw promise;
|
|
11
|
+
} else {
|
|
12
|
+
promise.status = 'pending';
|
|
13
|
+
promise.then(function (result) {
|
|
14
|
+
promise.status = 'fulfilled';
|
|
15
|
+
promise.value = result;
|
|
16
|
+
}, function (reason) {
|
|
17
|
+
promise.status = 'rejected';
|
|
18
|
+
promise.reason = reason;
|
|
19
|
+
});
|
|
20
|
+
throw promise;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { FormattedDate, FormattedDateParts, FormattedDisplayName, FormattedList, FormattedMessage, FormattedNumber, FormattedNumberParts, FormattedPlural, FormattedRelativeTime, FormattedTime, FormattedTimeParts, IntlContext, IntlProvider, RawIntlProvider, createIntlCache, defineMessages, injectIntl, useIntl, } from 'react-intl';
|
|
2
2
|
export { AtomRenderer } from './AtomRenderer';
|
|
3
|
-
export { useSiteData } from './context';
|
|
4
3
|
export { DumiDemo } from './DumiDemo';
|
|
5
4
|
export { DumiDemoGrid } from './DumiDemoGrid';
|
|
6
5
|
export { DumiPage } from './DumiPage';
|
|
6
|
+
export { useDemoData, useSiteData } from './context';
|
|
7
7
|
export { openCodeSandbox } from './openCodeSandbox';
|
|
8
8
|
export { openStackBlitz } from './openStackBlitz';
|
|
9
9
|
export type { IPreviewerProps } from './types';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { FormattedDate, FormattedDateParts, FormattedDisplayName, FormattedList, FormattedMessage, FormattedNumber, FormattedNumberParts, FormattedPlural, FormattedRelativeTime, FormattedTime, FormattedTimeParts, IntlContext, IntlProvider, RawIntlProvider, createIntlCache, defineMessages, injectIntl, useIntl } from 'react-intl';
|
|
2
2
|
export { AtomRenderer } from "./AtomRenderer";
|
|
3
|
-
export { useSiteData } from "./context";
|
|
4
3
|
export { DumiDemo } from "./DumiDemo";
|
|
5
4
|
export { DumiDemoGrid } from "./DumiDemoGrid";
|
|
6
5
|
export { DumiPage } from "./DumiPage";
|
|
6
|
+
export { useDemoData, useSiteData } from "./context";
|
|
7
7
|
export { openCodeSandbox } from "./openCodeSandbox";
|
|
8
8
|
export { openStackBlitz } from "./openStackBlitz";
|
|
9
9
|
export { useAtomAssets } from "./useAtomAssets";
|
|
@@ -1,12 +1,19 @@
|
|
|
1
|
-
function
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
2
|
+
import { getRouteMetaById, matchRoutes, useAppData, useLocation, useRouteData } from 'dumi';
|
|
3
|
+
import { useMemo } from 'react';
|
|
4
|
+
import use from "./context/use";
|
|
5
|
+
var cache = new Map();
|
|
6
|
+
var useAsyncRouteMeta = function useAsyncRouteMeta(id) {
|
|
7
|
+
if (!cache.has(id)) {
|
|
8
|
+
cache.set(id, getRouteMetaById(id));
|
|
9
|
+
}
|
|
10
|
+
return use(cache.get(id));
|
|
11
|
+
};
|
|
12
|
+
var emptyMeta = {
|
|
13
|
+
frontmatter: {},
|
|
14
|
+
toc: [],
|
|
15
|
+
texts: []
|
|
16
|
+
};
|
|
10
17
|
|
|
11
18
|
/**
|
|
12
19
|
* hook for get matched route meta
|
|
@@ -18,29 +25,23 @@ export var useRouteMeta = function useRouteMeta() {
|
|
|
18
25
|
pathname = _useLocation.pathname;
|
|
19
26
|
var _useAppData = useAppData(),
|
|
20
27
|
clientRoutes = _useAppData.clientRoutes;
|
|
21
|
-
var
|
|
22
|
-
var ret;
|
|
28
|
+
var curRoute = useMemo(function () {
|
|
23
29
|
if (route.path === pathname && !('isLayout' in route)) {
|
|
24
30
|
// use `useRouteData` result if matched, for performance
|
|
25
|
-
|
|
31
|
+
return route;
|
|
26
32
|
} else {
|
|
27
|
-
var _matchRoutes
|
|
33
|
+
var _matchRoutes;
|
|
28
34
|
// match manually for dynamic route & layout component
|
|
29
35
|
var matched = (_matchRoutes = matchRoutes(clientRoutes, pathname)) === null || _matchRoutes === void 0 ? void 0 : _matchRoutes.pop();
|
|
30
|
-
|
|
36
|
+
return matched === null || matched === void 0 ? void 0 : matched.route;
|
|
31
37
|
}
|
|
32
|
-
return ret || {
|
|
33
|
-
frontmatter: {},
|
|
34
|
-
toc: [],
|
|
35
|
-
texts: []
|
|
36
|
-
};
|
|
37
|
-
}, [clientRoutes.length, pathname]);
|
|
38
|
-
var _useState = useState(getter),
|
|
39
|
-
_useState2 = _slicedToArray(_useState, 2),
|
|
40
|
-
meta = _useState2[0],
|
|
41
|
-
setMeta = _useState2[1];
|
|
42
|
-
useIsomorphicLayoutEffect(function () {
|
|
43
|
-
setMeta(getter);
|
|
44
38
|
}, [clientRoutes.length, pathname]);
|
|
39
|
+
var meta = useAsyncRouteMeta(curRoute === null || curRoute === void 0 ? void 0 : curRoute.id) || emptyMeta;
|
|
40
|
+
if (curRoute && 'meta' in curRoute && _typeof(curRoute.meta) === 'object') {
|
|
41
|
+
Object.keys(curRoute.meta).forEach(function (key) {
|
|
42
|
+
var _ref, _ref$key;
|
|
43
|
+
(_ref$key = (_ref = meta)[key]) !== null && _ref$key !== void 0 ? _ref$key : _ref[key] = curRoute.meta[key];
|
|
44
|
+
});
|
|
45
|
+
}
|
|
45
46
|
return meta;
|
|
46
47
|
};
|
package/dist/constants.d.ts
CHANGED
package/dist/constants.js
CHANGED
|
@@ -26,12 +26,14 @@ __export(constants_exports, {
|
|
|
26
26
|
PREFERS_COLOR_ATTR: () => PREFERS_COLOR_ATTR,
|
|
27
27
|
PREFERS_COLOR_LS_KEY: () => PREFERS_COLOR_LS_KEY,
|
|
28
28
|
SP_ROUTE_PREFIX: () => SP_ROUTE_PREFIX,
|
|
29
|
+
TEMPLATES_DIR: () => TEMPLATES_DIR,
|
|
29
30
|
THEME_PREFIX: () => THEME_PREFIX,
|
|
30
31
|
USELESS_TMP_FILES: () => USELESS_TMP_FILES,
|
|
31
32
|
VERSION_2_DEPRECATE_SOFT_BREAKS: () => VERSION_2_DEPRECATE_SOFT_BREAKS,
|
|
32
33
|
VERSION_2_LEVEL_NAV: () => VERSION_2_LEVEL_NAV
|
|
33
34
|
});
|
|
34
35
|
module.exports = __toCommonJS(constants_exports);
|
|
36
|
+
var import_path = require("path");
|
|
35
37
|
var LOCAL_DUMI_DIR = ".dumi";
|
|
36
38
|
var LOCAL_THEME_DIR = `${LOCAL_DUMI_DIR}/theme`;
|
|
37
39
|
var LOCAL_PAGES_DIR = `${LOCAL_DUMI_DIR}/pages`;
|
|
@@ -51,6 +53,7 @@ var PICKED_PKG_FIELDS = {
|
|
|
51
53
|
var USELESS_TMP_FILES = ["tsconfig.json", "typings.d.ts"];
|
|
52
54
|
var VERSION_2_LEVEL_NAV = "^2.2.0";
|
|
53
55
|
var VERSION_2_DEPRECATE_SOFT_BREAKS = "^2.2.0";
|
|
56
|
+
var TEMPLATES_DIR = (0, import_path.join)(__dirname, "./templates");
|
|
54
57
|
// Annotate the CommonJS export names for ESM import in node:
|
|
55
58
|
0 && (module.exports = {
|
|
56
59
|
LOCAL_DUMI_DIR,
|
|
@@ -60,6 +63,7 @@ var VERSION_2_DEPRECATE_SOFT_BREAKS = "^2.2.0";
|
|
|
60
63
|
PREFERS_COLOR_ATTR,
|
|
61
64
|
PREFERS_COLOR_LS_KEY,
|
|
62
65
|
SP_ROUTE_PREFIX,
|
|
66
|
+
TEMPLATES_DIR,
|
|
63
67
|
THEME_PREFIX,
|
|
64
68
|
USELESS_TMP_FILES,
|
|
65
69
|
VERSION_2_DEPRECATE_SOFT_BREAKS,
|
|
@@ -83,11 +83,23 @@ var compile_default = (api) => {
|
|
|
83
83
|
(0, import_assets.addExampleAssets)(assets);
|
|
84
84
|
},
|
|
85
85
|
onResolveAtomMeta: import_assets.addAtomMeta
|
|
86
|
+
}).end().end().oneOf("md-demo").resourceQuery(/demo$/).use("babel-loader").loader(babelInUmi.loader).options(babelInUmi.options).end().use("md-demo-loader").loader(loaderPath).options({
|
|
87
|
+
...loaderBaseOpts,
|
|
88
|
+
mode: "demo"
|
|
89
|
+
}).end().end().oneOf("md-demo-index").resourceQuery(/demo-index$/).use("md-demo-index-loader").loader(loaderPath).options({
|
|
90
|
+
...loaderBaseOpts,
|
|
91
|
+
mode: "demo-index"
|
|
92
|
+
}).end().end().oneOf("md-frontmatter").resourceQuery(/frontmatter$/).use("md-frontmatter-loader").loader(loaderPath).options({
|
|
93
|
+
...loaderBaseOpts,
|
|
94
|
+
mode: "frontmatter"
|
|
95
|
+
}).end().end().oneOf("md-text").resourceQuery(/text$/).use("md-text-loader").loader(loaderPath).options({
|
|
96
|
+
...loaderBaseOpts,
|
|
97
|
+
mode: "text"
|
|
86
98
|
}).end().end().oneOf("md").use("babel-loader").loader(babelInUmi.loader).options(babelInUmi.options).end().use("md-loader").loader(loaderPath).options({
|
|
87
99
|
...loaderBaseOpts,
|
|
88
100
|
builtins: api.service.themeData.builtins
|
|
89
101
|
});
|
|
90
|
-
memo.module.rule("dumi-page").type("javascript/auto").test(/\.(j|t)sx?$/).resourceQuery(/meta$/).use("page-meta-loader").loader(require.resolve("../../loaders/page"));
|
|
102
|
+
memo.module.rule("dumi-page").type("javascript/auto").test(/\.(j|t)sx?$/).resourceQuery(/(meta|frontmatter)$/).use("page-meta-loader").loader(require.resolve("../../loaders/page"));
|
|
91
103
|
memo.module.rule("dumi-demo").type("javascript/auto").test(/\..+$/).enforce("pre").resourceQuery(/techStack/).use("demo-loader").loader(require.resolve("../../loaders/demo")).options({ techStacks, cwd: api.cwd });
|
|
92
104
|
memo.module.rule("dumi-raw").type("javascript/auto").post().resourceQuery(/dumi-raw/).use("raw-loader").loader(require.resolve("raw-loader")).end().use("pre-raw-loader").loader(require.resolve("../../loaders/pre-raw"));
|
|
93
105
|
if (api.env === "development" && memo.plugins.has("fastRefresh")) {
|
package/dist/features/exports.js
CHANGED
|
@@ -44,7 +44,8 @@ var exports_default = (api) => {
|
|
|
44
44
|
noPluginDir: true,
|
|
45
45
|
path: "dumi/exports.ts",
|
|
46
46
|
content: `export * from '../exports';
|
|
47
|
-
export * from '${(0, import_plugin_utils.winPath)(require.resolve("../client/theme-api"))}'
|
|
47
|
+
export * from '${(0, import_plugin_utils.winPath)(require.resolve("../client/theme-api"))}';
|
|
48
|
+
export { getRouteMetaById } from './meta/route-meta';`
|
|
48
49
|
});
|
|
49
50
|
});
|
|
50
51
|
};
|
package/dist/features/meta.js
CHANGED
|
@@ -34,6 +34,7 @@ __export(meta_exports, {
|
|
|
34
34
|
default: () => meta_default
|
|
35
35
|
});
|
|
36
36
|
module.exports = __toCommonJS(meta_exports);
|
|
37
|
+
var import_constants = require("../constants");
|
|
37
38
|
var import_path = __toESM(require("path"));
|
|
38
39
|
var import_plugin_utils = require("umi/plugin-utils");
|
|
39
40
|
var import_tabs = require("./tabs");
|
|
@@ -65,89 +66,45 @@ var meta_default = (api) => {
|
|
|
65
66
|
path: ATOMS_META_PATH,
|
|
66
67
|
content: "export const components = null;"
|
|
67
68
|
});
|
|
69
|
+
const parsedMetaFiles = await api.applyPlugins({
|
|
70
|
+
type: api.ApplyPluginsType.modify,
|
|
71
|
+
key: "dumi.modifyMetaFiles",
|
|
72
|
+
initialValue: JSON.parse(JSON.stringify(metaFiles))
|
|
73
|
+
});
|
|
68
74
|
api.writeTmpFile({
|
|
69
75
|
noPluginDir: true,
|
|
70
|
-
path: "dumi/meta/
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
export const demos = Object.entries(filesMeta).reduce((acc, [id, meta]) => {
|
|
95
|
-
// append route id to demo
|
|
96
|
-
Object.values(meta.demos).forEach((demo) => {
|
|
97
|
-
demo.routeId = id;
|
|
98
|
-
});
|
|
99
|
-
// merge demos
|
|
100
|
-
Object.assign(acc, meta.demos);
|
|
101
|
-
|
|
102
|
-
// remove demos from meta, to avoid deep clone demos in umi routes/children compatible logic
|
|
103
|
-
delete meta.demos;
|
|
104
|
-
|
|
105
|
-
return acc;
|
|
106
|
-
}, {});
|
|
107
|
-
`,
|
|
108
|
-
{
|
|
109
|
-
metaFiles: await api.applyPlugins({
|
|
110
|
-
type: api.ApplyPluginsType.modify,
|
|
111
|
-
key: "dumi.modifyMetaFiles",
|
|
112
|
-
initialValue: metaFiles
|
|
113
|
-
})
|
|
114
|
-
}
|
|
115
|
-
)
|
|
76
|
+
path: "dumi/meta/frontmatter.ts",
|
|
77
|
+
tplPath: (0, import_plugin_utils.winPath)((0, import_path.join)(import_constants.TEMPLATES_DIR, "meta-frontmatter.ts.tpl")),
|
|
78
|
+
context: {
|
|
79
|
+
metaFiles: parsedMetaFiles
|
|
80
|
+
}
|
|
81
|
+
});
|
|
82
|
+
const mdFiles = parsedMetaFiles.filter(
|
|
83
|
+
(metaFile) => metaFile.file.endsWith(".md")
|
|
84
|
+
);
|
|
85
|
+
api.writeTmpFile({
|
|
86
|
+
noPluginDir: true,
|
|
87
|
+
path: "dumi/meta/demos.ts",
|
|
88
|
+
tplPath: (0, import_plugin_utils.winPath)((0, import_path.join)(import_constants.TEMPLATES_DIR, "meta-demos.ts.tpl")),
|
|
89
|
+
context: {
|
|
90
|
+
metaFiles: mdFiles
|
|
91
|
+
}
|
|
92
|
+
});
|
|
93
|
+
api.writeTmpFile({
|
|
94
|
+
noPluginDir: true,
|
|
95
|
+
path: "dumi/meta/route-meta.ts",
|
|
96
|
+
tplPath: (0, import_plugin_utils.winPath)((0, import_path.join)(import_constants.TEMPLATES_DIR, "meta-route.ts.tpl")),
|
|
97
|
+
context: {
|
|
98
|
+
metaFiles: mdFiles
|
|
99
|
+
}
|
|
116
100
|
});
|
|
117
101
|
api.writeTmpFile({
|
|
118
102
|
noPluginDir: true,
|
|
119
103
|
path: "dumi/meta/runtime.ts",
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
import_path.default.dirname(require.resolve("deepmerge/package"))
|
|
123
|
-
)}';
|
|
124
|
-
export const patchRoutes = ({ routes }) => {
|
|
125
|
-
Object.values(routes).forEach((route) => {
|
|
126
|
-
if (filesMeta[route.id]) {
|
|
127
|
-
if (process.env.NODE_ENV === 'production' && (route.meta?.frontmatter?.debug || filesMeta[route.id].frontmatter.debug)) {
|
|
128
|
-
// hide route in production which set hide frontmatter
|
|
129
|
-
delete routes[route.id];
|
|
130
|
-
} else {
|
|
131
|
-
// merge meta to route object
|
|
132
|
-
route.meta = deepmerge(route.meta, filesMeta[route.id]);
|
|
133
|
-
|
|
134
|
-
// apply real tab data from id
|
|
135
|
-
route.meta.tabs = route.meta.tabs?.map((id) => {
|
|
136
|
-
const meta = {
|
|
137
|
-
frontmatter: { title: tabs[id].title },
|
|
138
|
-
toc: [],
|
|
139
|
-
texts: [],
|
|
140
|
-
}
|
|
141
|
-
return {
|
|
142
|
-
...tabs[id],
|
|
143
|
-
meta: filesMeta[id] || meta,
|
|
144
|
-
}
|
|
145
|
-
});
|
|
104
|
+
tplPath: (0, import_plugin_utils.winPath)((0, import_path.join)(import_constants.TEMPLATES_DIR, "meta-runtime.ts.tpl")),
|
|
105
|
+
context: {
|
|
106
|
+
deepmerge: (0, import_plugin_utils.winPath)(import_path.default.dirname(require.resolve("deepmerge/package")))
|
|
146
107
|
}
|
|
147
|
-
}
|
|
148
|
-
});
|
|
149
|
-
}
|
|
150
|
-
`
|
|
151
108
|
});
|
|
152
109
|
});
|
|
153
110
|
api.addRuntimePlugin(() => "@@/dumi/meta/runtime.ts");
|
|
@@ -279,63 +279,27 @@ export default DumiLoading;
|
|
|
279
279
|
api.writeTmpFile({
|
|
280
280
|
noPluginDir: true,
|
|
281
281
|
path: "dumi/theme/ContextWrapper.tsx",
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
useEffect(() => {
|
|
303
|
-
return history.listen((next) => {
|
|
304
|
-
if (next.location.pathname !== prev.current) {
|
|
305
|
-
prev.current = next.location.pathname;
|
|
306
|
-
|
|
307
|
-
// scroll to top when route changed
|
|
308
|
-
document.documentElement.scrollTo(0, 0);
|
|
282
|
+
tplPath: (0, import_plugin_utils.winPath)((0, import_path.join)(import_constants.TEMPLATES_DIR, "ContextWrapper.ts.tpl")),
|
|
283
|
+
context: {
|
|
284
|
+
contextPath: (0, import_plugin_utils.winPath)(require.resolve("../../client/theme-api/context")),
|
|
285
|
+
defaultExport: hasDefaultExport ? `import entryDefaultExport from '${(0, import_plugin_utils.winPath)(entryFile)}';` : "",
|
|
286
|
+
namedExport: hasNamedExport ? `import * as entryMemberExports from '${(0, import_plugin_utils.winPath)(entryFile)}';` : "",
|
|
287
|
+
hasDefaultExport,
|
|
288
|
+
hasNamedExport,
|
|
289
|
+
pkg: JSON.stringify(
|
|
290
|
+
import_plugin_utils.lodash.pick(api.pkg, ...Object.keys(import_constants.PICKED_PKG_FIELDS))
|
|
291
|
+
),
|
|
292
|
+
historyType: ((_a = api.config.history) == null ? void 0 : _a.type) || "browser",
|
|
293
|
+
hostname: String(JSON.stringify((_b = api.config.sitemap) == null ? void 0 : _b.hostname)),
|
|
294
|
+
themeConfig: JSON.stringify(
|
|
295
|
+
Object.assign(
|
|
296
|
+
import_plugin_utils.lodash.pick(api.config, "logo", "description", "title"),
|
|
297
|
+
api.config.themeConfig
|
|
298
|
+
)
|
|
299
|
+
),
|
|
300
|
+
_2_level_nav_available: api.appData._2LevelNavAvailable
|
|
309
301
|
}
|
|
310
302
|
});
|
|
311
|
-
}, []);
|
|
312
|
-
|
|
313
|
-
return (
|
|
314
|
-
<SiteContext.Provider value={{
|
|
315
|
-
pkg: ${JSON.stringify(
|
|
316
|
-
import_plugin_utils.lodash.pick(api.pkg, ...Object.keys(import_constants.PICKED_PKG_FIELDS))
|
|
317
|
-
)},
|
|
318
|
-
historyType: "${((_a = api.config.history) == null ? void 0 : _a.type) || "browser"}",
|
|
319
|
-
entryExports,
|
|
320
|
-
demos,
|
|
321
|
-
components,
|
|
322
|
-
locales,
|
|
323
|
-
loading,
|
|
324
|
-
setLoading,
|
|
325
|
-
hostname: ${JSON.stringify((_b = api.config.sitemap) == null ? void 0 : _b.hostname)},
|
|
326
|
-
themeConfig: ${JSON.stringify(
|
|
327
|
-
Object.assign(
|
|
328
|
-
import_plugin_utils.lodash.pick(api.config, "logo", "description", "title"),
|
|
329
|
-
api.config.themeConfig
|
|
330
|
-
)
|
|
331
|
-
)},
|
|
332
|
-
_2_level_nav_available: ${api.appData._2LevelNavAvailable},
|
|
333
|
-
}}>
|
|
334
|
-
{outlet}
|
|
335
|
-
</SiteContext.Provider>
|
|
336
|
-
);
|
|
337
|
-
}`
|
|
338
|
-
});
|
|
339
303
|
const primaryColor = typeof ((_c = api.config) == null ? void 0 : _c.theme) === "object" ? (_e = (_d = api.config) == null ? void 0 : _d.theme) == null ? void 0 : _e["@c-primary"] : "#1677ff";
|
|
340
304
|
api.writeTmpFile({
|
|
341
305
|
noPluginDir: true,
|
|
@@ -3,12 +3,24 @@ import { type IMdTransformerOptions, type IMdTransformerResult } from './transfo
|
|
|
3
3
|
interface IMdLoaderDefaultModeOptions extends Omit<IMdTransformerOptions, 'fileAbsPath'> {
|
|
4
4
|
mode?: 'markdown';
|
|
5
5
|
builtins: IThemeLoadResult['builtins'];
|
|
6
|
+
onResolveDemos?: (demos: NonNullable<IMdTransformerResult['meta']['demos']>) => void;
|
|
7
|
+
onResolveAtomMeta?: (atomId: string, meta: IMdTransformerResult['meta']['frontmatter']) => void;
|
|
6
8
|
}
|
|
7
9
|
interface IMdLoaderDemosModeOptions extends Omit<IMdLoaderDefaultModeOptions, 'builtins' | 'mode'> {
|
|
8
10
|
mode: 'meta';
|
|
9
|
-
onResolveDemos?: (demos: NonNullable<IMdTransformerResult['meta']['demos']>) => void;
|
|
10
|
-
onResolveAtomMeta?: (atomId: string, meta: IMdTransformerResult['meta']['frontmatter']) => void;
|
|
11
11
|
}
|
|
12
|
-
|
|
12
|
+
interface IMdLoaderDemoModeOptions extends Omit<IMdLoaderDefaultModeOptions, 'builtins' | 'mode'> {
|
|
13
|
+
mode: 'demo';
|
|
14
|
+
}
|
|
15
|
+
interface IMdLoaderDemoIndexModeOptions extends Omit<IMdLoaderDefaultModeOptions, 'builtins' | 'mode'> {
|
|
16
|
+
mode: 'demo-index';
|
|
17
|
+
}
|
|
18
|
+
interface IMdLoaderFrontmatterModeOptions extends Omit<IMdLoaderDefaultModeOptions, 'builtins' | 'mode'> {
|
|
19
|
+
mode: 'frontmatter';
|
|
20
|
+
}
|
|
21
|
+
interface IMdLoaderTextModeOptions extends Omit<IMdLoaderDefaultModeOptions, 'builtins' | 'mode'> {
|
|
22
|
+
mode: 'text';
|
|
23
|
+
}
|
|
24
|
+
export type IMdLoaderOptions = IMdLoaderDefaultModeOptions | IMdLoaderDemosModeOptions | IMdLoaderDemoModeOptions | IMdLoaderFrontmatterModeOptions | IMdLoaderTextModeOptions | IMdLoaderDemoIndexModeOptions;
|
|
13
25
|
export default function mdLoader(this: any, content: string): void;
|
|
14
26
|
export {};
|
|
@@ -46,20 +46,10 @@ function getDemoSourceFiles(demos = []) {
|
|
|
46
46
|
return ret;
|
|
47
47
|
}, []);
|
|
48
48
|
}
|
|
49
|
-
function
|
|
50
|
-
const {
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
if (opts.mode === "meta") {
|
|
54
|
-
const { frontmatter, toc, texts } = ret.meta;
|
|
55
|
-
if (demos && opts.onResolveDemos) {
|
|
56
|
-
opts.onResolveDemos(demos);
|
|
57
|
-
}
|
|
58
|
-
if (frontmatter.atomId && opts.onResolveAtomMeta) {
|
|
59
|
-
opts.onResolveAtomMeta(frontmatter.atomId, frontmatter);
|
|
60
|
-
}
|
|
61
|
-
return import_plugin_utils.Mustache.render(
|
|
62
|
-
`import React from 'react';
|
|
49
|
+
function emitMeta(opts, ret) {
|
|
50
|
+
const { frontmatter, toc, texts, demos } = ret.meta;
|
|
51
|
+
return import_plugin_utils.Mustache.render(
|
|
52
|
+
`import React from 'react';
|
|
63
53
|
|
|
64
54
|
export const demos = {
|
|
65
55
|
{{#demos}}
|
|
@@ -73,40 +63,129 @@ export const frontmatter = {{{frontmatter}}};
|
|
|
73
63
|
export const toc = {{{toc}}};
|
|
74
64
|
export const texts = {{{texts}}};
|
|
75
65
|
`,
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
}
|
|
66
|
+
{
|
|
67
|
+
demos,
|
|
68
|
+
frontmatter: JSON.stringify(frontmatter),
|
|
69
|
+
toc: JSON.stringify(toc),
|
|
70
|
+
texts: JSON.stringify(texts),
|
|
71
|
+
renderAsset: function renderAsset() {
|
|
72
|
+
if (!("asset" in this))
|
|
73
|
+
return "null";
|
|
74
|
+
let { asset } = this;
|
|
75
|
+
const { sources } = this;
|
|
76
|
+
Object.keys(this.sources).forEach((file) => {
|
|
77
|
+
if (!asset.dependencies[file])
|
|
78
|
+
return;
|
|
79
|
+
asset = import_plugin_utils.lodash.cloneDeep(asset);
|
|
80
|
+
asset.dependencies[file].value = `{{{require('-!${sources[file]}?dumi-raw').default}}}`;
|
|
81
|
+
});
|
|
82
|
+
return JSON.stringify(asset, null, 2).replace(/"{{{|}}}"/g, "");
|
|
94
83
|
}
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
84
|
+
}
|
|
85
|
+
);
|
|
86
|
+
}
|
|
87
|
+
function emitDefault(opts, ret) {
|
|
88
|
+
const { frontmatter, demos } = ret.meta;
|
|
89
|
+
const isTabContent = (0, import_tabs.isTabRouteFile)(this.resourcePath);
|
|
90
|
+
if (demos && opts.onResolveDemos) {
|
|
91
|
+
opts.onResolveDemos(demos);
|
|
92
|
+
}
|
|
93
|
+
if (frontmatter.atomId && opts.onResolveAtomMeta) {
|
|
94
|
+
opts.onResolveAtomMeta(frontmatter.atomId, frontmatter);
|
|
95
|
+
}
|
|
96
|
+
return `${Object.values(opts.builtins).map((item) => `import ${item.specifier} from '${item.source}';`).join("\n")}
|
|
99
97
|
import React from 'react';
|
|
100
|
-
${isTabContent ?
|
|
98
|
+
${isTabContent ? `` : `import { DumiPage } from 'dumi';`}
|
|
99
|
+
import { texts as ${import_rehypeText.CONTENT_TEXTS_OBJ_NAME} } from '${(0, import_plugin_utils.winPath)(
|
|
100
|
+
this.resourcePath
|
|
101
|
+
)}?type=text';
|
|
101
102
|
|
|
102
103
|
// export named function for fastRefresh
|
|
103
104
|
// ref: https://github.com/pmmmwh/react-refresh-webpack-plugin/blob/main/docs/TROUBLESHOOTING.md#edits-always-lead-to-full-reload
|
|
104
105
|
function DumiMarkdownContent() {
|
|
105
|
-
const { texts: ${import_rehypeText.CONTENT_TEXTS_OBJ_NAME} } = use${isTabContent ? "TabMeta" : "RouteMeta"}();
|
|
106
106
|
return ${isTabContent ? ret.content : `<DumiPage>${ret.content}</DumiPage>`};
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
export default DumiMarkdownContent;`;
|
|
110
|
+
}
|
|
111
|
+
function emitDemo(opts, ret) {
|
|
112
|
+
const { demos } = ret.meta;
|
|
113
|
+
return import_plugin_utils.Mustache.render(
|
|
114
|
+
`import React from 'react';
|
|
115
|
+
|
|
116
|
+
export const demos = {
|
|
117
|
+
{{#demos}}
|
|
118
|
+
'{{{id}}}': {
|
|
119
|
+
component: {{{component}}},
|
|
120
|
+
asset: {{{renderAsset}}}
|
|
121
|
+
},
|
|
122
|
+
{{/demos}}
|
|
123
|
+
};`,
|
|
124
|
+
{
|
|
125
|
+
demos,
|
|
126
|
+
renderAsset: function renderAsset() {
|
|
127
|
+
if (!("asset" in this))
|
|
128
|
+
return "null";
|
|
129
|
+
let { asset } = this;
|
|
130
|
+
const { sources } = this;
|
|
131
|
+
Object.keys(this.sources).forEach((file) => {
|
|
132
|
+
if (!asset.dependencies[file])
|
|
133
|
+
return;
|
|
134
|
+
asset = import_plugin_utils.lodash.cloneDeep(asset);
|
|
135
|
+
asset.dependencies[file].value = `{{{require('-!${sources[file]}?dumi-raw').default}}}`;
|
|
136
|
+
});
|
|
137
|
+
return JSON.stringify(asset, null, 2).replace(/"{{{|}}}"/g, "");
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
);
|
|
141
|
+
}
|
|
142
|
+
function emitDemoIndex(opts, ret) {
|
|
143
|
+
const { demos } = ret.meta;
|
|
144
|
+
return import_plugin_utils.Mustache.render(
|
|
145
|
+
`export const demoIndex = {
|
|
146
|
+
ids: {{{ids}}},
|
|
147
|
+
getter: {{{getter}}}
|
|
148
|
+
};`,
|
|
149
|
+
{
|
|
150
|
+
ids: JSON.stringify(demos == null ? void 0 : demos.map((demo) => demo.id)),
|
|
151
|
+
getter: `() => import('${(0, import_plugin_utils.winPath)(this.resourcePath)}?type=demo')`
|
|
152
|
+
}
|
|
153
|
+
);
|
|
154
|
+
}
|
|
155
|
+
function emitFrontmatter(opts, ret) {
|
|
156
|
+
const { frontmatter } = ret.meta;
|
|
157
|
+
return import_plugin_utils.Mustache.render(`export const frontmatter = {{{frontmatter}}};`, {
|
|
158
|
+
frontmatter: JSON.stringify(frontmatter)
|
|
159
|
+
});
|
|
160
|
+
}
|
|
161
|
+
function emitText(opts, ret) {
|
|
162
|
+
const { texts, toc } = ret.meta;
|
|
163
|
+
return import_plugin_utils.Mustache.render(
|
|
164
|
+
`export const toc = {{{toc}}};
|
|
165
|
+
export const texts = {{{texts}}};`,
|
|
166
|
+
{
|
|
167
|
+
toc: JSON.stringify(toc),
|
|
168
|
+
texts: JSON.stringify(texts)
|
|
169
|
+
}
|
|
170
|
+
);
|
|
171
|
+
}
|
|
172
|
+
function emit(opts, ret) {
|
|
173
|
+
const { demos, embeds } = ret.meta;
|
|
174
|
+
embeds.forEach((file) => this.addDependency(file));
|
|
175
|
+
getDemoSourceFiles(demos).forEach((file) => this.addDependency(file));
|
|
176
|
+
switch (opts.mode) {
|
|
177
|
+
case "meta":
|
|
178
|
+
return emitMeta.call(this, opts, ret);
|
|
179
|
+
case "demo":
|
|
180
|
+
return emitDemo.call(this, opts, ret);
|
|
181
|
+
case "demo-index":
|
|
182
|
+
return emitDemoIndex.call(this, opts, ret);
|
|
183
|
+
case "frontmatter":
|
|
184
|
+
return emitFrontmatter.call(this, opts, ret);
|
|
185
|
+
case "text":
|
|
186
|
+
return emitText.call(this, opts, ret);
|
|
187
|
+
default:
|
|
188
|
+
return emitDefault.call(this, opts, ret);
|
|
110
189
|
}
|
|
111
190
|
}
|
|
112
191
|
function getDepsCacheKey(deps = []) {
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import React, { useState, useEffect, useRef } from 'react';
|
|
2
|
+
import { useOutlet, history } from 'dumi';
|
|
3
|
+
import { warning } from 'rc-util';
|
|
4
|
+
import { SiteContext, type ISiteContext } from '{{{contextPath}}}';
|
|
5
|
+
import { components } from '../meta/atoms';
|
|
6
|
+
import { getDemoById } from '../meta/demos';
|
|
7
|
+
import { locales } from '../locales/config';
|
|
8
|
+
{{{defaultExport}}}
|
|
9
|
+
{{{namedExport}}}
|
|
10
|
+
|
|
11
|
+
const entryExports = {
|
|
12
|
+
{{#hasDefaultExport}}
|
|
13
|
+
default: entryDefaultExport,
|
|
14
|
+
{{/hasDefaultExport}}
|
|
15
|
+
{{#hasNamedExport}}
|
|
16
|
+
...entryMemberExports,
|
|
17
|
+
{{/hasNamedExport}}
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
// Static content
|
|
21
|
+
const pkg = {{{pkg}}};
|
|
22
|
+
const historyType = "{{{historyType}}}";
|
|
23
|
+
const hostname = {{{hostname}}};
|
|
24
|
+
const themeConfig = {{{themeConfig}}};
|
|
25
|
+
const _2_level_nav_available = {{{_2_level_nav_available}}};
|
|
26
|
+
|
|
27
|
+
export default function DumiContextWrapper() {
|
|
28
|
+
const outlet = useOutlet();
|
|
29
|
+
const [loading, setLoading] = useState(false);
|
|
30
|
+
const prev = useRef(history.location.pathname);
|
|
31
|
+
|
|
32
|
+
useEffect(() => {
|
|
33
|
+
return history.listen((next) => {
|
|
34
|
+
if (next.location.pathname !== prev.current) {
|
|
35
|
+
prev.current = next.location.pathname;
|
|
36
|
+
|
|
37
|
+
// scroll to top when route changed
|
|
38
|
+
document.documentElement.scrollTo(0, 0);
|
|
39
|
+
}
|
|
40
|
+
});
|
|
41
|
+
}, []);
|
|
42
|
+
|
|
43
|
+
const context: ISiteContext = React.useMemo(() => {
|
|
44
|
+
const ctx = {
|
|
45
|
+
pkg,
|
|
46
|
+
historyType,
|
|
47
|
+
entryExports,
|
|
48
|
+
demos: null,
|
|
49
|
+
components,
|
|
50
|
+
locales,
|
|
51
|
+
loading,
|
|
52
|
+
setLoading,
|
|
53
|
+
hostname,
|
|
54
|
+
themeConfig,
|
|
55
|
+
_2_level_nav_available,
|
|
56
|
+
getDemoById,
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
// Proxy do not warning since `Object.keys` will get nothing to loop
|
|
60
|
+
Object.defineProperty(ctx, 'demos', {
|
|
61
|
+
get: () => {
|
|
62
|
+
warning(false, '`demos` return empty in latest version.');
|
|
63
|
+
return {};
|
|
64
|
+
},
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
return ctx;
|
|
68
|
+
}, [
|
|
69
|
+
pkg,
|
|
70
|
+
historyType,
|
|
71
|
+
entryExports,
|
|
72
|
+
components,
|
|
73
|
+
locales,
|
|
74
|
+
loading,
|
|
75
|
+
setLoading,
|
|
76
|
+
hostname,
|
|
77
|
+
themeConfig,
|
|
78
|
+
_2_level_nav_available,
|
|
79
|
+
getDemoById,
|
|
80
|
+
]);
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
return (
|
|
85
|
+
<SiteContext.Provider value={context}>
|
|
86
|
+
{outlet}
|
|
87
|
+
</SiteContext.Provider>
|
|
88
|
+
);
|
|
89
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{{#metaFiles}}
|
|
2
|
+
import { demoIndex as dmi{{{index}}} } from '{{{file}}}?type=demo-index';
|
|
3
|
+
{{/metaFiles}}
|
|
4
|
+
|
|
5
|
+
const demoIndexes: Record<string, { ids: string[], getter: () => Promise<any> }> = {
|
|
6
|
+
{{#metaFiles}}
|
|
7
|
+
'{{{id}}}': dmi{{{index}}},
|
|
8
|
+
{{/metaFiles}}
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
// Convert the demoIndex to a key-value pairs: <demoId, getter>
|
|
12
|
+
const demoIdMap = Object.keys(demoIndexes).reduce((total, current) => {
|
|
13
|
+
const demoIndex = demoIndexes[current];
|
|
14
|
+
const { ids, getter } = demoIndex;
|
|
15
|
+
|
|
16
|
+
ids.forEach((id) => {
|
|
17
|
+
total[id] = getter;
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
return total;
|
|
21
|
+
}, {});
|
|
22
|
+
|
|
23
|
+
/** Async to load demo by id */
|
|
24
|
+
export const getDemoById = async (id: string) => {
|
|
25
|
+
const getter = demoIdMap[id];
|
|
26
|
+
|
|
27
|
+
if (!getter) {
|
|
28
|
+
return null;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
const { demos }: any = await getter() || {};
|
|
32
|
+
|
|
33
|
+
return demos?.[id];
|
|
34
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { tabs } from './tabs';
|
|
2
|
+
import { filesFrontmatter } from './frontmatter';
|
|
3
|
+
|
|
4
|
+
const files = {
|
|
5
|
+
{{#metaFiles}}
|
|
6
|
+
'{{{id}}}': {
|
|
7
|
+
textGetter: () => import('{{{file}}}?type=text'),
|
|
8
|
+
{{#tabs}}
|
|
9
|
+
tabs: {{{tabs}}},
|
|
10
|
+
{{/tabs}}
|
|
11
|
+
},
|
|
12
|
+
{{/metaFiles}}
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export const getRouteMetaById = async (id: string) => {
|
|
16
|
+
const file = files[id];
|
|
17
|
+
|
|
18
|
+
if (!file) {
|
|
19
|
+
return null;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
const text = await file.textGetter();
|
|
23
|
+
const frontmatter = filesFrontmatter[id];
|
|
24
|
+
|
|
25
|
+
const tabsMeta = file.tabs && await Promise.all(file.tabs.map(async (tab) => {
|
|
26
|
+
const meta = await getRouteMetaById(tab) ?? {
|
|
27
|
+
frontmatter: { title: tabs[tab].title },
|
|
28
|
+
toc: [],
|
|
29
|
+
texts: [],
|
|
30
|
+
};
|
|
31
|
+
return {
|
|
32
|
+
...tabs[tab],
|
|
33
|
+
meta,
|
|
34
|
+
}
|
|
35
|
+
}));
|
|
36
|
+
|
|
37
|
+
return {
|
|
38
|
+
texts: text?.texts,
|
|
39
|
+
toc: text?.toc,
|
|
40
|
+
frontmatter,
|
|
41
|
+
tabs: tabsMeta,
|
|
42
|
+
};
|
|
43
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { warning } from 'rc-util';
|
|
2
|
+
import { tabs } from './tabs';
|
|
3
|
+
import { filesFrontmatter } from './frontmatter';
|
|
4
|
+
import deepmerge from '{{{deepmerge}}}';
|
|
5
|
+
|
|
6
|
+
// Proxy do not warning since `Object.keys` will get nothing to loop
|
|
7
|
+
function wrapEmpty(meta, fieldName, defaultValue) {
|
|
8
|
+
Object.defineProperty(meta, fieldName, {
|
|
9
|
+
get: () => {
|
|
10
|
+
warning(false, `'${fieldName}' return empty in latest version.`);
|
|
11
|
+
return defaultValue;
|
|
12
|
+
},
|
|
13
|
+
});
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export const patchRoutes = ({ routes }) => {
|
|
17
|
+
Object.values(routes).forEach((route) => {
|
|
18
|
+
if (filesFrontmatter[route.id]) {
|
|
19
|
+
if (process.env.NODE_ENV === 'production' && (route.meta?.frontmatter?.debug || filesFrontmatter[route.id].debug)) {
|
|
20
|
+
// hide route in production which set hide frontmatter
|
|
21
|
+
delete routes[route.id];
|
|
22
|
+
} else {
|
|
23
|
+
// merge meta to route object
|
|
24
|
+
route.meta = deepmerge(route.meta, { frontmatter: filesFrontmatter[route.id] });
|
|
25
|
+
|
|
26
|
+
wrapEmpty(route.meta, 'demos', {});
|
|
27
|
+
wrapEmpty(route.meta, 'texts', []);
|
|
28
|
+
|
|
29
|
+
// apply real tab data from id
|
|
30
|
+
route.meta.tabs = route.meta.tabs?.map((id) => {
|
|
31
|
+
const meta = {
|
|
32
|
+
frontmatter: filesFrontmatter[id] || { title: tabs[id].title },
|
|
33
|
+
toc: [],
|
|
34
|
+
texts: [],
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
wrapEmpty(meta, 'demos', {});
|
|
38
|
+
wrapEmpty(meta, 'texts', []);
|
|
39
|
+
|
|
40
|
+
return {
|
|
41
|
+
...tabs[id],
|
|
42
|
+
meta,
|
|
43
|
+
}
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
});
|
|
48
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{{#metaFiles}}
|
|
2
|
+
import { frontmatter as fm{{{index}}}, toc as toc{{{index}}} } from '{{{file}}}?type=meta';
|
|
3
|
+
{{/metaFiles}}
|
|
4
|
+
|
|
5
|
+
export { components } from './atoms';
|
|
6
|
+
export { tabs } from './tabs';
|
|
7
|
+
|
|
8
|
+
export const filesMeta = {
|
|
9
|
+
{{#metaFiles}}
|
|
10
|
+
'{{{id}}}': {
|
|
11
|
+
frontmatter: fm{{{index}}},
|
|
12
|
+
toc: toc{{{index}}},
|
|
13
|
+
texts: [],
|
|
14
|
+
demos: {},
|
|
15
|
+
{{#tabs}}
|
|
16
|
+
tabs: {{{tabs}}},
|
|
17
|
+
{{/tabs}}
|
|
18
|
+
},
|
|
19
|
+
{{/metaFiles}}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
// generate demos data in runtime, for reuse route.id to reduce bundle size
|
|
23
|
+
export const demos = {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dumi",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0-alpha.0",
|
|
4
4
|
"description": "📖 Documentation Generator of React Component",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"generator",
|
|
@@ -117,6 +117,7 @@
|
|
|
117
117
|
"rc-motion": "^2.7.3",
|
|
118
118
|
"rc-tabs": "^12.10.0",
|
|
119
119
|
"rc-tree": "^5.7.9",
|
|
120
|
+
"rc-util": "^5.37.0",
|
|
120
121
|
"react-copy-to-clipboard": "^5.1.0",
|
|
121
122
|
"react-error-boundary": "^4.0.10",
|
|
122
123
|
"react-intl": "^6.4.4",
|
|
@@ -8,7 +8,6 @@ var ContentTabs = function ContentTabs(_ref) {
|
|
|
8
8
|
var intl = useIntl();
|
|
9
9
|
|
|
10
10
|
// TODO: tab.Extra & tab.Action render
|
|
11
|
-
|
|
12
11
|
return Boolean(tabs === null || tabs === void 0 ? void 0 : tabs.length) ? /*#__PURE__*/React.createElement("ul", {
|
|
13
12
|
className: "dumi-default-content-tabs"
|
|
14
13
|
}, /*#__PURE__*/React.createElement("li", {
|
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
-
import { SP_ROUTE_PREFIX } from "../../constants";
|
|
3
|
-
import { useAppData, useSiteData } from 'dumi';
|
|
4
|
-
import Container from 'dumi/theme/builtins/Container';
|
|
5
|
-
import Previewer from 'dumi/theme/builtins/Previewer';
|
|
6
|
-
import React, { createElement } from 'react';
|
|
7
|
-
import { ErrorBoundary } from 'react-error-boundary';
|
|
8
|
-
var DemoErrorBoundary = function DemoErrorBoundary(props) {
|
|
9
|
-
return /*#__PURE__*/React.createElement(ErrorBoundary, {
|
|
10
|
-
fallbackRender: function fallbackRender(_ref) {
|
|
11
|
-
var error = _ref.error;
|
|
12
|
-
return /*#__PURE__*/React.createElement(Container, {
|
|
13
|
-
type: "error"
|
|
14
|
-
}, /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("strong", null, error.message || 'This demo has been crashed.')), error.stack && /*#__PURE__*/React.createElement("p", null, /*#__PURE__*/React.createElement("details", {
|
|
15
|
-
open: true
|
|
16
|
-
}, /*#__PURE__*/React.createElement("summary", null, "Error stack"), /*#__PURE__*/React.createElement("pre", null, error.stack))));
|
|
17
|
-
}
|
|
18
|
-
}, props.children);
|
|
19
|
-
};
|
|
20
|
-
export var DumiDemo = /*#__PURE__*/React.memo(function (props) {
|
|
21
|
-
var _useSiteData = useSiteData(),
|
|
22
|
-
demos = _useSiteData.demos,
|
|
23
|
-
historyType = _useSiteData.historyType;
|
|
24
|
-
var _useAppData = useAppData(),
|
|
25
|
-
basename = _useAppData.basename;
|
|
26
|
-
var _demos$props$demo$id = demos[props.demo.id],
|
|
27
|
-
component = _demos$props$demo$id.component,
|
|
28
|
-
asset = _demos$props$demo$id.asset;
|
|
29
|
-
|
|
30
|
-
// hide debug demo in production
|
|
31
|
-
if (process.env.NODE_ENV === 'production' && props.previewerProps.debug) return null;
|
|
32
|
-
if (props.demo.inline) {
|
|
33
|
-
return /*#__PURE__*/React.createElement(DemoErrorBoundary, null, /*#__PURE__*/createElement(component));
|
|
34
|
-
}
|
|
35
|
-
var isHashRoute = historyType === 'hash';
|
|
36
|
-
return /*#__PURE__*/React.createElement(Previewer, _extends({
|
|
37
|
-
asset: asset,
|
|
38
|
-
demoUrl:
|
|
39
|
-
// allow user override demoUrl by frontmatter
|
|
40
|
-
props.previewerProps.demoUrl || // when use hash route, browser can automatically handle relative paths starting with #
|
|
41
|
-
"".concat(isHashRoute ? "#" : '').concat(basename).concat(SP_ROUTE_PREFIX, "demos/").concat(props.demo.id)
|
|
42
|
-
}, props.previewerProps), props.previewerProps.iframe ? null : /*#__PURE__*/React.createElement(DemoErrorBoundary, null, /*#__PURE__*/createElement(component)));
|
|
43
|
-
}, function (prev, next) {
|
|
44
|
-
// compare length for performance
|
|
45
|
-
return JSON.stringify(prev).length === JSON.stringify(next).length;
|
|
46
|
-
});
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { createContext, useContext } from 'react';
|
|
2
|
-
export var SiteContext = /*#__PURE__*/createContext({
|
|
3
|
-
pkg: {},
|
|
4
|
-
historyType: 'browser',
|
|
5
|
-
entryExports: {},
|
|
6
|
-
demos: {},
|
|
7
|
-
components: {},
|
|
8
|
-
locales: [],
|
|
9
|
-
themeConfig: {},
|
|
10
|
-
loading: false,
|
|
11
|
-
setLoading: function setLoading() {},
|
|
12
|
-
_2_level_nav_available: true
|
|
13
|
-
});
|
|
14
|
-
export var useSiteData = function useSiteData() {
|
|
15
|
-
return useContext(SiteContext);
|
|
16
|
-
};
|