|
| 1 | +import { Rule, Tree, noop } from '@angular-devkit/schematics'; |
| 2 | + |
| 3 | +import { MfSchematicSchema } from './schema'; |
| 4 | + |
| 5 | +import * as path from 'path'; |
| 6 | + |
| 7 | +type NormalizedOptions = { |
| 8 | + polyfills: string; |
| 9 | + projectName: string; |
| 10 | + projectRoot: string; |
| 11 | + projectSourceRoot: string; |
| 12 | + manifestPath: string; |
| 13 | + projectConfig: any; |
| 14 | + main: string; |
| 15 | +}; |
| 16 | + |
| 17 | +export default function remove(options: MfSchematicSchema): Rule { |
| 18 | + return async function (tree /*, context*/) { |
| 19 | + const workspaceFileName = getWorkspaceFileName(tree); |
| 20 | + const workspace = JSON.parse(tree.read(workspaceFileName).toString('utf8')); |
| 21 | + |
| 22 | + const normalized = normalizeOptions(options, workspace); |
| 23 | + |
| 24 | + const { polyfills, projectRoot } = normalized; |
| 25 | + |
| 26 | + const bootstrapPath = path.join(projectRoot, 'src/bootstrap.ts'); |
| 27 | + const mainPath = path.join(projectRoot, 'src/main.ts'); |
| 28 | + |
| 29 | + makeMainSync(tree, bootstrapPath, mainPath); |
| 30 | + updatePolyfills(tree, polyfills); |
| 31 | + updateWorkspaceConfig(tree, normalized, workspace, workspaceFileName); |
| 32 | + }; |
| 33 | +} |
| 34 | + |
| 35 | +function makeMainSync(tree, bootstrapPath: string, mainPath: string) { |
| 36 | + if (tree.exists(bootstrapPath) && tree.exists(mainPath)) { |
| 37 | + tree.delete(mainPath); |
| 38 | + tree.rename(bootstrapPath, mainPath); |
| 39 | + } |
| 40 | +} |
| 41 | + |
| 42 | +function updateWorkspaceConfig( |
| 43 | + tree: Tree, |
| 44 | + options: NormalizedOptions, |
| 45 | + workspace: any, |
| 46 | + workspaceFileName: string |
| 47 | +) { |
| 48 | + const { projectConfig } = options; |
| 49 | + |
| 50 | + if (!projectConfig?.architect?.build || !projectConfig?.architect?.serve) { |
| 51 | + throw new Error( |
| 52 | + `The project doen't have a build or serve target in angular.json!` |
| 53 | + ); |
| 54 | + } |
| 55 | + |
| 56 | + if (projectConfig.architect.esbuild) { |
| 57 | + projectConfig.architect.build = projectConfig.architect.esbuild; |
| 58 | + delete projectConfig.architect.esbuild; |
| 59 | + } |
| 60 | + |
| 61 | + if (projectConfig.architect['serve-original']) { |
| 62 | + projectConfig.architect.serve = projectConfig.architect['serve-original']; |
| 63 | + delete projectConfig.architect['serve-original']; |
| 64 | + } |
| 65 | + |
| 66 | + if (projectConfig.architect.serve) { |
| 67 | + const conf = projectConfig.architect.serve.configurations; |
| 68 | + conf.production.browserTarget = conf.production.browserTarget.replace( |
| 69 | + ':esbuild:', |
| 70 | + ':build:' |
| 71 | + ); |
| 72 | + conf.development.browserTarget = conf.development.browserTarget.replace( |
| 73 | + ':esbuild:', |
| 74 | + ':build:' |
| 75 | + ); |
| 76 | + } |
| 77 | + |
| 78 | + tree.overwrite(workspaceFileName, JSON.stringify(workspace, null, '\t')); |
| 79 | +} |
| 80 | + |
| 81 | +function normalizeOptions( |
| 82 | + options: MfSchematicSchema, |
| 83 | + workspace: any |
| 84 | +): NormalizedOptions { |
| 85 | + if (!options.project) { |
| 86 | + options.project = workspace.defaultProject; |
| 87 | + } |
| 88 | + |
| 89 | + const projects = Object.keys(workspace.projects); |
| 90 | + |
| 91 | + if (!options.project && projects.length === 0) { |
| 92 | + throw new Error( |
| 93 | + `No default project found. Please specifiy a project name!` |
| 94 | + ); |
| 95 | + } |
| 96 | + |
| 97 | + if (!options.project) { |
| 98 | + console.log( |
| 99 | + 'Using first configured project as default project: ' + projects[0] |
| 100 | + ); |
| 101 | + options.project = projects[0]; |
| 102 | + } |
| 103 | + |
| 104 | + const projectName = options.project; |
| 105 | + const projectConfig = workspace.projects[projectName]; |
| 106 | + |
| 107 | + if (!projectConfig) { |
| 108 | + throw new Error(`Project ${projectName} not found!`); |
| 109 | + } |
| 110 | + |
| 111 | + const projectRoot: string = projectConfig.root?.replace(/\\/g, '/'); |
| 112 | + const projectSourceRoot: string = projectConfig.sourceRoot?.replace( |
| 113 | + /\\/g, |
| 114 | + '/' |
| 115 | + ); |
| 116 | + |
| 117 | + const manifestPath = path |
| 118 | + .join(projectRoot, 'src/assets/federation.manifest.json') |
| 119 | + .replace(/\\/g, '/'); |
| 120 | + |
| 121 | + const main = projectConfig.architect.build.options.main; |
| 122 | + |
| 123 | + if (!projectConfig.architect.build.options.polyfills) { |
| 124 | + projectConfig.architect.build.options.polyfills = []; |
| 125 | + } |
| 126 | + |
| 127 | + const polyfills = projectConfig.architect.build.options.polyfills; |
| 128 | + return { |
| 129 | + polyfills, |
| 130 | + projectName, |
| 131 | + projectRoot, |
| 132 | + projectSourceRoot, |
| 133 | + manifestPath, |
| 134 | + projectConfig, |
| 135 | + main, |
| 136 | + }; |
| 137 | +} |
| 138 | + |
| 139 | +function updatePolyfills(tree, polyfills: any) { |
| 140 | + if (typeof polyfills === 'string') { |
| 141 | + updatePolyfillsFile(tree, polyfills); |
| 142 | + } else { |
| 143 | + updatePolyfillsArray(tree, polyfills); |
| 144 | + } |
| 145 | +} |
| 146 | + |
| 147 | +function updatePolyfillsFile(tree, polyfills: any) { |
| 148 | + let polyfillsContent = tree.readText(polyfills); |
| 149 | + if (polyfillsContent.includes('es-module-shims')) { |
| 150 | + polyfillsContent = polyfillsContent.replace( |
| 151 | + `import 'es-module-shims';`, |
| 152 | + '' |
| 153 | + ); |
| 154 | + tree.overwrite(polyfills, polyfillsContent); |
| 155 | + } |
| 156 | +} |
| 157 | + |
| 158 | +function updatePolyfillsArray(tree, polyfills: any) { |
| 159 | + const polyfillsConfig = polyfills as string[]; |
| 160 | + |
| 161 | + const index = polyfillsConfig.findIndex((p) => p === 'es-module-shims'); |
| 162 | + if (index === -1) { |
| 163 | + return; |
| 164 | + } |
| 165 | + |
| 166 | + polyfillsConfig.splice(index, 1); |
| 167 | +} |
| 168 | + |
| 169 | +export function getWorkspaceFileName(tree: Tree): string { |
| 170 | + if (tree.exists('angular.json')) { |
| 171 | + return 'angular.json'; |
| 172 | + } |
| 173 | + if (tree.exists('workspace.json')) { |
| 174 | + return 'workspace.json'; |
| 175 | + } |
| 176 | + throw new Error( |
| 177 | + "angular.json or workspace.json expected! Did you call this in your project's root?" |
| 178 | + ); |
| 179 | +} |
0 commit comments