blob: 49f3bc4c477c3f8fe978a8ed7e1ea722c27c7caa (
plain)
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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
import { DOMLocalization } from "@fluent/dom";
import { FluentBundle, FluentResource } from "@fluent/bundle";
// Base Fluent set up.
let storybookBundle = new FluentBundle("en-US");
let loadedResources = new Set();
function* generateBundles() {
yield* [storybookBundle];
}
document.l10n = new DOMLocalization([], generateBundles);
document.l10n.connectRoot(document.documentElement);
// Any fluent imports should go through MozXULElement.insertFTLIfNeeded.
window.MozXULElement = {
async insertFTLIfNeeded(name) {
if (loadedResources.has(name)) {
return;
}
// This should be browser, locales-preview or toolkit.
let [root, ...rest] = name.split("/");
let ftlContents;
// TODO(mstriemer): These seem like they could be combined but I don't want
// to fight with webpack anymore.
if (root == "toolkit") {
// eslint-disable-next-line no-unsanitized/method
let imported = await import(
/* webpackInclude: /.*[\/\\].*\.ftl$/ */
`toolkit/locales/en-US/${name}`
);
ftlContents = imported.default;
} else if (root == "browser") {
// eslint-disable-next-line no-unsanitized/method
let imported = await import(
/* webpackInclude: /.*[\/\\].*\.ftl$/ */
`browser/locales/en-US/${name}`
);
ftlContents = imported.default;
} else if (root == "locales-preview") {
// eslint-disable-next-line no-unsanitized/method
let imported = await import(
/* webpackInclude: /\.ftl$/ */
`browser/locales-preview/${rest}`
);
ftlContents = imported.default;
}
if (loadedResources.has(name)) {
// Seems possible we've attempted to load this twice before the first call
// resolves, so once the first load is complete we can abandon the others.
return;
}
let ftlResource = new FluentResource(ftlContents);
storybookBundle.addResource(ftlResource);
loadedResources.add(name);
document.l10n.translateRoots();
},
// For some reason Storybook doesn't watch the static folder. By creating a
// method with a dynamic import we can pull the desired files into the bundle.
async importCss(name) {
// eslint-disable-next-line no-unsanitized/method
let file = await import(
/* webpackInclude: /.*[\/\\].*\.css$/ */
`browser/themes/shared/${name}`
);
return file;
},
};
|