This repository has been archived by the owner on Jun 7, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 225
/
webpack.index.js
176 lines (161 loc) · 9.12 KB
/
webpack.index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
// ***********************************************************************************
// |docname| - A framework allowing a Runestone component to load only the JS it needs
// ***********************************************************************************
// The JavaScript required by all Runestone components is quite large and results in slow page loads. This approach enables a Runestone component to load only the JavaScript it needs, rather than loading JavaScript for all the components regardless of which are actually used.
//
// To accomplish this, webpack's split-chunks ability analyzes all JS, starting from this file. The dynamic imports below are transformed by webpack into the dynamic fetches of just the JS required by each file and all its dependencies. (If using static imports, webpack will assume that all files are already statically loaded via script tags, defeating the purpose of this framework.)
//
// However, this approach leads to complexity:
//
// - The ``data-component`` attribute of each component must be kept in sync with the keys of the ``module_map`` below.
// - The values in the ``module_map`` must be kept in sync with the JavaScript files which implement each of the components.
"use strict";
// Static imports
// ==============
// These imports are (we assume) needed by all pages. However, it would be much better to load these in the modules that actually use them.
//
// These are static imports; code in `dynamically loaded components`_ deals with dynamic imports.
//
// jQuery-related imports.
import "jquery-ui/jquery-ui.js";
import "jquery-ui/themes/base/jquery.ui.all.css";
import "./runestone/common/js/jquery.idle-timer.js";
import "./runestone/common/js/jquery_i18n/jquery.i18n.js";
import "./runestone/common/js/jquery_i18n/jquery.i18n.emitter.bidi.js";
import "./runestone/common/js/jquery_i18n/jquery.i18n.emitter.js";
import "./runestone/common/js/jquery_i18n/jquery.i18n.fallbacks.js";
import "./runestone/common/js/jquery_i18n/jquery.i18n.messagestore.js";
import "./runestone/common/js/jquery_i18n/jquery.i18n.parser.js";
import "./runestone/common/js/jquery_i18n/jquery.i18n.language.js";
// Bootstrap
import "bootstrap/dist/js/bootstrap.js";
import "bootstrap/dist/css/bootstrap.css";
import "./runestone/common/project_template/_templates/plugin_layouts/sphinx_bootstrap/static/bootstrap-sphinx.js";
import "./runestone/common/css/runestone-custom-sphinx-bootstrap.css";
// Misc
import "./runestone/common/js/bookfuncs.js";
import "./runestone/common/js/user-highlights.js";
import "./runestone/common/js/pretext.js";
// These belong in dynamic imports for the obvious component; however, these components don't include a ``data-component`` attribute.
import "./runestone/matrixeq/css/matrixeq.css";
import "./runestone/webgldemo/css/webglinteractive.css";
// These are only needed for the Runestone book, but not in a library mode (such as pretext). I would prefer to dynamically load them. However, these scripts are so small I haven't bothered to do so.
import { getSwitch, switchTheme } from "./runestone/common/js/theme.js";
import "./runestone/common/js/presenter_mode.js";
import "./runestone/common/css/presenter_mode.css";
// Dynamically loaded components
// =============================
// This provides a list of modules that components can dynamically import. Webpack will create a list of imports for each based on its analysis.
const module_map = {
// Wrap each import in a function, so that it won't occur until the function is called. While something cleaner would be nice, webpack can't analyze things like ``import(expression)``.
//
// The keys must match the value of each component's ``data-component`` attribute -- the ``runestone_import`` and ``runestone_auto_import`` functions assume this.
activecode: () => import("./runestone/activecode/js/acfactory.js"),
ble: () => import("./runestone/cellbotics/js/ble.js"),
// Always import the timed version of a component if available, since the timed components also define the component's factory and include the component as well. Note that ``acfactory`` imports the timed components of ActiveCode, so it follows this pattern.
clickablearea: () =>
import("./runestone/clickableArea/js/timedclickable.js"),
codelens: () => import("./runestone/codelens/js/codelens.js"),
datafile: () => import("./runestone/datafile/js/datafile.js"),
dragndrop: () => import("./runestone/dragndrop/js/timeddnd.js"),
fillintheblank: () => import("./runestone/fitb/js/timedfitb.js"),
groupsub: () => import("./runestone/groupsub/js/groupsub.js"),
khanex: () => import("./runestone/khanex/js/khanex.js"),
lp_build: () => import("./runestone/lp/js/lp.js"),
multiplechoice: () => import("./runestone/mchoice/js/timedmc.js"),
hparsons: () => import("./runestone/hparsons/js/hparsons.js"),
parsons: () => import("./runestone/parsons/js/timedparsons.js"),
poll: () => import("./runestone/poll/js/poll.js"),
quizly: () => import("./runestone/quizly/js/quizly.js"),
reveal: () => import("./runestone/reveal/js/reveal.js"),
selectquestion: () => import("./runestone/selectquestion/js/selectone.js"),
shortanswer: () =>
import("./runestone/shortanswer/js/timed_shortanswer.js"),
showeval: () => import("./runestone/showeval/js/showEval.js"),
simple_sensor: () => import("./runestone/cellbotics/js/simple_sensor.js"),
spreadsheet: () => import("./runestone/spreadsheet/js/spreadsheet.js"),
tabbedStuff: () => import("./runestone/tabbedStuff/js/tabbedstuff.js"),
timedAssessment: () => import("./runestone/timed/js/timed.js"),
wavedrom: () => import("./runestone/wavedrom/js/wavedrom.js"),
// TODO: since this isn't in a ``data-component``, need to trigger an import of this code manually.
webwork: () => import("./runestone/webwork/js/webwork.js"),
youtube: () => import("./runestone/video/js/runestonevideo.js"),
};
// .. _dynamic import machinery:
//
// Dynamic import machinery
// ========================
// Fulfill a promise when the Runestone pre-login complete event occurs.
let pre_login_complete_promise = new Promise((resolve) =>
$(document).on("runestone:pre-login-complete", resolve)
);
let loadedComponents;
// Provide a simple function to import the JS for all components on the page.
export function runestone_auto_import() {
// Create a set of ``data-component`` values, to avoid duplication.
const s = new Set(
// All Runestone components have a ``data-component`` attribute.
$("[data-component]")
.map(
// Extract the value of the data-component attribute.
(index, element) => $(element).attr("data-component")
// Switch from a jQuery object back to an array, passing that to the Set constructor.
)
.get()
);
// webwork questions are not wrapped in div with a data-component so we have to check a different way
if (document.querySelector(".webwork-button")) {
s.add("webwork");
}
// Load JS for each of the components found.
const a = [...s].map((value) =>
// If there's no JS for this component, return an empty Promise.
(module_map[value] || (() => Promise.resolve()))()
);
// Send the Runestone login complete event when all JS is loaded and the pre-login is also complete.
Promise.all([pre_login_complete_promise, ...a]).then(() =>
$(document).trigger("runestone:login-complete")
);
}
// Load component JS when the document is ready.
$(document).ready(runestone_auto_import);
// Provide a function to import one specific Runestone component.
// the import function inside module_map is async -- runestone_import
// should be awaited when necessary to ensure the import completes
export async function runestone_import(component_name) {
return module_map[component_name]();
}
async function popupScratchAC() {
// load the activecode bundle
await runestone_import("activecode");
// scratchDiv will be defined if we have already created a scratch
// activecode. If its not defined then we need to get it ready to toggle
if (!eBookConfig.scratchDiv) {
window.ACFactory.createScratchActivecode();
let divid = eBookConfig.scratchDiv;
window.edList[divid] = ACFactory.createActiveCode(
$(`#${divid}`)[0],
eBookConfig.acDefaultLanguage
);
if (eBookConfig.isLoggedIn) {
window.edList[divid].enableSaveLoad();
}
}
window.ACFactory.toggleScratchActivecode();
}
// Set the directory containing this script as the `path <https://webpack.js.org/guides/public-path/#on-the-fly>`_ for all webpacked scripts.
const script_src = document.currentScript.src;
__webpack_public_path__ = script_src.substring(
0,
script_src.lastIndexOf("/") + 1
);
// Manual exports
// ==============
// Webpack's ``output.library`` setting doesn't seem to work with the split chunks plugin; do all exports manually through the ``window`` object instead.
const rc = {};
rc.runestone_import = runestone_import;
rc.runestone_auto_import = runestone_auto_import;
rc.getSwitch = getSwitch;
rc.switchTheme = switchTheme;
rc.popupScratchAC = popupScratchAC;
window.runestoneComponents = rc;