/
githubmirror
/
angular-cli
Обзор
Документация
Войти
/
githubmirror
/
angular-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/schematics/angular/web-worker/index.ts
131 строка
4 KB
Charles Lyding
refactor(@schematics/angular): update type usage to support isolated declarations
12 дек 2025, 22:37
12 дек 2025, 22:37
e4eee62
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import { Rule, RuleFactory, SchematicContext, SchematicsException, Tree, apply, applyTemplates, chain, mergeWith, move, noop, strings, url, } from '@angular-devkit/schematics'; import { join } from 'node:path/posix'; import { parseName } from '../utility/parse-name'; import { relativePathToWorkspaceRoot } from '../utility/paths'; import { createProjectSchematic } from '../utility/project'; import { buildDefaultPath, updateWorkspace } from '../utility/workspace'; import { Schema as WebWorkerOptions } from './schema'; function addSnippet(options: WebWorkerOptions): Rule { return (host: Tree, context: SchematicContext) => { context.logger.debug('Updating appmodule'); if (options.path === undefined) { return; } const fileRegExp = new RegExp(`^${options.name}.*\\.ts`); const siblingModules = host .getDir(options.path) .subfiles // Find all files that start with the same name, are ts files, // and aren't spec or module files. .filter((f) => fileRegExp.test(f) && !/(module|spec|config|routes)\.ts$/.test(f)) // Sort alphabetically for consistency. .sort(); if (siblingModules.length === 0) { // No module to add in. return; } const siblingModulePath = `${options.path}/${siblingModules[0]}`; const logMessage = 'console.log(`page got message: ${data}`);'; const workerCreationSnippet = ` if (typeof Worker !== 'undefined') { // Create a new const worker = new Worker(new URL('./${options.name}.worker', import.meta.url)); worker.onmessage = ({ data }) => { ${logMessage} }; worker.postMessage('hello'); } else { // Web Workers are not supported in this environment. // You should add a fallback so that your program still executes correctly. } `; // Append the worker creation snippet. const originalContent = host.readText(siblingModulePath); host.overwrite(siblingModulePath, originalContent + '\n' + workerCreationSnippet); return host; }; } const webWorkerSchematic: RuleFactory<WebWorkerOptions> = createProjectSchematic( (options, { project }) => { const projectType = project.extensions['projectType']; if (projectType !== 'application') { throw new SchematicsException(`Web Worker requires a project type of "application".`); } if (options.path === undefined) { options.path = buildDefaultPath(project); } const parsedPath = parseName(options.path, options.name); options.name = parsedPath.name; options.path = parsedPath.path; const templateSourceWorkerCode = apply(url('./files/worker'), [ applyTemplates({ ...options, ...strings }), move(parsedPath.path), ]); const root = project.root || ''; const templateSourceWorkerConfig = apply(url('./files/worker-tsconfig'), [ applyTemplates({ ...options, relativePathToWorkspaceRoot: relativePathToWorkspaceRoot(root), }), move(root), ]); return chain([ // Add project configuration. updateWorkspace((workspace) => { // eslint-disable-next-line @typescript-eslint/no-non-null-assertion const project = workspace.projects.get(options.project)!; const buildTarget = project.targets.get('build'); const testTarget = project.targets.get('test'); if (!buildTarget) { throw new Error(`Build target is not defined for this project.`); } const workerConfigPath = join(root, 'tsconfig.worker.json'); (buildTarget.options ??= {}).webWorkerTsConfig ??= workerConfigPath; if (testTarget) { (testTarget.options ??= {}).webWorkerTsConfig ??= workerConfigPath; } }), // Create the worker in a sibling module. options.snippet ? addSnippet(options) : noop(), // Add the worker. mergeWith(templateSourceWorkerCode), mergeWith(templateSourceWorkerConfig), ]); }, ); export default webWorkerSchematic;