diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /browser/components/storybook/mach_commands.py | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'browser/components/storybook/mach_commands.py')
-rw-r--r-- | browser/components/storybook/mach_commands.py | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/browser/components/storybook/mach_commands.py b/browser/components/storybook/mach_commands.py new file mode 100644 index 0000000000..b81794719e --- /dev/null +++ b/browser/components/storybook/mach_commands.py @@ -0,0 +1,85 @@ +# 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 mozpack.path as mozpath +from mach.decorators import Command, SubCommand + + +@Command( + "storybook", + category="misc", + description="Start the Storybook server. This will install npm dependencies, if necessary.", +) +def storybook_server(command_context): + ensure_env(command_context) + return run_npm(command_context, args=["run", "storybook"]) + + +@SubCommand( + "storybook", + "build", + description="Build the Storybook for export.", +) +def storybook_build(command_context): + ensure_env(command_context) + return run_npm(command_context, args=["run", "build-storybook"]) + + +@SubCommand( + "storybook", "launch", description="Launch the Storybook site in your local build." +) +def storybook_launch(command_context): + return run_mach( + command_context, + "run", + argv=["http://localhost:5703"], + setpref=["svg.context-properties.content.enabled=true"], + ) + + +def build_storybook_manifest(command_context): + print("Build ChromeMap backend") + run_mach(command_context, "build-backend", backend=["ChromeMap"]) + config_environment = command_context.config_environment + storybook_chrome_map_path = "browser/components/storybook/.storybook/chrome-map.js" + chrome_map_path = mozpath.join(config_environment.topobjdir, "chrome-map.json") + with open(chrome_map_path, "r") as chrome_map_f: + with open(storybook_chrome_map_path, "w") as storybook_chrome_map_f: + storybook_chrome_map_f.write("module.exports = ") + storybook_chrome_map_f.write(chrome_map_f.read()) + storybook_chrome_map_f.write(";") + + +def run_mach(command_context, cmd, **kwargs): + return command_context._mach_context.commands.dispatch( + cmd, command_context._mach_context, **kwargs + ) + + +def run_npm(command_context, args): + return run_mach( + command_context, "npm", args=[*args, "--prefix=browser/components/storybook"] + ) + + +def ensure_env(command_context): + ensure_npm_deps(command_context) + build_storybook_manifest(command_context) + + +def ensure_npm_deps(command_context): + if not check_npm_deps(command_context): + install_npm_deps(command_context) + else: + print("Dependencies up to date\n") + + +def check_npm_deps(command_context): + print("Checking installed npm dependencies") + return not run_npm(command_context, args=["ls"]) + + +def install_npm_deps(command_context): + print("Installing missing npm dependencies") + run_npm(command_context, args=["ci"]) |