@slicemachine/init 2.6.3-dev-next-release.4 → 2.6.4-dev-upgrade-legacy.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/SliceMachineInitProcess.cjs +27 -8
- package/dist/SliceMachineInitProcess.cjs.map +1 -1
- package/dist/SliceMachineInitProcess.d.ts +1 -1
- package/dist/SliceMachineInitProcess.js +27 -8
- package/dist/SliceMachineInitProcess.js.map +1 -1
- package/dist/packages/init/package.json.cjs +4 -4
- package/dist/packages/init/package.json.js +4 -4
- package/package.json +4 -4
- package/src/SliceMachineInitProcess.ts +46 -8
|
@@ -120,7 +120,7 @@ ${chalk.bgGray(` ${chalk.bold.white("Slice Machine")} `)} ${chalk.dim("→")} In
|
|
|
120
120
|
if (!this.context.repository.exists) {
|
|
121
121
|
await this.createNewRepository();
|
|
122
122
|
}
|
|
123
|
-
await this.
|
|
123
|
+
await this.syncDataWithPrismic();
|
|
124
124
|
await this.initializeProject();
|
|
125
125
|
await this.initializePlugins();
|
|
126
126
|
} catch (error) {
|
|
@@ -222,6 +222,9 @@ ${chalk.bgGreen(` ${chalk.bold.white("Slice Machine")} `)} ${chalk.dim("→")} I
|
|
|
222
222
|
if (slices.length > 0 || ctLibrary.ids.length > 0 || documentsGlob !== void 0 && documentsGlob.documents.length > 0) {
|
|
223
223
|
return true;
|
|
224
224
|
}
|
|
225
|
+
if (ctLibrary.ids.length === 0) {
|
|
226
|
+
return true;
|
|
227
|
+
}
|
|
225
228
|
} catch (e) {
|
|
226
229
|
return true;
|
|
227
230
|
}
|
|
@@ -726,10 +729,10 @@ ${chalk.cyan("?")} Your Prismic repository name`.replace("\n", ""));
|
|
|
726
729
|
});
|
|
727
730
|
return { signature, documents, directoryPath: documentsDirectoryPath };
|
|
728
731
|
}
|
|
729
|
-
|
|
732
|
+
syncDataWithPrismic() {
|
|
730
733
|
return listr.listrRun([
|
|
731
734
|
{
|
|
732
|
-
title: "
|
|
735
|
+
title: "Syncing data with Prismic...",
|
|
733
736
|
task: (_, parentTask) => listr.listr([
|
|
734
737
|
{
|
|
735
738
|
title: "Pushing slices...",
|
|
@@ -802,11 +805,10 @@ ${chalk.cyan("?")} Your Prismic repository name`.replace("\n", ""));
|
|
|
802
805
|
}
|
|
803
806
|
},
|
|
804
807
|
task: async (_2, task) => {
|
|
805
|
-
assertExists.assertExists(this.context.repository, "Repository selection must be available through context to run `
|
|
808
|
+
assertExists.assertExists(this.context.repository, "Repository selection must be available through context to run `syncDataWithPrismic`");
|
|
806
809
|
try {
|
|
807
810
|
const documentsRead = await this.readDocuments();
|
|
808
811
|
if (documentsRead === void 0 || documentsRead.documents.length === 0) {
|
|
809
|
-
parentTask.title = "Pushed data to Prismic";
|
|
810
812
|
task.skip("No document to push");
|
|
811
813
|
return;
|
|
812
814
|
}
|
|
@@ -828,9 +830,7 @@ ${chalk.cyan("?")} Your Prismic repository name`.replace("\n", ""));
|
|
|
828
830
|
signature
|
|
829
831
|
});
|
|
830
832
|
task.title = "Pushed all documents";
|
|
831
|
-
parentTask.title = "Pushed data to Prismic";
|
|
832
833
|
} catch {
|
|
833
|
-
parentTask.title = "Pushed data to Prismic";
|
|
834
834
|
task.skip("No document to push");
|
|
835
835
|
return;
|
|
836
836
|
}
|
|
@@ -849,7 +849,26 @@ ${chalk.cyan("?")} Your Prismic repository name`.replace("\n", ""));
|
|
|
849
849
|
} catch {
|
|
850
850
|
}
|
|
851
851
|
task.title = "Cleaned up data push artifacts";
|
|
852
|
-
|
|
852
|
+
}
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
title: "Pulling existing types...",
|
|
856
|
+
task: async (_2, task) => {
|
|
857
|
+
const { ids, errors } = await this.manager.customTypes.readCustomTypeLibrary();
|
|
858
|
+
if (errors.length > 0) {
|
|
859
|
+
throw new Error(`Failed to read custom type libraries: ${errors.join(", ")}`);
|
|
860
|
+
}
|
|
861
|
+
if (ids && ids.length > 0) {
|
|
862
|
+
task.skip("Types already exists");
|
|
863
|
+
parentTask.title = "Synced data with Prismic";
|
|
864
|
+
return;
|
|
865
|
+
}
|
|
866
|
+
const remoteTypes = await this.manager.customTypes.fetchRemoteCustomTypes();
|
|
867
|
+
await Promise.all(remoteTypes.map(async (model) => {
|
|
868
|
+
await this.manager.customTypes.createCustomType({ model });
|
|
869
|
+
}));
|
|
870
|
+
task.title = "Pulled existing types";
|
|
871
|
+
parentTask.title = "Synced data with Prismic";
|
|
853
872
|
}
|
|
854
873
|
}
|
|
855
874
|
])
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SliceMachineInitProcess.cjs","sources":["../../src/SliceMachineInitProcess.ts"],"sourcesContent":["import * as fs from \"node:fs/promises\";\nimport * as path from \"node:path\";\n\nimport chalk from \"chalk\";\n\nimport { execaCommand, type ExecaChildProcess } from \"execa\";\n\nimport open from \"open\";\nimport logSymbols from \"log-symbols\";\nimport { globby } from \"globby\";\nimport { downloadTemplate } from \"giget\";\n\nimport {\n\tcreateSliceMachineManager,\n\tPrismicUserProfile,\n\tPrismicRepository,\n\tSliceMachineManager,\n\tPackageManager,\n\tStarterId,\n} from \"@slicemachine/manager\";\n\nimport pkg from \"../package.json\";\nimport { detectFramework, Framework } from \"./lib/framework\";\nimport { getRunScriptCommand } from \"./lib/getRunScriptCommand\";\nimport { getExecuteCommand } from \"./lib/getExecuteCommand\";\nimport {\n\tgetRandomRepositoryDomain,\n\tformatRepositoryDomain,\n\tvalidateRepositoryDomain,\n\tvalidateRepositoryDomainAndAvailability,\n\tgetErrorMessageForRepositoryDomainValidation,\n} from \"./lib/repositoryDomain\";\nimport { listr, listrRun } from \"./lib/listr\";\nimport { prompt } from \"./lib/prompt\";\nimport { assertExists } from \"./lib/assertExists\";\nimport {\n\tGIGET_ORGANIZATION,\n\tGIGET_PROVIDER,\n\tSLICE_MACHINE_INIT_USER_AGENT,\n\tSTART_SCRIPT_KEY,\n\tSTART_SCRIPT_VALUE,\n} from \"./constants\";\nimport { detectStarterId } from \"./lib/starters\";\n\nexport type SliceMachineInitProcessOptions = {\n\trepository?: string;\n\tstarter?: string;\n\tdirectoryName?: string;\n\tpush?: boolean;\n\tpushSlices?: boolean;\n\tpushCustomTypes?: boolean;\n\tpushDocuments?: boolean;\n\tstartSlicemachine?: boolean;\n\tcwd?: string;\n} & Record<string, unknown>;\n\nconst DEFAULT_OPTIONS: SliceMachineInitProcessOptions = {\n\tpush: true,\n\tpushSlices: true,\n\tpushCustomTypes: true,\n\tpushDocuments: true,\n\tstartSlicemachine: true,\n};\n\nexport const createSliceMachineInitProcess = (\n\toptions?: SliceMachineInitProcessOptions,\n): SliceMachineInitProcess => {\n\treturn new SliceMachineInitProcess(options);\n};\n\ntype SliceMachineInitProcessContext = {\n\tframework?: Framework;\n\tpackageManager?: PackageManager;\n\tinstallProcess?: ExecaChildProcess;\n\tuserProfile?: PrismicUserProfile;\n\tuserRepositories?: PrismicRepository[];\n\trepository?: {\n\t\tdomain: string;\n\t\texists: boolean;\n\t};\n\tprojectInitialization?: {\n\t\tpatchedScript?: boolean;\n\t};\n\tstarterId?: StarterId;\n};\n\nexport class SliceMachineInitProcess {\n\tprotected options: SliceMachineInitProcessOptions;\n\tprotected manager: SliceMachineManager;\n\n\tprotected context: SliceMachineInitProcessContext;\n\n\tconstructor(options?: SliceMachineInitProcessOptions) {\n\t\tthis.options = { ...DEFAULT_OPTIONS, ...options };\n\t\tthis.manager = createSliceMachineManager({ cwd: options?.cwd });\n\n\t\tthis.context = {};\n\t}\n\n\tasync run(): Promise<void> {\n\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t// eslint-disable-next-line no-console\n\t\tconsole.log(\n\t\t\t`\\n${chalk.bgGray(` ${chalk.bold.white(\"Slice Machine\")} `)} ${chalk.dim(\n\t\t\t\t\"→\",\n\t\t\t)} Initializing\\n`,\n\t\t);\n\n\t\ttry {\n\t\t\tif (this.options.starter) {\n\t\t\t\tawait this.copyStarter();\n\t\t\t} else if (this.options.directoryName) {\n\t\t\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t\t\t// eslint-disable-next-line no-console\n\t\t\t\tconsole.log(\n\t\t\t\t\t`${logSymbols.warning} --directory-name has no effect because --starter is not specified\\n`,\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tif (await this.manager.telemetry.checkIsTelemetryEnabled()) {\n\t\t\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t\t\t// eslint-disable-next-line no-console\n\t\t\t\tconsole.log(\n\t\t\t\t\t`${\n\t\t\t\t\t\tlogSymbols.info\n\t\t\t\t\t} We collect telemetry data to improve user experience.\\n Learn more: ${chalk.cyan(\n\t\t\t\t\t\t\"https://prismic.dev/slice-machine/telemetry\",\n\t\t\t\t\t)}\\n`,\n\t\t\t\t);\n\t\t\t}\n\t\t\tawait this.manager.telemetry.initTelemetry({\n\t\t\t\tappName: pkg.name,\n\t\t\t\tappVersion: pkg.version,\n\t\t\t});\n\t\t\tawait this.manager.telemetry.track({\n\t\t\t\tevent: \"command:init:start\",\n\t\t\t\trepository: this.options.repository,\n\t\t\t});\n\n\t\t\tawait this.detectEnvironment();\n\n\t\t\tassertExists(\n\t\t\t\tthis.context.framework,\n\t\t\t\t\"Project framework must be available through context to proceed\",\n\t\t\t);\n\n\t\t\tawait this.beginCoreDependenciesInstallation();\n\n\t\t\tif (this.options.repository) {\n\t\t\t\tawait this.useRepositoryFlag();\n\t\t\t} else {\n\t\t\t\tawait this.loginAndFetchUserData();\n\t\t\t\tawait this.selectRepository();\n\t\t\t}\n\n\t\t\tassertExists(\n\t\t\t\tthis.context.repository,\n\t\t\t\t\"Repository selection must be available through context to proceed\",\n\t\t\t);\n\n\t\t\tawait this.finishCoreDependenciesInstallation();\n\t\t\tawait this.upsertSliceMachineConfigurationAndStartPluginRunner();\n\n\t\t\tconst isLoginRequired = await this.checkIsLoginRequired();\n\t\t\tif (isLoginRequired) {\n\t\t\t\tawait this.loginAndFetchUserData();\n\t\t\t\tif (this.context.repository.exists) {\n\t\t\t\t\tthis.validateWriteAccess();\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (!this.context.repository.exists) {\n\t\t\t\tawait this.createNewRepository();\n\t\t\t}\n\n\t\t\tawait this.pushDataToPrismic();\n\t\t\tawait this.initializeProject();\n\t\t\tawait this.initializePlugins();\n\t\t} catch (error) {\n\t\t\tawait this.trackError(error);\n\n\t\t\tthrow error;\n\t\t}\n\n\t\tawait this.manager.telemetry.track({\n\t\t\tevent: \"command:init:end\",\n\t\t\tframework: this.context.framework.sliceMachineTelemetryID,\n\t\t\trepository: this.context.repository.domain,\n\t\t\tsuccess: true,\n\t\t});\n\n\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t// eslint-disable-next-line no-console\n\t\tconsole.log(\n\t\t\t`\\n${chalk.bgGreen(` ${chalk.bold.white(\"Slice Machine\")} `)} ${chalk.dim(\n\t\t\t\t\"→\",\n\t\t\t)} Initialization successful!`,\n\t\t);\n\n\t\ttry {\n\t\t\tconst runSmCommand = this.context.projectInitialization?.patchedScript\n\t\t\t\t? await getRunScriptCommand({\n\t\t\t\t\t\tagent: this.context.packageManager || \"npm\",\n\t\t\t\t\t\tscript: \"slicemachine\",\n\t\t\t\t })\n\t\t\t\t: await getExecuteCommand({\n\t\t\t\t\t\tagent: this.context.packageManager || \"npm\",\n\t\t\t\t\t\tscript: \"start-slicemachine\",\n\t\t\t\t });\n\n\t\t\tconst runProjectCommand = await getRunScriptCommand({\n\t\t\t\tagent: this.context.packageManager || \"npm\",\n\t\t\t\tscript: \"dev\",\n\t\t\t});\n\n\t\t\tconst apiEndpoints = this.manager.getAPIEndpoints();\n\t\t\tconst wroomHost = new URL(apiEndpoints.PrismicWroom).host;\n\n\t\t\tconst dashboardURL = new URL(\n\t\t\t\t`https://${this.context.repository.domain}.${wroomHost}`,\n\t\t\t)\n\t\t\t\t.toString()\n\t\t\t\t.replace(/\\/$/, \"\");\n\t\t\tconst apiURL = new URL(\n\t\t\t\t\"./api/v2\",\n\t\t\t\t`https://${this.context.repository.domain}.cdn.${wroomHost}`,\n\t\t\t).toString();\n\n\t\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t\t// eslint-disable-next-line no-console\n\t\t\tconsole.log(`\n YOUR REPOSITORY\n Page Builder ${chalk.cyan(dashboardURL)}\n API ${chalk.cyan(apiURL)}\n\n RESOURCES\n Documentation ${chalk.cyan(\n\t\t\tthis.context.framework.prismicDocumentation,\n\t\t)}\n Getting help ${chalk.cyan(\"https://community.prismic.io\")}\n\n GETTING STARTED\n Run Slice Machine ${chalk.cyan(runSmCommand)}\n Run your project ${chalk.cyan(runProjectCommand)}\n\t`);\n\n\t\t\tif (this.options.starter && this.options.repository) {\n\t\t\t\tconst { openDashboard } = await prompt<boolean, \"openDashboard\">({\n\t\t\t\t\ttype: \"confirm\",\n\t\t\t\t\tname: \"openDashboard\",\n\t\t\t\t\tmessage: \"Would you like to open your repository?\",\n\t\t\t\t\tinitial: true,\n\t\t\t\t});\n\n\t\t\t\tif (openDashboard) {\n\t\t\t\t\topen(dashboardURL);\n\t\t\t\t}\n\t\t\t} else if (this.options.startSlicemachine) {\n\t\t\t\tconst pkgJSONPath = path.join(this.manager.cwd, \"package.json\");\n\t\t\t\tconst pkg = JSON.parse(await fs.readFile(pkgJSONPath, \"utf-8\"));\n\t\t\t\tconst scripts = pkg.scripts || {};\n\n\t\t\t\tconst finalSmCommand = (() => {\n\t\t\t\t\tif (\n\t\t\t\t\t\tscripts[\"dev\"] &&\n\t\t\t\t\t\ttypeof scripts[\"dev\"] === \"string\" &&\n\t\t\t\t\t\tscripts[\"dev\"].includes(\":slicemachine\")\n\t\t\t\t\t) {\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\tcommand: runProjectCommand,\n\t\t\t\t\t\t\tmessage: `Would you like to run your project and Slice Machine concurrently (${runProjectCommand})?`,\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\n\t\t\t\t\treturn {\n\t\t\t\t\t\tcommand: runSmCommand,\n\t\t\t\t\t\tmessage: `Would you like to run Slice Machine (${runSmCommand})?`,\n\t\t\t\t\t};\n\t\t\t\t})();\n\t\t\t\tconst { startSlicemachine } = await prompt<\n\t\t\t\t\tboolean,\n\t\t\t\t\t\"startSlicemachine\"\n\t\t\t\t>({\n\t\t\t\t\ttype: \"confirm\",\n\t\t\t\t\tname: \"startSlicemachine\",\n\t\t\t\t\tmessage: finalSmCommand.message,\n\t\t\t\t\tinitial: true,\n\t\t\t\t});\n\n\t\t\t\tif (startSlicemachine) {\n\t\t\t\t\tconst commandReturnValue = await execaCommand(\n\t\t\t\t\t\tfinalSmCommand.command,\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tenv: { FORCE_COLOR: \"true\" },\n\t\t\t\t\t\t},\n\t\t\t\t\t).pipeStdout?.(process.stdout);\n\t\t\t\t\tif (commandReturnValue !== undefined) {\n\t\t\t\t\t\t// eslint-disable-next-line no-console\n\t\t\t\t\t\tconsole.log(commandReturnValue.stdout);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t} catch {\n\t\t\t// Noop, it's only the final convenience messsage\n\t\t}\n\t}\n\n\tprotected async checkIsLoginRequired(): Promise<boolean> {\n\t\ttry {\n\t\t\tassertExists(this.context.repository, \"\");\n\t\t\tif (this.context.repository.exists === false) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tconst [slices, ctLibrary, documentsGlob] = await Promise.all([\n\t\t\t\tthis.readAllSlices(),\n\t\t\t\tthis.manager.customTypes.readCustomTypeLibrary(),\n\t\t\t\tthis.readDocuments(),\n\t\t\t]);\n\t\t\tif (\n\t\t\t\tslices.length > 0 ||\n\t\t\t\tctLibrary.ids.length > 0 ||\n\t\t\t\t(documentsGlob !== undefined && documentsGlob.documents.length > 0)\n\t\t\t) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t} catch (e) {\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t}\n\n\tprotected trackError = (error: unknown): Promise<void> => {\n\t\t// Transform error to string and prevent hitting Segment 500kb API limit or sending ridiculously long trace\n\t\tconst safeError = (\n\t\t\terror instanceof Error ? error.message : `${error}`\n\t\t).slice(0, 512);\n\n\t\treturn this.manager.telemetry.track({\n\t\t\tevent: \"command:init:end\",\n\t\t\tframework: this.context.framework?.sliceMachineTelemetryID ?? \"unknown\",\n\t\t\trepository: this.context.repository?.domain || \"\",\n\t\t\tsuccess: false,\n\t\t\terror: safeError,\n\t\t});\n\t};\n\n\tprotected async copyStarter(): Promise<void> {\n\t\tconst dir = await this.getStarterDirectoryName();\n\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Copying starter...\\n\",\n\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\tconst starter = this.options.starter;\n\n\t\t\t\t\tawait downloadTemplate(\n\t\t\t\t\t\t`${GIGET_PROVIDER}:${GIGET_ORGANIZATION}/${starter}#HEAD`,\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tdir,\n\t\t\t\t\t\t},\n\t\t\t\t\t);\n\n\t\t\t\t\tprocess.chdir(dir);\n\t\t\t\t\tthis.manager.cwd = process.cwd();\n\n\t\t\t\t\ttask.title = \"Starter copied\\n\";\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected async getStarterDirectoryName(): Promise<string> {\n\t\tlet directoryName: string;\n\t\tconst folderNames = await fs.readdir(process.cwd());\n\n\t\tif (\n\t\t\tthis.options.directoryName &&\n\t\t\t!folderNames.includes(this.options.directoryName)\n\t\t) {\n\t\t\t// Use provided directory\n\t\t\tdirectoryName = this.options.directoryName;\n\t\t} else if (\n\t\t\tthis.options.repository &&\n\t\t\t!folderNames.includes(this.options.repository)\n\t\t) {\n\t\t\t// Use repository name\n\t\t\tdirectoryName = this.options.repository;\n\t\t} else {\n\t\t\t// Use random name\n\t\t\tlet suggestedName: string;\n\t\t\tdo {\n\t\t\t\tsuggestedName = getRandomRepositoryDomain();\n\t\t\t} while (folderNames.includes(suggestedName));\n\n\t\t\tconst { selectedDirectory } = await prompt<string, \"selectedDirectory\">({\n\t\t\t\ttype: \"text\",\n\t\t\t\tname: \"selectedDirectory\",\n\t\t\t\tmessage: \"Your starter directory name\",\n\t\t\t\tinitial: suggestedName,\n\t\t\t\tvalidate: async (rawDirectory: string) => {\n\t\t\t\t\tif (folderNames.includes(rawDirectory)) {\n\t\t\t\t\t\treturn \"Directory name already exists\";\n\t\t\t\t\t}\n\n\t\t\t\t\treturn true;\n\t\t\t\t},\n\t\t\t});\n\n\t\t\tdirectoryName = selectedDirectory;\n\t\t}\n\n\t\treturn directoryName;\n\t}\n\n\tprotected detectEnvironment(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Detecting environment...\",\n\t\t\t\ttask: (_, parentTask) =>\n\t\t\t\t\tlistr([\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Detecting framework...\",\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tthis.context.framework = await detectFramework(\n\t\t\t\t\t\t\t\t\tthis.manager.cwd,\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\ttask.title = `Detected framework ${chalk.cyan(\n\t\t\t\t\t\t\t\t\tthis.context.framework.name,\n\t\t\t\t\t\t\t\t)}`;\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Detecting package manager...\",\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tthis.context.packageManager =\n\t\t\t\t\t\t\t\t\tawait this.manager.project.detectPackageManager({\n\t\t\t\t\t\t\t\t\t\troot: this.manager.cwd,\n\t\t\t\t\t\t\t\t\t});\n\n\t\t\t\t\t\t\t\ttask.title = `Detected package manager ${chalk.cyan(\n\t\t\t\t\t\t\t\t\tthis.context.packageManager,\n\t\t\t\t\t\t\t\t)}`;\n\n\t\t\t\t\t\t\t\tassertExists(\n\t\t\t\t\t\t\t\t\tthis.context.framework,\n\t\t\t\t\t\t\t\t\t\"Project framework must be available through context to proceed\",\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\tparentTask.title = `Detected framework ${chalk.cyan(\n\t\t\t\t\t\t\t\t\tthis.context.framework.name,\n\t\t\t\t\t\t\t\t)} and package manager ${chalk.cyan(\n\t\t\t\t\t\t\t\t\tthis.context.packageManager,\n\t\t\t\t\t\t\t\t)}`;\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Detecting starter...\",\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tthis.context.starterId = await detectStarterId(\n\t\t\t\t\t\t\t\t\tthis.manager.cwd,\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\tif (this.context.starterId) {\n\t\t\t\t\t\t\t\t\ttask.title = `Detected starter ${chalk.cyan(\n\t\t\t\t\t\t\t\t\t\tthis.context.starterId,\n\t\t\t\t\t\t\t\t\t)}`;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\ttask.title = \"No starter detected\";\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t]),\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected beginCoreDependenciesInstallation(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Beginning core dependencies installation...\",\n\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.packageManager,\n\t\t\t\t\t\t\"Project package manager must be available through context to run `beginCoreDependenciesInstallation`\",\n\t\t\t\t\t);\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.framework,\n\t\t\t\t\t\t\"Project framework must be available through context to run `beginCoreDependenciesInstallation`\",\n\t\t\t\t\t);\n\n\t\t\t\t\tconst { execaProcess } =\n\t\t\t\t\t\tawait this.manager.project.installDependencies({\n\t\t\t\t\t\t\tpackageManager: this.context.packageManager,\n\t\t\t\t\t\t\tdependencies: this.context.framework.devDependencies,\n\t\t\t\t\t\t\tdev: true,\n\t\t\t\t\t\t\t// Picked up later\n\t\t\t\t\t\t\tlog: () => {\n\t\t\t\t\t\t\t\t/* ... */\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t});\n\n\t\t\t\t\t// Fail hard if process fails\n\t\t\t\t\texecaProcess.catch(async (error) => {\n\t\t\t\t\t\tconst [_, ...argv1n] = process.argv;\n\t\t\t\t\t\t// Command the user used\n\t\t\t\t\t\tlet tryAgainCommand = [process.argv0, ...argv1n].join(\" \");\n\n\t\t\t\t\t\t// If the `repository` option wasn't used AND the repository was selected/created\n\t\t\t\t\t\tif (!this.options.repository && this.context.repository) {\n\t\t\t\t\t\t\ttryAgainCommand = `${tryAgainCommand} --repository=${this.context.repository.domain}`;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tawait this.trackError(error.shortMessage);\n\t\t\t\t\t\tconsole.error(\n\t\t\t\t\t\t\t`\\n\\n${error.shortMessage}\\n${error.stderr}\\n\\n${\n\t\t\t\t\t\t\t\tlogSymbols.error\n\t\t\t\t\t\t\t} Dependency installation failed, try again with:\\n\\n ${chalk.gray(\n\t\t\t\t\t\t\t\t\"$\",\n\t\t\t\t\t\t\t)} ${chalk.cyan(tryAgainCommand)}`,\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\tprocess.exit(1);\n\t\t\t\t\t});\n\n\t\t\t\t\tthis.context.installProcess = execaProcess;\n\n\t\t\t\t\ttask.title = `Began core dependencies installation with ${chalk.cyan(\n\t\t\t\t\t\tthis.context.packageManager,\n\t\t\t\t\t)} ... (running in background)`;\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected async fetchUserProfile(): Promise<void> {\n\t\tthis.context.userProfile = await this.manager.user.getProfile();\n\n\t\tawait this.manager.telemetry.identify({\n\t\t\tuserID: this.context.userProfile.shortId,\n\t\t\tintercomHash: this.context.userProfile.intercomHash,\n\t\t});\n\t\tawait this.manager.telemetry.track({\n\t\t\tevent: \"command:init:identify\",\n\t\t\trepository: this.options.repository,\n\t\t});\n\t}\n\n\tprotected async fetchUserRepositories(): Promise<void> {\n\t\tthis.context.userRepositories =\n\t\t\tawait this.manager.prismicRepository.readAll();\n\t}\n\n\tprotected validateWriteAccess(): void {\n\t\tassertExists(\n\t\t\tthis.context.repository,\n\t\t\t\"Repository selection must be available through context to proceed\",\n\t\t);\n\t\tassertExists(\n\t\t\tthis.context.userRepositories,\n\t\t\t\"User repositories must be available through context to validate write access\",\n\t\t);\n\t\tconst { domain } = this.context.repository;\n\t\tconst maybeRepository = this.context.userRepositories.find(\n\t\t\t(repository) => repository.domain === domain,\n\t\t);\n\n\t\tif (maybeRepository) {\n\t\t\tif (!this.manager.prismicRepository.hasWriteAccess(maybeRepository)) {\n\t\t\t\tthrow new Error(\n\t\t\t\t\t`Cannot run init command with repository ${chalk.cyan(\n\t\t\t\t\t\tmaybeRepository.domain,\n\t\t\t\t\t)}: you are not a developer or admin of this repository`,\n\t\t\t\t);\n\t\t\t}\n\t\t} else {\n\t\t\tthrow new Error(\n\t\t\t\t`Cannot validate write access for repository ${chalk.cyan(\n\t\t\t\t\tdomain,\n\t\t\t\t)}: you are not part of this repository`,\n\t\t\t);\n\t\t}\n\t}\n\n\tprotected loginAndFetchUserData(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Logging in to Prismic...\",\n\t\t\t\ttask: async (_, parentTask) => {\n\t\t\t\t\tparentTask.output = \"Validating session...\";\n\t\t\t\t\tconst isLoggedIn = await this.manager.user.checkIsLoggedIn();\n\n\t\t\t\t\tif (!isLoggedIn) {\n\t\t\t\t\t\tparentTask.output = \"Press any key to open the browser to login...\";\n\t\t\t\t\t\tawait new Promise((resolve) => {\n\t\t\t\t\t\t\tconst initialRawMode = !!process.stdin.isRaw;\n\t\t\t\t\t\t\tprocess.stdin.setRawMode?.(true);\n\t\t\t\t\t\t\tprocess.stdin.resume();\n\t\t\t\t\t\t\tprocess.stdin.once(\"data\", (data: Buffer) => {\n\t\t\t\t\t\t\t\tprocess.stdin.setRawMode?.(initialRawMode);\n\t\t\t\t\t\t\t\tprocess.stdin.pause();\n\t\t\t\t\t\t\t\tresolve(data.toString(\"utf-8\"));\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\tparentTask.output = \"Browser opened, waiting for you to login...\";\n\t\t\t\t\t\tconst { port, url } = await this.manager.user.getLoginSessionInfo();\n\t\t\t\t\t\tawait this.manager.user.nodeLoginSession({\n\t\t\t\t\t\t\tport,\n\t\t\t\t\t\t\tonListenCallback() {\n\t\t\t\t\t\t\t\topen(url);\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\n\t\t\t\t\tparentTask.output = \"\";\n\t\t\t\t\tparentTask.title = `Logged in`;\n\n\t\t\t\t\treturn listr(\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\ttitle: \"Fetching user profile...\",\n\t\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\t\tawait this.fetchUserProfile();\n\t\t\t\t\t\t\t\t\tparentTask.title = `Logged in as ${chalk.cyan(\n\t\t\t\t\t\t\t\t\t\tthis.context.userProfile?.email,\n\t\t\t\t\t\t\t\t\t)}`;\n\t\t\t\t\t\t\t\t\ttask.title = \"Fetched user profile\";\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\ttitle: \"Fetching user repositories...\",\n\t\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\t\tawait this.fetchUserRepositories();\n\t\t\t\t\t\t\t\t\ttask.title = \"Fetched user repositories\";\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t],\n\t\t\t\t\t\t{ concurrent: true },\n\t\t\t\t\t);\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected useRepositoryFlag(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: `Flag ${chalk.cyan(\"repository\")} used, validating input...`,\n\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.options.repository,\n\t\t\t\t\t\t\"Flag `repository` must be set to run `useRepositoryFlag`\",\n\t\t\t\t\t);\n\t\t\t\t\tconst domain = formatRepositoryDomain(this.options.repository);\n\t\t\t\t\tconst validation = await validateRepositoryDomainAndAvailability({\n\t\t\t\t\t\tdomain,\n\t\t\t\t\t\texistsFn: (domain) =>\n\t\t\t\t\t\t\tthis.manager.prismicRepository.checkExists({ domain }),\n\t\t\t\t\t});\n\n\t\t\t\t\tif (validation.LessThan4 || validation.MoreThan30) {\n\t\t\t\t\t\tconst errorMessage = getErrorMessageForRepositoryDomainValidation({\n\t\t\t\t\t\t\tvalidation: {\n\t\t\t\t\t\t\t\t...validation,\n\t\t\t\t\t\t\t\t// We don't want to throw if repo already exists.\n\t\t\t\t\t\t\t\t// User most probably just created it via their dashboard.\n\t\t\t\t\t\t\t\tAlreadyExists: false,\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tdisplayDomain: chalk.cyan(domain),\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\tif (errorMessage) {\n\t\t\t\t\t\t\tthrow new Error(errorMessage);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\ttask.title = `Selected repository ${chalk.cyan(\n\t\t\t\t\t\tdomain,\n\t\t\t\t\t)} (flag ${chalk.cyan(\"repository\")} used)`;\n\n\t\t\t\t\tthis.context.repository = {\n\t\t\t\t\t\tdomain,\n\t\t\t\t\t\texists: validation.AlreadyExists ?? false,\n\t\t\t\t\t};\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected async selectRepository(): Promise<void> {\n\t\tassertExists(\n\t\t\tthis.context.userRepositories,\n\t\t\t\"User repositories must be available through context to run `selectRepository`\",\n\t\t);\n\n\t\tif (this.context.userRepositories.length) {\n\t\t\tawait this.trySelectExistingRepository();\n\t\t}\n\n\t\tif (!this.context.repository) {\n\t\t\tawait this.selectNewRepository();\n\t\t}\n\n\t\tassertExists(\n\t\t\tthis.context.repository,\n\t\t\t\"Repository selection must be available through context to proceed\",\n\t\t);\n\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t// eslint-disable-next-line no-console\n\t\tconsole.log(\n\t\t\t`${logSymbols.success} Selected repository ${chalk.cyan(\n\t\t\t\tthis.context.repository.domain,\n\t\t\t)}`,\n\t\t);\n\t}\n\n\tprotected async trySelectExistingRepository(): Promise<void> {\n\t\tassertExists(\n\t\t\tthis.context.userRepositories,\n\t\t\t\"User repositories must be available through context to run `trySelectExistingRepository`\",\n\t\t);\n\n\t\tconst { maybeDomain } = await prompt<string, \"maybeDomain\">({\n\t\t\ttype: \"select\",\n\t\t\tname: \"maybeDomain\",\n\t\t\tmessage: \"Pick a repository to connect to or choose to create a new one\",\n\t\t\twarn: \"You are not a developer or admin of this repository\",\n\t\t\tchoices: [\n\t\t\t\t{\n\t\t\t\t\ttitle: \"CREATE NEW\",\n\t\t\t\t\tdescription: \"Create a new Prismic repository\\n\",\n\t\t\t\t\tvalue: \"\",\n\t\t\t\t},\n\t\t\t\t...this.context.userRepositories\n\t\t\t\t\t.map((repository) => {\n\t\t\t\t\t\tconst hasWriteAccess =\n\t\t\t\t\t\t\tthis.manager.prismicRepository.hasWriteAccess(repository);\n\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\ttitle: `${repository.domain}${\n\t\t\t\t\t\t\t\thasWriteAccess ? \"\" : \" (Unauthorized)\"\n\t\t\t\t\t\t\t}`,\n\t\t\t\t\t\t\tdescription: `Connect to ${chalk.cyan(repository.domain)}`,\n\t\t\t\t\t\t\tvalue: repository.domain,\n\t\t\t\t\t\t\tdisabled: !hasWriteAccess,\n\t\t\t\t\t\t};\n\t\t\t\t\t})\n\t\t\t\t\t.sort((a, b) => (a.value > b.value ? 1 : -1)),\n\t\t\t],\n\t\t});\n\n\t\tif (maybeDomain) {\n\t\t\tthis.context.repository = {\n\t\t\t\tdomain: maybeDomain,\n\t\t\t\texists: true,\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected async selectNewRepository(): Promise<void> {\n\t\tlet suggestedName = \"\";\n\n\t\t// TODO: Improve concurrency\n\t\tconst trySuggestName = async (name: string): Promise<string | void> => {\n\t\t\tif (name) {\n\t\t\t\tconst formattedName = formatRepositoryDomain(name);\n\n\t\t\t\tif (\n\t\t\t\t\t!validateRepositoryDomain({ domain: formattedName }).hasErrors &&\n\t\t\t\t\t!(await this.manager.prismicRepository.checkExists({\n\t\t\t\t\t\tdomain: formattedName,\n\t\t\t\t\t}))\n\t\t\t\t) {\n\t\t\t\t\treturn formattedName;\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\n\t\t// 1. Try to suggest name after directory name\n\t\tconst maybeSuggestion = await trySuggestName(\n\t\t\tpath.basename(this.manager.cwd),\n\t\t);\n\t\tif (maybeSuggestion) {\n\t\t\tsuggestedName = maybeSuggestion;\n\t\t}\n\n\t\t// 2. Try to suggest name after package name\n\t\tif (!suggestedName) {\n\t\t\ttry {\n\t\t\t\tconst pkgJSONPath = path.join(this.manager.cwd, \"package.json\");\n\t\t\t\tconst pkg = JSON.parse(await fs.readFile(pkgJSONPath, \"utf-8\"));\n\n\t\t\t\tconst maybeSuggestion = await trySuggestName(pkg.name);\n\t\t\t\tif (maybeSuggestion) {\n\t\t\t\t\tsuggestedName = maybeSuggestion;\n\t\t\t\t}\n\t\t\t} catch {\n\t\t\t\t// Noop\n\t\t\t}\n\t\t}\n\n\t\t// 3. Use random name\n\t\tif (!suggestedName) {\n\t\t\tdo {\n\t\t\t\tsuggestedName = getRandomRepositoryDomain();\n\t\t\t} while (\n\t\t\t\tawait this.manager.prismicRepository.checkExists({\n\t\t\t\t\tdomain: suggestedName,\n\t\t\t\t})\n\t\t\t);\n\t\t}\n\n\t\tconst { domain } = await prompt<string, \"domain\">({\n\t\t\ttype: \"text\",\n\t\t\tname: \"domain\",\n\t\t\t// Overriden by the `onRender` function, just used as a fallback\n\t\t\tmessage: \"Choose a name for your Prismic repository\",\n\t\t\tinitial: suggestedName,\n\t\t\tonRender() {\n\t\t\t\tconst rawDomain = this.value || this.initial || \"\";\n\t\t\t\tconst domain = formatRepositoryDomain(rawDomain);\n\t\t\t\tconst validation = validateRepositoryDomain({ domain });\n\n\t\t\t\tconst minRule = validation.LessThan4\n\t\t\t\t\t? chalk.red(\n\t\t\t\t\t\t\t`1. Name must be ${chalk.bold(\"4 characters long or more\")}`,\n\t\t\t\t\t )\n\t\t\t\t\t: `1. Name must be ${chalk.cyan(\"4 characters long or more\")}`;\n\n\t\t\t\tconst maxRule = validation.MoreThan30\n\t\t\t\t\t? chalk.red(\n\t\t\t\t\t\t\t`1. Name must be ${chalk.bold(\"30 characters long or less\")}`,\n\t\t\t\t\t )\n\t\t\t\t\t: `1. Name must be ${chalk.cyan(\"30 characters long or less\")}`;\n\n\t\t\t\tthis.msg = chalk.reset(\n\t\t\t\t\t`\nChoose a name for your Prismic repository\n\n NAMING RULES\n ${minRule}\n ${maxRule}\n 3. Name will be ${chalk.cyan(\"kebab-cased\")} automatically\n\n CONSIDERATIONS\n 1. Once picked, your repository name ${chalk.cyan(\"cannot be changed\")}\n 2. A ${chalk.cyan(\n\t\t\t\"display name\",\n\t\t)} for the repository can be configured later on\n\n PREVIEW\n Dashboard ${chalk.cyan(`https://${domain}.prismic.io`)}\n API ${chalk.cyan(`https://${domain}.cdn.prismic.io/api/v2`)}\n\n${chalk.cyan(\"?\")} Your Prismic repository name`.replace(\"\\n\", \"\"),\n\t\t\t\t);\n\t\t\t},\n\t\t\tvalidate: async (rawDomain: string) => {\n\t\t\t\tconst domain = formatRepositoryDomain(rawDomain);\n\t\t\t\tconst validation = await validateRepositoryDomainAndAvailability({\n\t\t\t\t\tdomain,\n\t\t\t\t\texistsFn: (domain) =>\n\t\t\t\t\t\tthis.manager.prismicRepository.checkExists({ domain }),\n\t\t\t\t});\n\t\t\t\tconst errorMessage = getErrorMessageForRepositoryDomainValidation({\n\t\t\t\t\tvalidation,\n\t\t\t\t\tdisplayDomain: chalk.cyan(domain),\n\t\t\t\t});\n\n\t\t\t\treturn errorMessage || true;\n\t\t\t},\n\t\t\tformat: (value) => {\n\t\t\t\treturn formatRepositoryDomain(value);\n\t\t\t},\n\t\t});\n\n\t\t// Clear extra lines\n\t\tprocess.stdout.moveCursor?.(0, -16);\n\t\tprocess.stdout.clearScreenDown?.();\n\n\t\tthis.context.repository = {\n\t\t\tdomain,\n\t\t\texists: false,\n\t\t};\n\t}\n\n\tprotected createNewRepository(): Promise<void> {\n\t\tassertExists(\n\t\t\tthis.context.repository,\n\t\t\t\"Repository selection must be available through context to run `createNewRepository`\",\n\t\t);\n\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: `Creating new repository ${chalk.cyan(\n\t\t\t\t\tthis.context.repository.domain,\n\t\t\t\t)} ...`,\n\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.repository,\n\t\t\t\t\t\t\"Repository selection must be available through context to run `createNewRepository`\",\n\t\t\t\t\t);\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.framework,\n\t\t\t\t\t\t\"Project framework must be available through context to run `createNewRepository`\",\n\t\t\t\t\t);\n\n\t\t\t\t\tawait this.manager.prismicRepository.create({\n\t\t\t\t\t\tdomain: this.context.repository.domain,\n\t\t\t\t\t\tframework: this.context.framework.wroomTelemetryID,\n\t\t\t\t\t\tstarterId: this.context.starterId,\n\t\t\t\t\t});\n\n\t\t\t\t\tthis.context.repository.exists = true;\n\t\t\t\t\ttask.title = `Created new repository ${chalk.cyan(\n\t\t\t\t\t\tthis.context.repository.domain,\n\t\t\t\t\t)}`;\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected finishCoreDependenciesInstallation(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: `Finishing core dependencies installation with ${chalk.cyan(\n\t\t\t\t\tthis.context.packageManager,\n\t\t\t\t)} ...`,\n\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.installProcess,\n\t\t\t\t\t\t\"Initial dependencies installation process must be available through context to run `finishCoreDependenciesInstallation`\",\n\t\t\t\t\t);\n\n\t\t\t\t\tconst updateOutput = (data: Buffer | null) => {\n\t\t\t\t\t\tif (data instanceof Buffer) {\n\t\t\t\t\t\t\ttask.output = data.toString();\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t\t// Don't clutter console with logs when process is non TTY (CI, etc.)\n\t\t\t\t\tif (process.stdout.isTTY || process.env.NODE_ENV === \"test\") {\n\t\t\t\t\t\tthis.context.installProcess.stdout?.on(\"data\", updateOutput);\n\t\t\t\t\t}\n\t\t\t\t\tthis.context.installProcess.stderr?.on(\"data\", updateOutput);\n\n\t\t\t\t\ttry {\n\t\t\t\t\t\tawait this.context.installProcess;\n\t\t\t\t\t} catch (error) {\n\t\t\t\t\t\t/**\n\t\t\t\t\t\t * Error catching happens when then process is started ealier so\n\t\t\t\t\t\t * that all install errors, earlier and presents, can be catched.\n\t\t\t\t\t\t *\n\t\t\t\t\t\t * Here, we force the task to wait so that it is neither marked as\n\t\t\t\t\t\t * done or has the opportunity to handle the error itself.\n\t\t\t\t\t\t */\n\t\t\t\t\t\t// If for whatever reason the process is not exited by now, we still throw the error\n\t\t\t\t\t\tawait new Promise((resolve) => setTimeout(resolve, 5000));\n\t\t\t\t\t\tthrow error;\n\t\t\t\t\t}\n\n\t\t\t\t\ttask.title = `Installed core dependencies with ${chalk.cyan(\n\t\t\t\t\t\tthis.context.packageManager,\n\t\t\t\t\t)}`;\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected upsertSliceMachineConfigurationAndStartPluginRunner(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Resolving Slice Machine configuration...\",\n\t\t\t\ttask: async (_, parentTask) => {\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.framework,\n\t\t\t\t\t\t\"Project framework must be available through context to run `upsertSliceMachineConfiguration`\",\n\t\t\t\t\t);\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.repository,\n\t\t\t\t\t\t\"Repository selection must be available through context to run `upsertSliceMachineConfiguration`\",\n\t\t\t\t\t);\n\n\t\t\t\t\tlet sliceMachineConfigExists = false;\n\t\t\t\t\ttry {\n\t\t\t\t\t\tawait this.manager.project.getSliceMachineConfigPath();\n\t\t\t\t\t\tsliceMachineConfigExists = true;\n\t\t\t\t\t} catch {\n\t\t\t\t\t\t// noop, config does not exists, we'll create it\n\t\t\t\t\t}\n\n\t\t\t\t\tif (sliceMachineConfigExists) {\n\t\t\t\t\t\tparentTask.title = \"Updating Slice Machine configuration...\";\n\n\t\t\t\t\t\tconst config = await this.manager.project.getSliceMachineConfig();\n\t\t\t\t\t\tawait this.manager.project.writeSliceMachineConfig({\n\t\t\t\t\t\t\tconfig: {\n\t\t\t\t\t\t\t\t...config,\n\t\t\t\t\t\t\t\trepositoryName: this.context.repository.domain,\n\t\t\t\t\t\t\t\tadapter: this.context.framework.adapterName,\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t});\n\t\t\t\t\t\tparentTask.title = \"Updated Slice Machine configuration\";\n\t\t\t\t\t} else {\n\t\t\t\t\t\tparentTask.title = \"Creating Slice Machine configuration...\";\n\n\t\t\t\t\t\tconst sliceMachineConfigPath =\n\t\t\t\t\t\t\tawait this.manager.project.suggestSliceMachineConfigPath();\n\n\t\t\t\t\t\tawait this.manager.project.writeSliceMachineConfig({\n\t\t\t\t\t\t\tconfig: {\n\t\t\t\t\t\t\t\trepositoryName: this.context.repository.domain,\n\t\t\t\t\t\t\t\tadapter: this.context.framework.adapterName,\n\t\t\t\t\t\t\t\tlibraries: [\"./slices\"],\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tpath: sliceMachineConfigPath,\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\tparentTask.title = \"Created Slice Machine configuration\";\n\t\t\t\t\t}\n\n\t\t\t\t\treturn listr([\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t// TODO: Revert when plugin are introduced to users\n\t\t\t\t\t\t\t// title: \"Starting plugin runner...\",\n\t\t\t\t\t\t\ttitle: \"Loading adapter...\",\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tawait this.manager.plugins.initPlugins();\n\t\t\t\t\t\t\t\t// TODO: Revert when plugin are introduced to users\n\t\t\t\t\t\t\t\t// task.title = \"Started plugin runner\";\n\t\t\t\t\t\t\t\ttask.title = \"Loaded adapter\";\n\t\t\t\t\t\t\t\t// TODO: Revert when plugin are introduced to users\n\t\t\t\t\t\t\t\t// parentTask.title = `${parentTask.title} and started plugin runner`;\n\t\t\t\t\t\t\t\tparentTask.title = `${parentTask.title} and loaded adapter`;\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t]);\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected async readAllSlices(): Promise<\n\t\t{ libraryID: string; sliceID: string }[]\n\t> {\n\t\tconst { libraries, errors } =\n\t\t\tawait this.manager.slices.readAllSliceLibraries();\n\n\t\tif (errors.length > 0) {\n\t\t\t// TODO: Provide better error message.\n\t\t\tthrow new Error(`Failed to read slice libraries: ${errors.join(\", \")}`);\n\t\t}\n\n\t\tconst slices: { libraryID: string; sliceID: string }[] = [];\n\t\tfor (const library of libraries) {\n\t\t\tif (library.sliceIDs) {\n\t\t\t\tfor (const sliceID of library.sliceIDs) {\n\t\t\t\t\tslices.push({\n\t\t\t\t\t\tlibraryID: library.libraryID,\n\t\t\t\t\t\tsliceID,\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn slices;\n\t}\n\n\tprotected async readDocuments(): Promise<\n\t\t| {\n\t\t\t\tsignature: string;\n\t\t\t\tdocuments: string[];\n\t\t\t\tdirectoryPath: string;\n\t\t }\n\t\t| undefined\n\t> {\n\t\tconst root = await this.manager.project.getRoot();\n\t\tconst documentsDirectoryPath = path.resolve(root, \"documents\");\n\t\ttry {\n\t\t\tawait fs.access(documentsDirectoryPath);\n\t\t} catch {\n\t\t\treturn;\n\t\t}\n\t\tconst signaturePath = path.resolve(documentsDirectoryPath, \"index.json\");\n\t\tconst rawSignature = await fs.readFile(signaturePath, \"utf-8\");\n\t\tconst signature: string = JSON.parse(rawSignature).signature;\n\n\t\tconst documents = await globby(\"*/*.json\", {\n\t\t\tcwd: documentsDirectoryPath,\n\t\t});\n\n\t\treturn { signature, documents, directoryPath: documentsDirectoryPath };\n\t}\n\n\tprotected pushDataToPrismic(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Pushing data to Prismic...\",\n\t\t\t\ttask: (_, parentTask) =>\n\t\t\t\t\tlistr([\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Pushing slices...\",\n\t\t\t\t\t\t\tskip: () => {\n\t\t\t\t\t\t\t\tif (!this.options.push) {\n\t\t\t\t\t\t\t\t\treturn `--no-push used`;\n\t\t\t\t\t\t\t\t} else if (!this.options.pushSlices) {\n\t\t\t\t\t\t\t\t\treturn `--no-push-slices used`;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tconst slices = await this.readAllSlices();\n\n\t\t\t\t\t\t\t\tif (slices.length === 0) {\n\t\t\t\t\t\t\t\t\ttask.skip(\"No slice to push\");\n\n\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\ttask.title = \"Pushing slices... (initializing ACL)\";\n\t\t\t\t\t\t\t\tawait this.manager.screenshots.initS3ACL();\n\n\t\t\t\t\t\t\t\tlet pushed = 0;\n\t\t\t\t\t\t\t\ttask.title = `Pushing slices... (0/${slices.length})`;\n\t\t\t\t\t\t\t\tawait Promise.all(\n\t\t\t\t\t\t\t\t\tslices.map(async (slice) => {\n\t\t\t\t\t\t\t\t\t\tawait this.manager.slices.pushSlice({\n\t\t\t\t\t\t\t\t\t\t\t...slice,\n\t\t\t\t\t\t\t\t\t\t\tuserAgent: SLICE_MACHINE_INIT_USER_AGENT,\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\tpushed++;\n\t\t\t\t\t\t\t\t\t\ttask.title = `Pushing slices... (${pushed}/${slices.length})`;\n\t\t\t\t\t\t\t\t\t}),\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\ttask.title = \"Pushed all slices\";\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Pushing types...\",\n\t\t\t\t\t\t\tskip: () => {\n\t\t\t\t\t\t\t\tif (!this.options.push) {\n\t\t\t\t\t\t\t\t\treturn `--no-push used`;\n\t\t\t\t\t\t\t\t} else if (!this.options.pushCustomTypes) {\n\t\t\t\t\t\t\t\t\treturn `--no-push-custom-types used`;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tconst { ids, errors } =\n\t\t\t\t\t\t\t\t\tawait this.manager.customTypes.readCustomTypeLibrary();\n\n\t\t\t\t\t\t\t\tif (errors.length > 0) {\n\t\t\t\t\t\t\t\t\t// TODO: Provide better error message.\n\t\t\t\t\t\t\t\t\tthrow new Error(\n\t\t\t\t\t\t\t\t\t\t`Failed to read custom type libraries: ${errors.join(\n\t\t\t\t\t\t\t\t\t\t\t\", \",\n\t\t\t\t\t\t\t\t\t\t)}`,\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tif (!ids || ids.length === 0) {\n\t\t\t\t\t\t\t\t\ttask.skip(\"No custom type to push\");\n\n\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tlet pushed = 0;\n\t\t\t\t\t\t\t\ttask.title = `Pushing types... (0/${ids.length})`;\n\t\t\t\t\t\t\t\tawait Promise.all(\n\t\t\t\t\t\t\t\t\tids.map(async (id) => {\n\t\t\t\t\t\t\t\t\t\tawait this.manager.customTypes.pushCustomType({\n\t\t\t\t\t\t\t\t\t\t\tid,\n\t\t\t\t\t\t\t\t\t\t\tuserAgent: SLICE_MACHINE_INIT_USER_AGENT,\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\tpushed++;\n\t\t\t\t\t\t\t\t\t\ttask.title = `Pushing types... (${pushed}/${ids.length})`;\n\t\t\t\t\t\t\t\t\t}),\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\ttask.title = \"Pushed all types\";\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Pushing documents...\",\n\t\t\t\t\t\t\tskip: () => {\n\t\t\t\t\t\t\t\tif (!this.options.push) {\n\t\t\t\t\t\t\t\t\treturn `--no-push used`;\n\t\t\t\t\t\t\t\t} else if (!this.options.pushDocuments) {\n\t\t\t\t\t\t\t\t\treturn `--no-push-documents used`;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tassertExists(\n\t\t\t\t\t\t\t\t\tthis.context.repository,\n\t\t\t\t\t\t\t\t\t\"Repository selection must be available through context to run `pushDataToPrismic`\",\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tconst documentsRead = await this.readDocuments();\n\n\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\tdocumentsRead === undefined ||\n\t\t\t\t\t\t\t\t\t\tdocumentsRead.documents.length === 0\n\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\tparentTask.title = \"Pushed data to Prismic\";\n\t\t\t\t\t\t\t\t\t\ttask.skip(\"No document to push\");\n\n\t\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tconst { signature, documents, directoryPath } = documentsRead;\n\n\t\t\t\t\t\t\t\t\t// TODO: Replace `unknown` with a Prismic document type.\n\t\t\t\t\t\t\t\t\t// The exact format is not know at this time, hence the `unknown`.\n\t\t\t\t\t\t\t\t\tconst recordDocument: Record<string, unknown> = {};\n\n\t\t\t\t\t\t\t\t\tawait Promise.all(\n\t\t\t\t\t\t\t\t\t\tdocuments.map(async (documentPath) => {\n\t\t\t\t\t\t\t\t\t\t\tconst filename = path.basename(documentPath, \".json\");\n\t\t\t\t\t\t\t\t\t\t\tconst fileContent = await fs.readFile(\n\t\t\t\t\t\t\t\t\t\t\t\tpath.resolve(directoryPath, documentPath),\n\t\t\t\t\t\t\t\t\t\t\t\t\"utf-8\",\n\t\t\t\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\t\t\t\t// TOOD: Validate the contents of the JSON file and skip on invalid documents.\n\t\t\t\t\t\t\t\t\t\t\t\tconst parsedContents = JSON.parse(fileContent);\n\n\t\t\t\t\t\t\t\t\t\t\t\trecordDocument[filename] = parsedContents;\n\t\t\t\t\t\t\t\t\t\t\t} catch {\n\t\t\t\t\t\t\t\t\t\t\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t\t\t\t\t\t\t\t\t\t\t// eslint-disable-next-line no-console\n\t\t\t\t\t\t\t\t\t\t\t\tconsole.log(\n\t\t\t\t\t\t\t\t\t\t\t\t\t`Skipped document due to its invalid format: ${documentPath}`,\n\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}),\n\t\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t\tawait this.manager.prismicRepository.pushDocuments({\n\t\t\t\t\t\t\t\t\t\tdomain: this.context.repository.domain,\n\t\t\t\t\t\t\t\t\t\tdocuments: recordDocument,\n\t\t\t\t\t\t\t\t\t\tsignature,\n\t\t\t\t\t\t\t\t\t});\n\n\t\t\t\t\t\t\t\t\ttask.title = \"Pushed all documents\";\n\t\t\t\t\t\t\t\t\tparentTask.title = \"Pushed data to Prismic\";\n\t\t\t\t\t\t\t\t} catch {\n\t\t\t\t\t\t\t\t\tparentTask.title = \"Pushed data to Prismic\";\n\t\t\t\t\t\t\t\t\ttask.skip(\"No document to push\");\n\n\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Cleaning up data push artifacts\",\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tconst root = await this.manager.project.getRoot();\n\t\t\t\t\t\t\t\tconst documentsDirectoryPath = path.resolve(root, \"documents\");\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tawait fs.rm(documentsDirectoryPath, {\n\t\t\t\t\t\t\t\t\t\tforce: true,\n\t\t\t\t\t\t\t\t\t\trecursive: true,\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t} catch {\n\t\t\t\t\t\t\t\t\t// Noop, it's not that big of a deal if we cannot delete this directory\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\ttask.title = \"Cleaned up data push artifacts\";\n\t\t\t\t\t\t\t\tparentTask.title = \"Pushed data to Prismic\";\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t]),\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected initializeProject(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Initializing project...\",\n\t\t\t\ttask: async (_, parentTask) =>\n\t\t\t\t\t// We return another Listr instance in the event we have additional task to perform to initialize the project\n\t\t\t\t\tlistr([\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: `Patching ${chalk.cyan(\"package.json\")} scripts...`,\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tconst pkgPath = path.join(this.manager.cwd, \"package.json\");\n\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tconst pkgRaw = await fs.readFile(pkgPath, \"utf-8\");\n\t\t\t\t\t\t\t\t\tconst pkg = JSON.parse(pkgRaw);\n\n\t\t\t\t\t\t\t\t\tpkg.scripts ||= {};\n\n\t\t\t\t\t\t\t\t\tif (!pkg.scripts[START_SCRIPT_KEY]) {\n\t\t\t\t\t\t\t\t\t\tpkg.scripts[START_SCRIPT_KEY] = START_SCRIPT_VALUE;\n\n\t\t\t\t\t\t\t\t\t\t// Cheap indent detection based on https://github.com/sindresorhus/detect-indent (simplified because we're only dealing with JSON here)\n\t\t\t\t\t\t\t\t\t\tconst firstIndent = pkgRaw\n\t\t\t\t\t\t\t\t\t\t\t.split(\"\\n\")\n\t\t\t\t\t\t\t\t\t\t\t.find((line) => line.match(/^(?:( )+|\\t+)/));\n\t\t\t\t\t\t\t\t\t\tconst indent = firstIndent?.match(/^(?:( )+|\\t+)/)?.[0];\n\n\t\t\t\t\t\t\t\t\t\tawait fs.writeFile(\n\t\t\t\t\t\t\t\t\t\t\tpkgPath,\n\t\t\t\t\t\t\t\t\t\t\tJSON.stringify(\n\t\t\t\t\t\t\t\t\t\t\t\tpkg,\n\t\t\t\t\t\t\t\t\t\t\t\tnull,\n\t\t\t\t\t\t\t\t\t\t\t\tindent && indent !== \" \" ? indent : \" \",\n\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t} else if (\n\t\t\t\t\t\t\t\t\t\t!pkg.scripts[\"slicemachine\"].startsWith(START_SCRIPT_VALUE)\n\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\tthrow new Error(\"Script already exists\");\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t} catch (error) {\n\t\t\t\t\t\t\t\t\ttask.title = `Could not patch ${chalk.cyan(\n\t\t\t\t\t\t\t\t\t\t\"package.json\",\n\t\t\t\t\t\t\t\t\t)} scripts (warning)`;\n\t\t\t\t\t\t\t\t\tparentTask.title = `Initialized project (could not patch ${chalk.cyan(\n\t\t\t\t\t\t\t\t\t\t\"package.json\",\n\t\t\t\t\t\t\t\t\t)} scripts)`;\n\n\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tthis.context.projectInitialization ||= {};\n\t\t\t\t\t\t\t\tthis.context.projectInitialization.patchedScript = true;\n\n\t\t\t\t\t\t\t\ttask.title = `Patched ${chalk.cyan(\"package.json\")} scripts`;\n\t\t\t\t\t\t\t\tparentTask.title = `Initialized project (patched ${chalk.cyan(\n\t\t\t\t\t\t\t\t\t\"package.json\",\n\t\t\t\t\t\t\t\t)} scripts)`;\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t]),\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected initializePlugins(): Promise<void> {\n\t\treturn listrRun(\n\t\t\t[\n\t\t\t\t{\n\t\t\t\t\t// TODO: Revert when plugin are introduced to users\n\t\t\t\t\t// title: \"Initializing plugins...\",\n\t\t\t\t\ttitle: \"Initializing adapter...\",\n\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\tconst updateOutput = (data: Buffer | string | null) => {\n\t\t\t\t\t\t\tif (data instanceof Buffer) {\n\t\t\t\t\t\t\t\ttask.output = data.toString();\n\t\t\t\t\t\t\t} else if (typeof data === \"string\") {\n\t\t\t\t\t\t\t\ttask.output = data;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t};\n\n\t\t\t\t\t\tawait this.manager.project.initProject({\n\t\t\t\t\t\t\tlog: updateOutput,\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\t// TODO: Revert when plugin are introduced to users\n\t\t\t\t\t\t// task.title = \"Initialized plugins\";\n\t\t\t\t\t\ttask.title = \"Initialized adapter\";\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t],\n\t\t\t{ exitOnError: false },\n\t\t).catch(() => void 0);\n\t}\n}\n"],"names":["createSliceMachineManager","pkg","assertExists","getRunScriptCommand","getExecuteCommand","prompt","path","fs","execaCommand","listrRun","downloadTemplate","GIGET_PROVIDER","GIGET_ORGANIZATION","getRandomRepositoryDomain","listr","_","detectFramework","detectStarterId","_b","_a","formatRepositoryDomain","validateRepositoryDomainAndAvailability","domain","getErrorMessageForRepositoryDomainValidation","validateRepositoryDomain","maybeSuggestion","globby","SLICE_MACHINE_INIT_USER_AGENT","START_SCRIPT_KEY","START_SCRIPT_VALUE"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"SliceMachineInitProcess.cjs","sources":["../../src/SliceMachineInitProcess.ts"],"sourcesContent":["import * as fs from \"node:fs/promises\";\nimport * as path from \"node:path\";\n\nimport chalk from \"chalk\";\n\nimport { execaCommand, type ExecaChildProcess } from \"execa\";\n\nimport open from \"open\";\nimport logSymbols from \"log-symbols\";\nimport { globby } from \"globby\";\nimport { downloadTemplate } from \"giget\";\n\nimport {\n\tcreateSliceMachineManager,\n\tPrismicUserProfile,\n\tPrismicRepository,\n\tSliceMachineManager,\n\tPackageManager,\n\tStarterId,\n} from \"@slicemachine/manager\";\n\nimport pkg from \"../package.json\";\nimport { detectFramework, Framework } from \"./lib/framework\";\nimport { getRunScriptCommand } from \"./lib/getRunScriptCommand\";\nimport { getExecuteCommand } from \"./lib/getExecuteCommand\";\nimport {\n\tgetRandomRepositoryDomain,\n\tformatRepositoryDomain,\n\tvalidateRepositoryDomain,\n\tvalidateRepositoryDomainAndAvailability,\n\tgetErrorMessageForRepositoryDomainValidation,\n} from \"./lib/repositoryDomain\";\nimport { listr, listrRun } from \"./lib/listr\";\nimport { prompt } from \"./lib/prompt\";\nimport { assertExists } from \"./lib/assertExists\";\nimport {\n\tGIGET_ORGANIZATION,\n\tGIGET_PROVIDER,\n\tSLICE_MACHINE_INIT_USER_AGENT,\n\tSTART_SCRIPT_KEY,\n\tSTART_SCRIPT_VALUE,\n} from \"./constants\";\nimport { detectStarterId } from \"./lib/starters\";\n\nexport type SliceMachineInitProcessOptions = {\n\trepository?: string;\n\tstarter?: string;\n\tdirectoryName?: string;\n\tpush?: boolean;\n\tpushSlices?: boolean;\n\tpushCustomTypes?: boolean;\n\tpushDocuments?: boolean;\n\tstartSlicemachine?: boolean;\n\tcwd?: string;\n} & Record<string, unknown>;\n\nconst DEFAULT_OPTIONS: SliceMachineInitProcessOptions = {\n\tpush: true,\n\tpushSlices: true,\n\tpushCustomTypes: true,\n\tpushDocuments: true,\n\tstartSlicemachine: true,\n};\n\nexport const createSliceMachineInitProcess = (\n\toptions?: SliceMachineInitProcessOptions,\n): SliceMachineInitProcess => {\n\treturn new SliceMachineInitProcess(options);\n};\n\ntype SliceMachineInitProcessContext = {\n\tframework?: Framework;\n\tpackageManager?: PackageManager;\n\tinstallProcess?: ExecaChildProcess;\n\tuserProfile?: PrismicUserProfile;\n\tuserRepositories?: PrismicRepository[];\n\trepository?: {\n\t\tdomain: string;\n\t\texists: boolean;\n\t};\n\tprojectInitialization?: {\n\t\tpatchedScript?: boolean;\n\t};\n\tstarterId?: StarterId;\n};\n\nexport class SliceMachineInitProcess {\n\tprotected options: SliceMachineInitProcessOptions;\n\tprotected manager: SliceMachineManager;\n\n\tprotected context: SliceMachineInitProcessContext;\n\n\tconstructor(options?: SliceMachineInitProcessOptions) {\n\t\tthis.options = { ...DEFAULT_OPTIONS, ...options };\n\t\tthis.manager = createSliceMachineManager({ cwd: options?.cwd });\n\n\t\tthis.context = {};\n\t}\n\n\tasync run(): Promise<void> {\n\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t// eslint-disable-next-line no-console\n\t\tconsole.log(\n\t\t\t`\\n${chalk.bgGray(` ${chalk.bold.white(\"Slice Machine\")} `)} ${chalk.dim(\n\t\t\t\t\"→\",\n\t\t\t)} Initializing\\n`,\n\t\t);\n\n\t\ttry {\n\t\t\tif (this.options.starter) {\n\t\t\t\tawait this.copyStarter();\n\t\t\t} else if (this.options.directoryName) {\n\t\t\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t\t\t// eslint-disable-next-line no-console\n\t\t\t\tconsole.log(\n\t\t\t\t\t`${logSymbols.warning} --directory-name has no effect because --starter is not specified\\n`,\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tif (await this.manager.telemetry.checkIsTelemetryEnabled()) {\n\t\t\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t\t\t// eslint-disable-next-line no-console\n\t\t\t\tconsole.log(\n\t\t\t\t\t`${\n\t\t\t\t\t\tlogSymbols.info\n\t\t\t\t\t} We collect telemetry data to improve user experience.\\n Learn more: ${chalk.cyan(\n\t\t\t\t\t\t\"https://prismic.dev/slice-machine/telemetry\",\n\t\t\t\t\t)}\\n`,\n\t\t\t\t);\n\t\t\t}\n\t\t\tawait this.manager.telemetry.initTelemetry({\n\t\t\t\tappName: pkg.name,\n\t\t\t\tappVersion: pkg.version,\n\t\t\t});\n\t\t\tawait this.manager.telemetry.track({\n\t\t\t\tevent: \"command:init:start\",\n\t\t\t\trepository: this.options.repository,\n\t\t\t});\n\n\t\t\tawait this.detectEnvironment();\n\n\t\t\tassertExists(\n\t\t\t\tthis.context.framework,\n\t\t\t\t\"Project framework must be available through context to proceed\",\n\t\t\t);\n\n\t\t\tawait this.beginCoreDependenciesInstallation();\n\n\t\t\tif (this.options.repository) {\n\t\t\t\tawait this.useRepositoryFlag();\n\t\t\t} else {\n\t\t\t\tawait this.loginAndFetchUserData();\n\t\t\t\tawait this.selectRepository();\n\t\t\t}\n\n\t\t\tassertExists(\n\t\t\t\tthis.context.repository,\n\t\t\t\t\"Repository selection must be available through context to proceed\",\n\t\t\t);\n\n\t\t\tawait this.finishCoreDependenciesInstallation();\n\t\t\tawait this.upsertSliceMachineConfigurationAndStartPluginRunner();\n\n\t\t\tconst isLoginRequired = await this.checkIsLoginRequired();\n\t\t\tif (isLoginRequired) {\n\t\t\t\tawait this.loginAndFetchUserData();\n\t\t\t\tif (this.context.repository.exists) {\n\t\t\t\t\tthis.validateWriteAccess();\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (!this.context.repository.exists) {\n\t\t\t\tawait this.createNewRepository();\n\t\t\t}\n\n\t\t\tawait this.syncDataWithPrismic();\n\t\t\tawait this.initializeProject();\n\t\t\tawait this.initializePlugins();\n\t\t} catch (error) {\n\t\t\tawait this.trackError(error);\n\n\t\t\tthrow error;\n\t\t}\n\n\t\tawait this.manager.telemetry.track({\n\t\t\tevent: \"command:init:end\",\n\t\t\tframework: this.context.framework.sliceMachineTelemetryID,\n\t\t\trepository: this.context.repository.domain,\n\t\t\tsuccess: true,\n\t\t});\n\n\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t// eslint-disable-next-line no-console\n\t\tconsole.log(\n\t\t\t`\\n${chalk.bgGreen(` ${chalk.bold.white(\"Slice Machine\")} `)} ${chalk.dim(\n\t\t\t\t\"→\",\n\t\t\t)} Initialization successful!`,\n\t\t);\n\n\t\ttry {\n\t\t\tconst runSmCommand = this.context.projectInitialization?.patchedScript\n\t\t\t\t? await getRunScriptCommand({\n\t\t\t\t\t\tagent: this.context.packageManager || \"npm\",\n\t\t\t\t\t\tscript: \"slicemachine\",\n\t\t\t\t })\n\t\t\t\t: await getExecuteCommand({\n\t\t\t\t\t\tagent: this.context.packageManager || \"npm\",\n\t\t\t\t\t\tscript: \"start-slicemachine\",\n\t\t\t\t });\n\n\t\t\tconst runProjectCommand = await getRunScriptCommand({\n\t\t\t\tagent: this.context.packageManager || \"npm\",\n\t\t\t\tscript: \"dev\",\n\t\t\t});\n\n\t\t\tconst apiEndpoints = this.manager.getAPIEndpoints();\n\t\t\tconst wroomHost = new URL(apiEndpoints.PrismicWroom).host;\n\n\t\t\tconst dashboardURL = new URL(\n\t\t\t\t`https://${this.context.repository.domain}.${wroomHost}`,\n\t\t\t)\n\t\t\t\t.toString()\n\t\t\t\t.replace(/\\/$/, \"\");\n\t\t\tconst apiURL = new URL(\n\t\t\t\t\"./api/v2\",\n\t\t\t\t`https://${this.context.repository.domain}.cdn.${wroomHost}`,\n\t\t\t).toString();\n\n\t\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t\t// eslint-disable-next-line no-console\n\t\t\tconsole.log(`\n YOUR REPOSITORY\n Page Builder ${chalk.cyan(dashboardURL)}\n API ${chalk.cyan(apiURL)}\n\n RESOURCES\n Documentation ${chalk.cyan(\n\t\t\tthis.context.framework.prismicDocumentation,\n\t\t)}\n Getting help ${chalk.cyan(\"https://community.prismic.io\")}\n\n GETTING STARTED\n Run Slice Machine ${chalk.cyan(runSmCommand)}\n Run your project ${chalk.cyan(runProjectCommand)}\n\t`);\n\n\t\t\tif (this.options.starter && this.options.repository) {\n\t\t\t\tconst { openDashboard } = await prompt<boolean, \"openDashboard\">({\n\t\t\t\t\ttype: \"confirm\",\n\t\t\t\t\tname: \"openDashboard\",\n\t\t\t\t\tmessage: \"Would you like to open your repository?\",\n\t\t\t\t\tinitial: true,\n\t\t\t\t});\n\n\t\t\t\tif (openDashboard) {\n\t\t\t\t\topen(dashboardURL);\n\t\t\t\t}\n\t\t\t} else if (this.options.startSlicemachine) {\n\t\t\t\tconst pkgJSONPath = path.join(this.manager.cwd, \"package.json\");\n\t\t\t\tconst pkg = JSON.parse(await fs.readFile(pkgJSONPath, \"utf-8\"));\n\t\t\t\tconst scripts = pkg.scripts || {};\n\n\t\t\t\tconst finalSmCommand = (() => {\n\t\t\t\t\tif (\n\t\t\t\t\t\tscripts[\"dev\"] &&\n\t\t\t\t\t\ttypeof scripts[\"dev\"] === \"string\" &&\n\t\t\t\t\t\tscripts[\"dev\"].includes(\":slicemachine\")\n\t\t\t\t\t) {\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\tcommand: runProjectCommand,\n\t\t\t\t\t\t\tmessage: `Would you like to run your project and Slice Machine concurrently (${runProjectCommand})?`,\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\n\t\t\t\t\treturn {\n\t\t\t\t\t\tcommand: runSmCommand,\n\t\t\t\t\t\tmessage: `Would you like to run Slice Machine (${runSmCommand})?`,\n\t\t\t\t\t};\n\t\t\t\t})();\n\t\t\t\tconst { startSlicemachine } = await prompt<\n\t\t\t\t\tboolean,\n\t\t\t\t\t\"startSlicemachine\"\n\t\t\t\t>({\n\t\t\t\t\ttype: \"confirm\",\n\t\t\t\t\tname: \"startSlicemachine\",\n\t\t\t\t\tmessage: finalSmCommand.message,\n\t\t\t\t\tinitial: true,\n\t\t\t\t});\n\n\t\t\t\tif (startSlicemachine) {\n\t\t\t\t\tconst commandReturnValue = await execaCommand(\n\t\t\t\t\t\tfinalSmCommand.command,\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tenv: { FORCE_COLOR: \"true\" },\n\t\t\t\t\t\t},\n\t\t\t\t\t).pipeStdout?.(process.stdout);\n\t\t\t\t\tif (commandReturnValue !== undefined) {\n\t\t\t\t\t\t// eslint-disable-next-line no-console\n\t\t\t\t\t\tconsole.log(commandReturnValue.stdout);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t} catch {\n\t\t\t// Noop, it's only the final convenience messsage\n\t\t}\n\t}\n\n\tprotected async checkIsLoginRequired(): Promise<boolean> {\n\t\ttry {\n\t\t\tassertExists(this.context.repository, \"\");\n\t\t\tif (this.context.repository.exists === false) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tconst [slices, ctLibrary, documentsGlob] = await Promise.all([\n\t\t\t\tthis.readAllSlices(),\n\t\t\t\tthis.manager.customTypes.readCustomTypeLibrary(),\n\t\t\t\tthis.readDocuments(),\n\t\t\t]);\n\n\t\t\t// If repository exists, and there's anything to push\n\t\t\tif (\n\t\t\t\tslices.length > 0 ||\n\t\t\t\tctLibrary.ids.length > 0 ||\n\t\t\t\t(documentsGlob !== undefined && documentsGlob.documents.length > 0)\n\t\t\t) {\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\t// If repository exists, and there might be things to pull\n\t\t\tif (ctLibrary.ids.length === 0) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t} catch (e) {\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t}\n\n\tprotected trackError = (error: unknown): Promise<void> => {\n\t\t// Transform error to string and prevent hitting Segment 500kb API limit or sending ridiculously long trace\n\t\tconst safeError = (\n\t\t\terror instanceof Error ? error.message : `${error}`\n\t\t).slice(0, 512);\n\n\t\treturn this.manager.telemetry.track({\n\t\t\tevent: \"command:init:end\",\n\t\t\tframework: this.context.framework?.sliceMachineTelemetryID ?? \"unknown\",\n\t\t\trepository: this.context.repository?.domain || \"\",\n\t\t\tsuccess: false,\n\t\t\terror: safeError,\n\t\t});\n\t};\n\n\tprotected async copyStarter(): Promise<void> {\n\t\tconst dir = await this.getStarterDirectoryName();\n\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Copying starter...\\n\",\n\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\tconst starter = this.options.starter;\n\n\t\t\t\t\tawait downloadTemplate(\n\t\t\t\t\t\t`${GIGET_PROVIDER}:${GIGET_ORGANIZATION}/${starter}#HEAD`,\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tdir,\n\t\t\t\t\t\t},\n\t\t\t\t\t);\n\n\t\t\t\t\tprocess.chdir(dir);\n\t\t\t\t\tthis.manager.cwd = process.cwd();\n\n\t\t\t\t\ttask.title = \"Starter copied\\n\";\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected async getStarterDirectoryName(): Promise<string> {\n\t\tlet directoryName: string;\n\t\tconst folderNames = await fs.readdir(process.cwd());\n\n\t\tif (\n\t\t\tthis.options.directoryName &&\n\t\t\t!folderNames.includes(this.options.directoryName)\n\t\t) {\n\t\t\t// Use provided directory\n\t\t\tdirectoryName = this.options.directoryName;\n\t\t} else if (\n\t\t\tthis.options.repository &&\n\t\t\t!folderNames.includes(this.options.repository)\n\t\t) {\n\t\t\t// Use repository name\n\t\t\tdirectoryName = this.options.repository;\n\t\t} else {\n\t\t\t// Use random name\n\t\t\tlet suggestedName: string;\n\t\t\tdo {\n\t\t\t\tsuggestedName = getRandomRepositoryDomain();\n\t\t\t} while (folderNames.includes(suggestedName));\n\n\t\t\tconst { selectedDirectory } = await prompt<string, \"selectedDirectory\">({\n\t\t\t\ttype: \"text\",\n\t\t\t\tname: \"selectedDirectory\",\n\t\t\t\tmessage: \"Your starter directory name\",\n\t\t\t\tinitial: suggestedName,\n\t\t\t\tvalidate: async (rawDirectory: string) => {\n\t\t\t\t\tif (folderNames.includes(rawDirectory)) {\n\t\t\t\t\t\treturn \"Directory name already exists\";\n\t\t\t\t\t}\n\n\t\t\t\t\treturn true;\n\t\t\t\t},\n\t\t\t});\n\n\t\t\tdirectoryName = selectedDirectory;\n\t\t}\n\n\t\treturn directoryName;\n\t}\n\n\tprotected detectEnvironment(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Detecting environment...\",\n\t\t\t\ttask: (_, parentTask) =>\n\t\t\t\t\tlistr([\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Detecting framework...\",\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tthis.context.framework = await detectFramework(\n\t\t\t\t\t\t\t\t\tthis.manager.cwd,\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\ttask.title = `Detected framework ${chalk.cyan(\n\t\t\t\t\t\t\t\t\tthis.context.framework.name,\n\t\t\t\t\t\t\t\t)}`;\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Detecting package manager...\",\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tthis.context.packageManager =\n\t\t\t\t\t\t\t\t\tawait this.manager.project.detectPackageManager({\n\t\t\t\t\t\t\t\t\t\troot: this.manager.cwd,\n\t\t\t\t\t\t\t\t\t});\n\n\t\t\t\t\t\t\t\ttask.title = `Detected package manager ${chalk.cyan(\n\t\t\t\t\t\t\t\t\tthis.context.packageManager,\n\t\t\t\t\t\t\t\t)}`;\n\n\t\t\t\t\t\t\t\tassertExists(\n\t\t\t\t\t\t\t\t\tthis.context.framework,\n\t\t\t\t\t\t\t\t\t\"Project framework must be available through context to proceed\",\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\tparentTask.title = `Detected framework ${chalk.cyan(\n\t\t\t\t\t\t\t\t\tthis.context.framework.name,\n\t\t\t\t\t\t\t\t)} and package manager ${chalk.cyan(\n\t\t\t\t\t\t\t\t\tthis.context.packageManager,\n\t\t\t\t\t\t\t\t)}`;\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Detecting starter...\",\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tthis.context.starterId = await detectStarterId(\n\t\t\t\t\t\t\t\t\tthis.manager.cwd,\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\tif (this.context.starterId) {\n\t\t\t\t\t\t\t\t\ttask.title = `Detected starter ${chalk.cyan(\n\t\t\t\t\t\t\t\t\t\tthis.context.starterId,\n\t\t\t\t\t\t\t\t\t)}`;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\ttask.title = \"No starter detected\";\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t]),\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected beginCoreDependenciesInstallation(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Beginning core dependencies installation...\",\n\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.packageManager,\n\t\t\t\t\t\t\"Project package manager must be available through context to run `beginCoreDependenciesInstallation`\",\n\t\t\t\t\t);\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.framework,\n\t\t\t\t\t\t\"Project framework must be available through context to run `beginCoreDependenciesInstallation`\",\n\t\t\t\t\t);\n\n\t\t\t\t\tconst { execaProcess } =\n\t\t\t\t\t\tawait this.manager.project.installDependencies({\n\t\t\t\t\t\t\tpackageManager: this.context.packageManager,\n\t\t\t\t\t\t\tdependencies: this.context.framework.devDependencies,\n\t\t\t\t\t\t\tdev: true,\n\t\t\t\t\t\t\t// Picked up later\n\t\t\t\t\t\t\tlog: () => {\n\t\t\t\t\t\t\t\t/* ... */\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t});\n\n\t\t\t\t\t// Fail hard if process fails\n\t\t\t\t\texecaProcess.catch(async (error) => {\n\t\t\t\t\t\tconst [_, ...argv1n] = process.argv;\n\t\t\t\t\t\t// Command the user used\n\t\t\t\t\t\tlet tryAgainCommand = [process.argv0, ...argv1n].join(\" \");\n\n\t\t\t\t\t\t// If the `repository` option wasn't used AND the repository was selected/created\n\t\t\t\t\t\tif (!this.options.repository && this.context.repository) {\n\t\t\t\t\t\t\ttryAgainCommand = `${tryAgainCommand} --repository=${this.context.repository.domain}`;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tawait this.trackError(error.shortMessage);\n\t\t\t\t\t\tconsole.error(\n\t\t\t\t\t\t\t`\\n\\n${error.shortMessage}\\n${error.stderr}\\n\\n${\n\t\t\t\t\t\t\t\tlogSymbols.error\n\t\t\t\t\t\t\t} Dependency installation failed, try again with:\\n\\n ${chalk.gray(\n\t\t\t\t\t\t\t\t\"$\",\n\t\t\t\t\t\t\t)} ${chalk.cyan(tryAgainCommand)}`,\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\tprocess.exit(1);\n\t\t\t\t\t});\n\n\t\t\t\t\tthis.context.installProcess = execaProcess;\n\n\t\t\t\t\ttask.title = `Began core dependencies installation with ${chalk.cyan(\n\t\t\t\t\t\tthis.context.packageManager,\n\t\t\t\t\t)} ... (running in background)`;\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected async fetchUserProfile(): Promise<void> {\n\t\tthis.context.userProfile = await this.manager.user.getProfile();\n\n\t\tawait this.manager.telemetry.identify({\n\t\t\tuserID: this.context.userProfile.shortId,\n\t\t\tintercomHash: this.context.userProfile.intercomHash,\n\t\t});\n\t\tawait this.manager.telemetry.track({\n\t\t\tevent: \"command:init:identify\",\n\t\t\trepository: this.options.repository,\n\t\t});\n\t}\n\n\tprotected async fetchUserRepositories(): Promise<void> {\n\t\tthis.context.userRepositories =\n\t\t\tawait this.manager.prismicRepository.readAll();\n\t}\n\n\tprotected validateWriteAccess(): void {\n\t\tassertExists(\n\t\t\tthis.context.repository,\n\t\t\t\"Repository selection must be available through context to proceed\",\n\t\t);\n\t\tassertExists(\n\t\t\tthis.context.userRepositories,\n\t\t\t\"User repositories must be available through context to validate write access\",\n\t\t);\n\t\tconst { domain } = this.context.repository;\n\t\tconst maybeRepository = this.context.userRepositories.find(\n\t\t\t(repository) => repository.domain === domain,\n\t\t);\n\n\t\tif (maybeRepository) {\n\t\t\tif (!this.manager.prismicRepository.hasWriteAccess(maybeRepository)) {\n\t\t\t\tthrow new Error(\n\t\t\t\t\t`Cannot run init command with repository ${chalk.cyan(\n\t\t\t\t\t\tmaybeRepository.domain,\n\t\t\t\t\t)}: you are not a developer or admin of this repository`,\n\t\t\t\t);\n\t\t\t}\n\t\t} else {\n\t\t\tthrow new Error(\n\t\t\t\t`Cannot validate write access for repository ${chalk.cyan(\n\t\t\t\t\tdomain,\n\t\t\t\t)}: you are not part of this repository`,\n\t\t\t);\n\t\t}\n\t}\n\n\tprotected loginAndFetchUserData(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Logging in to Prismic...\",\n\t\t\t\ttask: async (_, parentTask) => {\n\t\t\t\t\tparentTask.output = \"Validating session...\";\n\t\t\t\t\tconst isLoggedIn = await this.manager.user.checkIsLoggedIn();\n\n\t\t\t\t\tif (!isLoggedIn) {\n\t\t\t\t\t\tparentTask.output = \"Press any key to open the browser to login...\";\n\t\t\t\t\t\tawait new Promise((resolve) => {\n\t\t\t\t\t\t\tconst initialRawMode = !!process.stdin.isRaw;\n\t\t\t\t\t\t\tprocess.stdin.setRawMode?.(true);\n\t\t\t\t\t\t\tprocess.stdin.resume();\n\t\t\t\t\t\t\tprocess.stdin.once(\"data\", (data: Buffer) => {\n\t\t\t\t\t\t\t\tprocess.stdin.setRawMode?.(initialRawMode);\n\t\t\t\t\t\t\t\tprocess.stdin.pause();\n\t\t\t\t\t\t\t\tresolve(data.toString(\"utf-8\"));\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\tparentTask.output = \"Browser opened, waiting for you to login...\";\n\t\t\t\t\t\tconst { port, url } = await this.manager.user.getLoginSessionInfo();\n\t\t\t\t\t\tawait this.manager.user.nodeLoginSession({\n\t\t\t\t\t\t\tport,\n\t\t\t\t\t\t\tonListenCallback() {\n\t\t\t\t\t\t\t\topen(url);\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\n\t\t\t\t\tparentTask.output = \"\";\n\t\t\t\t\tparentTask.title = `Logged in`;\n\n\t\t\t\t\treturn listr(\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\ttitle: \"Fetching user profile...\",\n\t\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\t\tawait this.fetchUserProfile();\n\t\t\t\t\t\t\t\t\tparentTask.title = `Logged in as ${chalk.cyan(\n\t\t\t\t\t\t\t\t\t\tthis.context.userProfile?.email,\n\t\t\t\t\t\t\t\t\t)}`;\n\t\t\t\t\t\t\t\t\ttask.title = \"Fetched user profile\";\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\ttitle: \"Fetching user repositories...\",\n\t\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\t\tawait this.fetchUserRepositories();\n\t\t\t\t\t\t\t\t\ttask.title = \"Fetched user repositories\";\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t],\n\t\t\t\t\t\t{ concurrent: true },\n\t\t\t\t\t);\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected useRepositoryFlag(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: `Flag ${chalk.cyan(\"repository\")} used, validating input...`,\n\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.options.repository,\n\t\t\t\t\t\t\"Flag `repository` must be set to run `useRepositoryFlag`\",\n\t\t\t\t\t);\n\t\t\t\t\tconst domain = formatRepositoryDomain(this.options.repository);\n\t\t\t\t\tconst validation = await validateRepositoryDomainAndAvailability({\n\t\t\t\t\t\tdomain,\n\t\t\t\t\t\texistsFn: (domain) =>\n\t\t\t\t\t\t\tthis.manager.prismicRepository.checkExists({ domain }),\n\t\t\t\t\t});\n\n\t\t\t\t\tif (validation.LessThan4 || validation.MoreThan30) {\n\t\t\t\t\t\tconst errorMessage = getErrorMessageForRepositoryDomainValidation({\n\t\t\t\t\t\t\tvalidation: {\n\t\t\t\t\t\t\t\t...validation,\n\t\t\t\t\t\t\t\t// We don't want to throw if repo already exists.\n\t\t\t\t\t\t\t\t// User most probably just created it via their dashboard.\n\t\t\t\t\t\t\t\tAlreadyExists: false,\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tdisplayDomain: chalk.cyan(domain),\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\tif (errorMessage) {\n\t\t\t\t\t\t\tthrow new Error(errorMessage);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\ttask.title = `Selected repository ${chalk.cyan(\n\t\t\t\t\t\tdomain,\n\t\t\t\t\t)} (flag ${chalk.cyan(\"repository\")} used)`;\n\n\t\t\t\t\tthis.context.repository = {\n\t\t\t\t\t\tdomain,\n\t\t\t\t\t\texists: validation.AlreadyExists ?? false,\n\t\t\t\t\t};\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected async selectRepository(): Promise<void> {\n\t\tassertExists(\n\t\t\tthis.context.userRepositories,\n\t\t\t\"User repositories must be available through context to run `selectRepository`\",\n\t\t);\n\n\t\tif (this.context.userRepositories.length) {\n\t\t\tawait this.trySelectExistingRepository();\n\t\t}\n\n\t\tif (!this.context.repository) {\n\t\t\tawait this.selectNewRepository();\n\t\t}\n\n\t\tassertExists(\n\t\t\tthis.context.repository,\n\t\t\t\"Repository selection must be available through context to proceed\",\n\t\t);\n\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t// eslint-disable-next-line no-console\n\t\tconsole.log(\n\t\t\t`${logSymbols.success} Selected repository ${chalk.cyan(\n\t\t\t\tthis.context.repository.domain,\n\t\t\t)}`,\n\t\t);\n\t}\n\n\tprotected async trySelectExistingRepository(): Promise<void> {\n\t\tassertExists(\n\t\t\tthis.context.userRepositories,\n\t\t\t\"User repositories must be available through context to run `trySelectExistingRepository`\",\n\t\t);\n\n\t\tconst { maybeDomain } = await prompt<string, \"maybeDomain\">({\n\t\t\ttype: \"select\",\n\t\t\tname: \"maybeDomain\",\n\t\t\tmessage: \"Pick a repository to connect to or choose to create a new one\",\n\t\t\twarn: \"You are not a developer or admin of this repository\",\n\t\t\tchoices: [\n\t\t\t\t{\n\t\t\t\t\ttitle: \"CREATE NEW\",\n\t\t\t\t\tdescription: \"Create a new Prismic repository\\n\",\n\t\t\t\t\tvalue: \"\",\n\t\t\t\t},\n\t\t\t\t...this.context.userRepositories\n\t\t\t\t\t.map((repository) => {\n\t\t\t\t\t\tconst hasWriteAccess =\n\t\t\t\t\t\t\tthis.manager.prismicRepository.hasWriteAccess(repository);\n\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\ttitle: `${repository.domain}${\n\t\t\t\t\t\t\t\thasWriteAccess ? \"\" : \" (Unauthorized)\"\n\t\t\t\t\t\t\t}`,\n\t\t\t\t\t\t\tdescription: `Connect to ${chalk.cyan(repository.domain)}`,\n\t\t\t\t\t\t\tvalue: repository.domain,\n\t\t\t\t\t\t\tdisabled: !hasWriteAccess,\n\t\t\t\t\t\t};\n\t\t\t\t\t})\n\t\t\t\t\t.sort((a, b) => (a.value > b.value ? 1 : -1)),\n\t\t\t],\n\t\t});\n\n\t\tif (maybeDomain) {\n\t\t\tthis.context.repository = {\n\t\t\t\tdomain: maybeDomain,\n\t\t\t\texists: true,\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected async selectNewRepository(): Promise<void> {\n\t\tlet suggestedName = \"\";\n\n\t\t// TODO: Improve concurrency\n\t\tconst trySuggestName = async (name: string): Promise<string | void> => {\n\t\t\tif (name) {\n\t\t\t\tconst formattedName = formatRepositoryDomain(name);\n\n\t\t\t\tif (\n\t\t\t\t\t!validateRepositoryDomain({ domain: formattedName }).hasErrors &&\n\t\t\t\t\t!(await this.manager.prismicRepository.checkExists({\n\t\t\t\t\t\tdomain: formattedName,\n\t\t\t\t\t}))\n\t\t\t\t) {\n\t\t\t\t\treturn formattedName;\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\n\t\t// 1. Try to suggest name after directory name\n\t\tconst maybeSuggestion = await trySuggestName(\n\t\t\tpath.basename(this.manager.cwd),\n\t\t);\n\t\tif (maybeSuggestion) {\n\t\t\tsuggestedName = maybeSuggestion;\n\t\t}\n\n\t\t// 2. Try to suggest name after package name\n\t\tif (!suggestedName) {\n\t\t\ttry {\n\t\t\t\tconst pkgJSONPath = path.join(this.manager.cwd, \"package.json\");\n\t\t\t\tconst pkg = JSON.parse(await fs.readFile(pkgJSONPath, \"utf-8\"));\n\n\t\t\t\tconst maybeSuggestion = await trySuggestName(pkg.name);\n\t\t\t\tif (maybeSuggestion) {\n\t\t\t\t\tsuggestedName = maybeSuggestion;\n\t\t\t\t}\n\t\t\t} catch {\n\t\t\t\t// Noop\n\t\t\t}\n\t\t}\n\n\t\t// 3. Use random name\n\t\tif (!suggestedName) {\n\t\t\tdo {\n\t\t\t\tsuggestedName = getRandomRepositoryDomain();\n\t\t\t} while (\n\t\t\t\tawait this.manager.prismicRepository.checkExists({\n\t\t\t\t\tdomain: suggestedName,\n\t\t\t\t})\n\t\t\t);\n\t\t}\n\n\t\tconst { domain } = await prompt<string, \"domain\">({\n\t\t\ttype: \"text\",\n\t\t\tname: \"domain\",\n\t\t\t// Overriden by the `onRender` function, just used as a fallback\n\t\t\tmessage: \"Choose a name for your Prismic repository\",\n\t\t\tinitial: suggestedName,\n\t\t\tonRender() {\n\t\t\t\tconst rawDomain = this.value || this.initial || \"\";\n\t\t\t\tconst domain = formatRepositoryDomain(rawDomain);\n\t\t\t\tconst validation = validateRepositoryDomain({ domain });\n\n\t\t\t\tconst minRule = validation.LessThan4\n\t\t\t\t\t? chalk.red(\n\t\t\t\t\t\t\t`1. Name must be ${chalk.bold(\"4 characters long or more\")}`,\n\t\t\t\t\t )\n\t\t\t\t\t: `1. Name must be ${chalk.cyan(\"4 characters long or more\")}`;\n\n\t\t\t\tconst maxRule = validation.MoreThan30\n\t\t\t\t\t? chalk.red(\n\t\t\t\t\t\t\t`1. Name must be ${chalk.bold(\"30 characters long or less\")}`,\n\t\t\t\t\t )\n\t\t\t\t\t: `1. Name must be ${chalk.cyan(\"30 characters long or less\")}`;\n\n\t\t\t\tthis.msg = chalk.reset(\n\t\t\t\t\t`\nChoose a name for your Prismic repository\n\n NAMING RULES\n ${minRule}\n ${maxRule}\n 3. Name will be ${chalk.cyan(\"kebab-cased\")} automatically\n\n CONSIDERATIONS\n 1. Once picked, your repository name ${chalk.cyan(\"cannot be changed\")}\n 2. A ${chalk.cyan(\n\t\t\t\"display name\",\n\t\t)} for the repository can be configured later on\n\n PREVIEW\n Dashboard ${chalk.cyan(`https://${domain}.prismic.io`)}\n API ${chalk.cyan(`https://${domain}.cdn.prismic.io/api/v2`)}\n\n${chalk.cyan(\"?\")} Your Prismic repository name`.replace(\"\\n\", \"\"),\n\t\t\t\t);\n\t\t\t},\n\t\t\tvalidate: async (rawDomain: string) => {\n\t\t\t\tconst domain = formatRepositoryDomain(rawDomain);\n\t\t\t\tconst validation = await validateRepositoryDomainAndAvailability({\n\t\t\t\t\tdomain,\n\t\t\t\t\texistsFn: (domain) =>\n\t\t\t\t\t\tthis.manager.prismicRepository.checkExists({ domain }),\n\t\t\t\t});\n\t\t\t\tconst errorMessage = getErrorMessageForRepositoryDomainValidation({\n\t\t\t\t\tvalidation,\n\t\t\t\t\tdisplayDomain: chalk.cyan(domain),\n\t\t\t\t});\n\n\t\t\t\treturn errorMessage || true;\n\t\t\t},\n\t\t\tformat: (value) => {\n\t\t\t\treturn formatRepositoryDomain(value);\n\t\t\t},\n\t\t});\n\n\t\t// Clear extra lines\n\t\tprocess.stdout.moveCursor?.(0, -16);\n\t\tprocess.stdout.clearScreenDown?.();\n\n\t\tthis.context.repository = {\n\t\t\tdomain,\n\t\t\texists: false,\n\t\t};\n\t}\n\n\tprotected createNewRepository(): Promise<void> {\n\t\tassertExists(\n\t\t\tthis.context.repository,\n\t\t\t\"Repository selection must be available through context to run `createNewRepository`\",\n\t\t);\n\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: `Creating new repository ${chalk.cyan(\n\t\t\t\t\tthis.context.repository.domain,\n\t\t\t\t)} ...`,\n\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.repository,\n\t\t\t\t\t\t\"Repository selection must be available through context to run `createNewRepository`\",\n\t\t\t\t\t);\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.framework,\n\t\t\t\t\t\t\"Project framework must be available through context to run `createNewRepository`\",\n\t\t\t\t\t);\n\n\t\t\t\t\tawait this.manager.prismicRepository.create({\n\t\t\t\t\t\tdomain: this.context.repository.domain,\n\t\t\t\t\t\tframework: this.context.framework.wroomTelemetryID,\n\t\t\t\t\t\tstarterId: this.context.starterId,\n\t\t\t\t\t});\n\n\t\t\t\t\tthis.context.repository.exists = true;\n\t\t\t\t\ttask.title = `Created new repository ${chalk.cyan(\n\t\t\t\t\t\tthis.context.repository.domain,\n\t\t\t\t\t)}`;\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected finishCoreDependenciesInstallation(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: `Finishing core dependencies installation with ${chalk.cyan(\n\t\t\t\t\tthis.context.packageManager,\n\t\t\t\t)} ...`,\n\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.installProcess,\n\t\t\t\t\t\t\"Initial dependencies installation process must be available through context to run `finishCoreDependenciesInstallation`\",\n\t\t\t\t\t);\n\n\t\t\t\t\tconst updateOutput = (data: Buffer | null) => {\n\t\t\t\t\t\tif (data instanceof Buffer) {\n\t\t\t\t\t\t\ttask.output = data.toString();\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t\t// Don't clutter console with logs when process is non TTY (CI, etc.)\n\t\t\t\t\tif (process.stdout.isTTY || process.env.NODE_ENV === \"test\") {\n\t\t\t\t\t\tthis.context.installProcess.stdout?.on(\"data\", updateOutput);\n\t\t\t\t\t}\n\t\t\t\t\tthis.context.installProcess.stderr?.on(\"data\", updateOutput);\n\n\t\t\t\t\ttry {\n\t\t\t\t\t\tawait this.context.installProcess;\n\t\t\t\t\t} catch (error) {\n\t\t\t\t\t\t/**\n\t\t\t\t\t\t * Error catching happens when then process is started ealier so\n\t\t\t\t\t\t * that all install errors, earlier and presents, can be catched.\n\t\t\t\t\t\t *\n\t\t\t\t\t\t * Here, we force the task to wait so that it is neither marked as\n\t\t\t\t\t\t * done or has the opportunity to handle the error itself.\n\t\t\t\t\t\t */\n\t\t\t\t\t\t// If for whatever reason the process is not exited by now, we still throw the error\n\t\t\t\t\t\tawait new Promise((resolve) => setTimeout(resolve, 5000));\n\t\t\t\t\t\tthrow error;\n\t\t\t\t\t}\n\n\t\t\t\t\ttask.title = `Installed core dependencies with ${chalk.cyan(\n\t\t\t\t\t\tthis.context.packageManager,\n\t\t\t\t\t)}`;\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected upsertSliceMachineConfigurationAndStartPluginRunner(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Resolving Slice Machine configuration...\",\n\t\t\t\ttask: async (_, parentTask) => {\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.framework,\n\t\t\t\t\t\t\"Project framework must be available through context to run `upsertSliceMachineConfiguration`\",\n\t\t\t\t\t);\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.repository,\n\t\t\t\t\t\t\"Repository selection must be available through context to run `upsertSliceMachineConfiguration`\",\n\t\t\t\t\t);\n\n\t\t\t\t\tlet sliceMachineConfigExists = false;\n\t\t\t\t\ttry {\n\t\t\t\t\t\tawait this.manager.project.getSliceMachineConfigPath();\n\t\t\t\t\t\tsliceMachineConfigExists = true;\n\t\t\t\t\t} catch {\n\t\t\t\t\t\t// noop, config does not exists, we'll create it\n\t\t\t\t\t}\n\n\t\t\t\t\tif (sliceMachineConfigExists) {\n\t\t\t\t\t\tparentTask.title = \"Updating Slice Machine configuration...\";\n\n\t\t\t\t\t\tconst config = await this.manager.project.getSliceMachineConfig();\n\t\t\t\t\t\tawait this.manager.project.writeSliceMachineConfig({\n\t\t\t\t\t\t\tconfig: {\n\t\t\t\t\t\t\t\t...config,\n\t\t\t\t\t\t\t\trepositoryName: this.context.repository.domain,\n\t\t\t\t\t\t\t\tadapter: this.context.framework.adapterName,\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t});\n\t\t\t\t\t\tparentTask.title = \"Updated Slice Machine configuration\";\n\t\t\t\t\t} else {\n\t\t\t\t\t\tparentTask.title = \"Creating Slice Machine configuration...\";\n\n\t\t\t\t\t\tconst sliceMachineConfigPath =\n\t\t\t\t\t\t\tawait this.manager.project.suggestSliceMachineConfigPath();\n\n\t\t\t\t\t\tawait this.manager.project.writeSliceMachineConfig({\n\t\t\t\t\t\t\tconfig: {\n\t\t\t\t\t\t\t\trepositoryName: this.context.repository.domain,\n\t\t\t\t\t\t\t\tadapter: this.context.framework.adapterName,\n\t\t\t\t\t\t\t\tlibraries: [\"./slices\"],\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tpath: sliceMachineConfigPath,\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\tparentTask.title = \"Created Slice Machine configuration\";\n\t\t\t\t\t}\n\n\t\t\t\t\treturn listr([\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t// TODO: Revert when plugin are introduced to users\n\t\t\t\t\t\t\t// title: \"Starting plugin runner...\",\n\t\t\t\t\t\t\ttitle: \"Loading adapter...\",\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tawait this.manager.plugins.initPlugins();\n\t\t\t\t\t\t\t\t// TODO: Revert when plugin are introduced to users\n\t\t\t\t\t\t\t\t// task.title = \"Started plugin runner\";\n\t\t\t\t\t\t\t\ttask.title = \"Loaded adapter\";\n\t\t\t\t\t\t\t\t// TODO: Revert when plugin are introduced to users\n\t\t\t\t\t\t\t\t// parentTask.title = `${parentTask.title} and started plugin runner`;\n\t\t\t\t\t\t\t\tparentTask.title = `${parentTask.title} and loaded adapter`;\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t]);\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected async readAllSlices(): Promise<\n\t\t{ libraryID: string; sliceID: string }[]\n\t> {\n\t\tconst { libraries, errors } =\n\t\t\tawait this.manager.slices.readAllSliceLibraries();\n\n\t\tif (errors.length > 0) {\n\t\t\t// TODO: Provide better error message.\n\t\t\tthrow new Error(`Failed to read slice libraries: ${errors.join(\", \")}`);\n\t\t}\n\n\t\tconst slices: { libraryID: string; sliceID: string }[] = [];\n\t\tfor (const library of libraries) {\n\t\t\tif (library.sliceIDs) {\n\t\t\t\tfor (const sliceID of library.sliceIDs) {\n\t\t\t\t\tslices.push({\n\t\t\t\t\t\tlibraryID: library.libraryID,\n\t\t\t\t\t\tsliceID,\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn slices;\n\t}\n\n\tprotected async readDocuments(): Promise<\n\t\t| {\n\t\t\t\tsignature: string;\n\t\t\t\tdocuments: string[];\n\t\t\t\tdirectoryPath: string;\n\t\t }\n\t\t| undefined\n\t> {\n\t\tconst root = await this.manager.project.getRoot();\n\t\tconst documentsDirectoryPath = path.resolve(root, \"documents\");\n\t\ttry {\n\t\t\tawait fs.access(documentsDirectoryPath);\n\t\t} catch {\n\t\t\treturn;\n\t\t}\n\t\tconst signaturePath = path.resolve(documentsDirectoryPath, \"index.json\");\n\t\tconst rawSignature = await fs.readFile(signaturePath, \"utf-8\");\n\t\tconst signature: string = JSON.parse(rawSignature).signature;\n\n\t\tconst documents = await globby(\"*/*.json\", {\n\t\t\tcwd: documentsDirectoryPath,\n\t\t});\n\n\t\treturn { signature, documents, directoryPath: documentsDirectoryPath };\n\t}\n\n\tprotected syncDataWithPrismic(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Syncing data with Prismic...\",\n\t\t\t\ttask: (_, parentTask) =>\n\t\t\t\t\tlistr([\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Pushing slices...\",\n\t\t\t\t\t\t\tskip: () => {\n\t\t\t\t\t\t\t\tif (!this.options.push) {\n\t\t\t\t\t\t\t\t\treturn `--no-push used`;\n\t\t\t\t\t\t\t\t} else if (!this.options.pushSlices) {\n\t\t\t\t\t\t\t\t\treturn `--no-push-slices used`;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tconst slices = await this.readAllSlices();\n\n\t\t\t\t\t\t\t\tif (slices.length === 0) {\n\t\t\t\t\t\t\t\t\ttask.skip(\"No slice to push\");\n\n\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\ttask.title = \"Pushing slices... (initializing ACL)\";\n\t\t\t\t\t\t\t\tawait this.manager.screenshots.initS3ACL();\n\n\t\t\t\t\t\t\t\tlet pushed = 0;\n\t\t\t\t\t\t\t\ttask.title = `Pushing slices... (0/${slices.length})`;\n\t\t\t\t\t\t\t\tawait Promise.all(\n\t\t\t\t\t\t\t\t\tslices.map(async (slice) => {\n\t\t\t\t\t\t\t\t\t\tawait this.manager.slices.pushSlice({\n\t\t\t\t\t\t\t\t\t\t\t...slice,\n\t\t\t\t\t\t\t\t\t\t\tuserAgent: SLICE_MACHINE_INIT_USER_AGENT,\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\tpushed++;\n\t\t\t\t\t\t\t\t\t\ttask.title = `Pushing slices... (${pushed}/${slices.length})`;\n\t\t\t\t\t\t\t\t\t}),\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\ttask.title = \"Pushed all slices\";\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Pushing types...\",\n\t\t\t\t\t\t\tskip: () => {\n\t\t\t\t\t\t\t\tif (!this.options.push) {\n\t\t\t\t\t\t\t\t\treturn `--no-push used`;\n\t\t\t\t\t\t\t\t} else if (!this.options.pushCustomTypes) {\n\t\t\t\t\t\t\t\t\treturn `--no-push-custom-types used`;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tconst { ids, errors } =\n\t\t\t\t\t\t\t\t\tawait this.manager.customTypes.readCustomTypeLibrary();\n\n\t\t\t\t\t\t\t\tif (errors.length > 0) {\n\t\t\t\t\t\t\t\t\t// TODO: Provide better error message.\n\t\t\t\t\t\t\t\t\tthrow new Error(\n\t\t\t\t\t\t\t\t\t\t`Failed to read custom type libraries: ${errors.join(\n\t\t\t\t\t\t\t\t\t\t\t\", \",\n\t\t\t\t\t\t\t\t\t\t)}`,\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tif (!ids || ids.length === 0) {\n\t\t\t\t\t\t\t\t\ttask.skip(\"No custom type to push\");\n\n\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tlet pushed = 0;\n\t\t\t\t\t\t\t\ttask.title = `Pushing types... (0/${ids.length})`;\n\t\t\t\t\t\t\t\tawait Promise.all(\n\t\t\t\t\t\t\t\t\tids.map(async (id) => {\n\t\t\t\t\t\t\t\t\t\tawait this.manager.customTypes.pushCustomType({\n\t\t\t\t\t\t\t\t\t\t\tid,\n\t\t\t\t\t\t\t\t\t\t\tuserAgent: SLICE_MACHINE_INIT_USER_AGENT,\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\tpushed++;\n\t\t\t\t\t\t\t\t\t\ttask.title = `Pushing types... (${pushed}/${ids.length})`;\n\t\t\t\t\t\t\t\t\t}),\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\ttask.title = \"Pushed all types\";\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Pushing documents...\",\n\t\t\t\t\t\t\tskip: () => {\n\t\t\t\t\t\t\t\tif (!this.options.push) {\n\t\t\t\t\t\t\t\t\treturn `--no-push used`;\n\t\t\t\t\t\t\t\t} else if (!this.options.pushDocuments) {\n\t\t\t\t\t\t\t\t\treturn `--no-push-documents used`;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tassertExists(\n\t\t\t\t\t\t\t\t\tthis.context.repository,\n\t\t\t\t\t\t\t\t\t\"Repository selection must be available through context to run `syncDataWithPrismic`\",\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tconst documentsRead = await this.readDocuments();\n\n\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\tdocumentsRead === undefined ||\n\t\t\t\t\t\t\t\t\t\tdocumentsRead.documents.length === 0\n\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\ttask.skip(\"No document to push\");\n\n\t\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tconst { signature, documents, directoryPath } = documentsRead;\n\n\t\t\t\t\t\t\t\t\t// TODO: Replace `unknown` with a Prismic document type.\n\t\t\t\t\t\t\t\t\t// The exact format is not know at this time, hence the `unknown`.\n\t\t\t\t\t\t\t\t\tconst recordDocument: Record<string, unknown> = {};\n\n\t\t\t\t\t\t\t\t\tawait Promise.all(\n\t\t\t\t\t\t\t\t\t\tdocuments.map(async (documentPath) => {\n\t\t\t\t\t\t\t\t\t\t\tconst filename = path.basename(documentPath, \".json\");\n\t\t\t\t\t\t\t\t\t\t\tconst fileContent = await fs.readFile(\n\t\t\t\t\t\t\t\t\t\t\t\tpath.resolve(directoryPath, documentPath),\n\t\t\t\t\t\t\t\t\t\t\t\t\"utf-8\",\n\t\t\t\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\t\t\t\t// TOOD: Validate the contents of the JSON file and skip on invalid documents.\n\t\t\t\t\t\t\t\t\t\t\t\tconst parsedContents = JSON.parse(fileContent);\n\n\t\t\t\t\t\t\t\t\t\t\t\trecordDocument[filename] = parsedContents;\n\t\t\t\t\t\t\t\t\t\t\t} catch {\n\t\t\t\t\t\t\t\t\t\t\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t\t\t\t\t\t\t\t\t\t\t// eslint-disable-next-line no-console\n\t\t\t\t\t\t\t\t\t\t\t\tconsole.log(\n\t\t\t\t\t\t\t\t\t\t\t\t\t`Skipped document due to its invalid format: ${documentPath}`,\n\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}),\n\t\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t\tawait this.manager.prismicRepository.pushDocuments({\n\t\t\t\t\t\t\t\t\t\tdomain: this.context.repository.domain,\n\t\t\t\t\t\t\t\t\t\tdocuments: recordDocument,\n\t\t\t\t\t\t\t\t\t\tsignature,\n\t\t\t\t\t\t\t\t\t});\n\n\t\t\t\t\t\t\t\t\ttask.title = \"Pushed all documents\";\n\t\t\t\t\t\t\t\t} catch {\n\t\t\t\t\t\t\t\t\ttask.skip(\"No document to push\");\n\n\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Cleaning up data push artifacts\",\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tconst root = await this.manager.project.getRoot();\n\t\t\t\t\t\t\t\tconst documentsDirectoryPath = path.resolve(root, \"documents\");\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tawait fs.rm(documentsDirectoryPath, {\n\t\t\t\t\t\t\t\t\t\tforce: true,\n\t\t\t\t\t\t\t\t\t\trecursive: true,\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t} catch {\n\t\t\t\t\t\t\t\t\t// Noop, it's not that big of a deal if we cannot delete this directory\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\ttask.title = \"Cleaned up data push artifacts\";\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Pulling existing types...\",\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tconst { ids, errors } =\n\t\t\t\t\t\t\t\t\tawait this.manager.customTypes.readCustomTypeLibrary();\n\n\t\t\t\t\t\t\t\tif (errors.length > 0) {\n\t\t\t\t\t\t\t\t\t// TODO: Provide better error message.\n\t\t\t\t\t\t\t\t\tthrow new Error(\n\t\t\t\t\t\t\t\t\t\t`Failed to read custom type libraries: ${errors.join(\n\t\t\t\t\t\t\t\t\t\t\t\", \",\n\t\t\t\t\t\t\t\t\t\t)}`,\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tif (ids && ids.length > 0) {\n\t\t\t\t\t\t\t\t\ttask.skip(\"Types already exists\");\n\t\t\t\t\t\t\t\t\tparentTask.title = \"Synced data with Prismic\";\n\n\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tconst remoteTypes =\n\t\t\t\t\t\t\t\t\tawait this.manager.customTypes.fetchRemoteCustomTypes();\n\n\t\t\t\t\t\t\t\tawait Promise.all(\n\t\t\t\t\t\t\t\t\tremoteTypes.map(async (model) => {\n\t\t\t\t\t\t\t\t\t\tawait this.manager.customTypes.createCustomType({ model });\n\t\t\t\t\t\t\t\t\t}),\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\ttask.title = \"Pulled existing types\";\n\t\t\t\t\t\t\t\tparentTask.title = \"Synced data with Prismic\";\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t]),\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected initializeProject(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Initializing project...\",\n\t\t\t\ttask: async (_, parentTask) =>\n\t\t\t\t\t// We return another Listr instance in the event we have additional task to perform to initialize the project\n\t\t\t\t\tlistr([\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: `Patching ${chalk.cyan(\"package.json\")} scripts...`,\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tconst pkgPath = path.join(this.manager.cwd, \"package.json\");\n\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tconst pkgRaw = await fs.readFile(pkgPath, \"utf-8\");\n\t\t\t\t\t\t\t\t\tconst pkg = JSON.parse(pkgRaw);\n\n\t\t\t\t\t\t\t\t\tpkg.scripts ||= {};\n\n\t\t\t\t\t\t\t\t\tif (!pkg.scripts[START_SCRIPT_KEY]) {\n\t\t\t\t\t\t\t\t\t\tpkg.scripts[START_SCRIPT_KEY] = START_SCRIPT_VALUE;\n\n\t\t\t\t\t\t\t\t\t\t// Cheap indent detection based on https://github.com/sindresorhus/detect-indent (simplified because we're only dealing with JSON here)\n\t\t\t\t\t\t\t\t\t\tconst firstIndent = pkgRaw\n\t\t\t\t\t\t\t\t\t\t\t.split(\"\\n\")\n\t\t\t\t\t\t\t\t\t\t\t.find((line) => line.match(/^(?:( )+|\\t+)/));\n\t\t\t\t\t\t\t\t\t\tconst indent = firstIndent?.match(/^(?:( )+|\\t+)/)?.[0];\n\n\t\t\t\t\t\t\t\t\t\tawait fs.writeFile(\n\t\t\t\t\t\t\t\t\t\t\tpkgPath,\n\t\t\t\t\t\t\t\t\t\t\tJSON.stringify(\n\t\t\t\t\t\t\t\t\t\t\t\tpkg,\n\t\t\t\t\t\t\t\t\t\t\t\tnull,\n\t\t\t\t\t\t\t\t\t\t\t\tindent && indent !== \" \" ? indent : \" \",\n\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t} else if (\n\t\t\t\t\t\t\t\t\t\t!pkg.scripts[\"slicemachine\"].startsWith(START_SCRIPT_VALUE)\n\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\tthrow new Error(\"Script already exists\");\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t} catch (error) {\n\t\t\t\t\t\t\t\t\ttask.title = `Could not patch ${chalk.cyan(\n\t\t\t\t\t\t\t\t\t\t\"package.json\",\n\t\t\t\t\t\t\t\t\t)} scripts (warning)`;\n\t\t\t\t\t\t\t\t\tparentTask.title = `Initialized project (could not patch ${chalk.cyan(\n\t\t\t\t\t\t\t\t\t\t\"package.json\",\n\t\t\t\t\t\t\t\t\t)} scripts)`;\n\n\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tthis.context.projectInitialization ||= {};\n\t\t\t\t\t\t\t\tthis.context.projectInitialization.patchedScript = true;\n\n\t\t\t\t\t\t\t\ttask.title = `Patched ${chalk.cyan(\"package.json\")} scripts`;\n\t\t\t\t\t\t\t\tparentTask.title = `Initialized project (patched ${chalk.cyan(\n\t\t\t\t\t\t\t\t\t\"package.json\",\n\t\t\t\t\t\t\t\t)} scripts)`;\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t]),\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected initializePlugins(): Promise<void> {\n\t\treturn listrRun(\n\t\t\t[\n\t\t\t\t{\n\t\t\t\t\t// TODO: Revert when plugin are introduced to users\n\t\t\t\t\t// title: \"Initializing plugins...\",\n\t\t\t\t\ttitle: \"Initializing adapter...\",\n\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\tconst updateOutput = (data: Buffer | string | null) => {\n\t\t\t\t\t\t\tif (data instanceof Buffer) {\n\t\t\t\t\t\t\t\ttask.output = data.toString();\n\t\t\t\t\t\t\t} else if (typeof data === \"string\") {\n\t\t\t\t\t\t\t\ttask.output = data;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t};\n\n\t\t\t\t\t\tawait this.manager.project.initProject({\n\t\t\t\t\t\t\tlog: updateOutput,\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\t// TODO: Revert when plugin are introduced to users\n\t\t\t\t\t\t// task.title = \"Initialized plugins\";\n\t\t\t\t\t\ttask.title = \"Initialized adapter\";\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t],\n\t\t\t{ exitOnError: false },\n\t\t).catch(() => void 0);\n\t}\n}\n"],"names":["createSliceMachineManager","pkg","assertExists","getRunScriptCommand","getExecuteCommand","prompt","path","fs","execaCommand","listrRun","downloadTemplate","GIGET_PROVIDER","GIGET_ORGANIZATION","getRandomRepositoryDomain","listr","_","detectFramework","detectStarterId","_b","_a","formatRepositoryDomain","validateRepositoryDomainAndAvailability","domain","getErrorMessageForRepositoryDomainValidation","validateRepositoryDomain","maybeSuggestion","globby","SLICE_MACHINE_INIT_USER_AGENT","START_SCRIPT_KEY","START_SCRIPT_VALUE"],"mappings":"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"}
|
|
@@ -60,7 +60,7 @@ export declare class SliceMachineInitProcess {
|
|
|
60
60
|
documents: string[];
|
|
61
61
|
directoryPath: string;
|
|
62
62
|
} | undefined>;
|
|
63
|
-
protected
|
|
63
|
+
protected syncDataWithPrismic(): Promise<void>;
|
|
64
64
|
protected initializeProject(): Promise<void>;
|
|
65
65
|
protected initializePlugins(): Promise<void>;
|
|
66
66
|
}
|
|
@@ -100,7 +100,7 @@ ${chalk.bgGray(` ${chalk.bold.white("Slice Machine")} `)} ${chalk.dim("→")} In
|
|
|
100
100
|
if (!this.context.repository.exists) {
|
|
101
101
|
await this.createNewRepository();
|
|
102
102
|
}
|
|
103
|
-
await this.
|
|
103
|
+
await this.syncDataWithPrismic();
|
|
104
104
|
await this.initializeProject();
|
|
105
105
|
await this.initializePlugins();
|
|
106
106
|
} catch (error) {
|
|
@@ -202,6 +202,9 @@ ${chalk.bgGreen(` ${chalk.bold.white("Slice Machine")} `)} ${chalk.dim("→")} I
|
|
|
202
202
|
if (slices.length > 0 || ctLibrary.ids.length > 0 || documentsGlob !== void 0 && documentsGlob.documents.length > 0) {
|
|
203
203
|
return true;
|
|
204
204
|
}
|
|
205
|
+
if (ctLibrary.ids.length === 0) {
|
|
206
|
+
return true;
|
|
207
|
+
}
|
|
205
208
|
} catch (e) {
|
|
206
209
|
return true;
|
|
207
210
|
}
|
|
@@ -706,10 +709,10 @@ ${chalk.cyan("?")} Your Prismic repository name`.replace("\n", ""));
|
|
|
706
709
|
});
|
|
707
710
|
return { signature, documents, directoryPath: documentsDirectoryPath };
|
|
708
711
|
}
|
|
709
|
-
|
|
712
|
+
syncDataWithPrismic() {
|
|
710
713
|
return listrRun([
|
|
711
714
|
{
|
|
712
|
-
title: "
|
|
715
|
+
title: "Syncing data with Prismic...",
|
|
713
716
|
task: (_, parentTask) => listr([
|
|
714
717
|
{
|
|
715
718
|
title: "Pushing slices...",
|
|
@@ -782,11 +785,10 @@ ${chalk.cyan("?")} Your Prismic repository name`.replace("\n", ""));
|
|
|
782
785
|
}
|
|
783
786
|
},
|
|
784
787
|
task: async (_2, task) => {
|
|
785
|
-
assertExists(this.context.repository, "Repository selection must be available through context to run `
|
|
788
|
+
assertExists(this.context.repository, "Repository selection must be available through context to run `syncDataWithPrismic`");
|
|
786
789
|
try {
|
|
787
790
|
const documentsRead = await this.readDocuments();
|
|
788
791
|
if (documentsRead === void 0 || documentsRead.documents.length === 0) {
|
|
789
|
-
parentTask.title = "Pushed data to Prismic";
|
|
790
792
|
task.skip("No document to push");
|
|
791
793
|
return;
|
|
792
794
|
}
|
|
@@ -808,9 +810,7 @@ ${chalk.cyan("?")} Your Prismic repository name`.replace("\n", ""));
|
|
|
808
810
|
signature
|
|
809
811
|
});
|
|
810
812
|
task.title = "Pushed all documents";
|
|
811
|
-
parentTask.title = "Pushed data to Prismic";
|
|
812
813
|
} catch {
|
|
813
|
-
parentTask.title = "Pushed data to Prismic";
|
|
814
814
|
task.skip("No document to push");
|
|
815
815
|
return;
|
|
816
816
|
}
|
|
@@ -829,7 +829,26 @@ ${chalk.cyan("?")} Your Prismic repository name`.replace("\n", ""));
|
|
|
829
829
|
} catch {
|
|
830
830
|
}
|
|
831
831
|
task.title = "Cleaned up data push artifacts";
|
|
832
|
-
|
|
832
|
+
}
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
title: "Pulling existing types...",
|
|
836
|
+
task: async (_2, task) => {
|
|
837
|
+
const { ids, errors } = await this.manager.customTypes.readCustomTypeLibrary();
|
|
838
|
+
if (errors.length > 0) {
|
|
839
|
+
throw new Error(`Failed to read custom type libraries: ${errors.join(", ")}`);
|
|
840
|
+
}
|
|
841
|
+
if (ids && ids.length > 0) {
|
|
842
|
+
task.skip("Types already exists");
|
|
843
|
+
parentTask.title = "Synced data with Prismic";
|
|
844
|
+
return;
|
|
845
|
+
}
|
|
846
|
+
const remoteTypes = await this.manager.customTypes.fetchRemoteCustomTypes();
|
|
847
|
+
await Promise.all(remoteTypes.map(async (model) => {
|
|
848
|
+
await this.manager.customTypes.createCustomType({ model });
|
|
849
|
+
}));
|
|
850
|
+
task.title = "Pulled existing types";
|
|
851
|
+
parentTask.title = "Synced data with Prismic";
|
|
833
852
|
}
|
|
834
853
|
}
|
|
835
854
|
])
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SliceMachineInitProcess.js","sources":["../../src/SliceMachineInitProcess.ts"],"sourcesContent":["import * as fs from \"node:fs/promises\";\nimport * as path from \"node:path\";\n\nimport chalk from \"chalk\";\n\nimport { execaCommand, type ExecaChildProcess } from \"execa\";\n\nimport open from \"open\";\nimport logSymbols from \"log-symbols\";\nimport { globby } from \"globby\";\nimport { downloadTemplate } from \"giget\";\n\nimport {\n\tcreateSliceMachineManager,\n\tPrismicUserProfile,\n\tPrismicRepository,\n\tSliceMachineManager,\n\tPackageManager,\n\tStarterId,\n} from \"@slicemachine/manager\";\n\nimport pkg from \"../package.json\";\nimport { detectFramework, Framework } from \"./lib/framework\";\nimport { getRunScriptCommand } from \"./lib/getRunScriptCommand\";\nimport { getExecuteCommand } from \"./lib/getExecuteCommand\";\nimport {\n\tgetRandomRepositoryDomain,\n\tformatRepositoryDomain,\n\tvalidateRepositoryDomain,\n\tvalidateRepositoryDomainAndAvailability,\n\tgetErrorMessageForRepositoryDomainValidation,\n} from \"./lib/repositoryDomain\";\nimport { listr, listrRun } from \"./lib/listr\";\nimport { prompt } from \"./lib/prompt\";\nimport { assertExists } from \"./lib/assertExists\";\nimport {\n\tGIGET_ORGANIZATION,\n\tGIGET_PROVIDER,\n\tSLICE_MACHINE_INIT_USER_AGENT,\n\tSTART_SCRIPT_KEY,\n\tSTART_SCRIPT_VALUE,\n} from \"./constants\";\nimport { detectStarterId } from \"./lib/starters\";\n\nexport type SliceMachineInitProcessOptions = {\n\trepository?: string;\n\tstarter?: string;\n\tdirectoryName?: string;\n\tpush?: boolean;\n\tpushSlices?: boolean;\n\tpushCustomTypes?: boolean;\n\tpushDocuments?: boolean;\n\tstartSlicemachine?: boolean;\n\tcwd?: string;\n} & Record<string, unknown>;\n\nconst DEFAULT_OPTIONS: SliceMachineInitProcessOptions = {\n\tpush: true,\n\tpushSlices: true,\n\tpushCustomTypes: true,\n\tpushDocuments: true,\n\tstartSlicemachine: true,\n};\n\nexport const createSliceMachineInitProcess = (\n\toptions?: SliceMachineInitProcessOptions,\n): SliceMachineInitProcess => {\n\treturn new SliceMachineInitProcess(options);\n};\n\ntype SliceMachineInitProcessContext = {\n\tframework?: Framework;\n\tpackageManager?: PackageManager;\n\tinstallProcess?: ExecaChildProcess;\n\tuserProfile?: PrismicUserProfile;\n\tuserRepositories?: PrismicRepository[];\n\trepository?: {\n\t\tdomain: string;\n\t\texists: boolean;\n\t};\n\tprojectInitialization?: {\n\t\tpatchedScript?: boolean;\n\t};\n\tstarterId?: StarterId;\n};\n\nexport class SliceMachineInitProcess {\n\tprotected options: SliceMachineInitProcessOptions;\n\tprotected manager: SliceMachineManager;\n\n\tprotected context: SliceMachineInitProcessContext;\n\n\tconstructor(options?: SliceMachineInitProcessOptions) {\n\t\tthis.options = { ...DEFAULT_OPTIONS, ...options };\n\t\tthis.manager = createSliceMachineManager({ cwd: options?.cwd });\n\n\t\tthis.context = {};\n\t}\n\n\tasync run(): Promise<void> {\n\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t// eslint-disable-next-line no-console\n\t\tconsole.log(\n\t\t\t`\\n${chalk.bgGray(` ${chalk.bold.white(\"Slice Machine\")} `)} ${chalk.dim(\n\t\t\t\t\"→\",\n\t\t\t)} Initializing\\n`,\n\t\t);\n\n\t\ttry {\n\t\t\tif (this.options.starter) {\n\t\t\t\tawait this.copyStarter();\n\t\t\t} else if (this.options.directoryName) {\n\t\t\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t\t\t// eslint-disable-next-line no-console\n\t\t\t\tconsole.log(\n\t\t\t\t\t`${logSymbols.warning} --directory-name has no effect because --starter is not specified\\n`,\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tif (await this.manager.telemetry.checkIsTelemetryEnabled()) {\n\t\t\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t\t\t// eslint-disable-next-line no-console\n\t\t\t\tconsole.log(\n\t\t\t\t\t`${\n\t\t\t\t\t\tlogSymbols.info\n\t\t\t\t\t} We collect telemetry data to improve user experience.\\n Learn more: ${chalk.cyan(\n\t\t\t\t\t\t\"https://prismic.dev/slice-machine/telemetry\",\n\t\t\t\t\t)}\\n`,\n\t\t\t\t);\n\t\t\t}\n\t\t\tawait this.manager.telemetry.initTelemetry({\n\t\t\t\tappName: pkg.name,\n\t\t\t\tappVersion: pkg.version,\n\t\t\t});\n\t\t\tawait this.manager.telemetry.track({\n\t\t\t\tevent: \"command:init:start\",\n\t\t\t\trepository: this.options.repository,\n\t\t\t});\n\n\t\t\tawait this.detectEnvironment();\n\n\t\t\tassertExists(\n\t\t\t\tthis.context.framework,\n\t\t\t\t\"Project framework must be available through context to proceed\",\n\t\t\t);\n\n\t\t\tawait this.beginCoreDependenciesInstallation();\n\n\t\t\tif (this.options.repository) {\n\t\t\t\tawait this.useRepositoryFlag();\n\t\t\t} else {\n\t\t\t\tawait this.loginAndFetchUserData();\n\t\t\t\tawait this.selectRepository();\n\t\t\t}\n\n\t\t\tassertExists(\n\t\t\t\tthis.context.repository,\n\t\t\t\t\"Repository selection must be available through context to proceed\",\n\t\t\t);\n\n\t\t\tawait this.finishCoreDependenciesInstallation();\n\t\t\tawait this.upsertSliceMachineConfigurationAndStartPluginRunner();\n\n\t\t\tconst isLoginRequired = await this.checkIsLoginRequired();\n\t\t\tif (isLoginRequired) {\n\t\t\t\tawait this.loginAndFetchUserData();\n\t\t\t\tif (this.context.repository.exists) {\n\t\t\t\t\tthis.validateWriteAccess();\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (!this.context.repository.exists) {\n\t\t\t\tawait this.createNewRepository();\n\t\t\t}\n\n\t\t\tawait this.pushDataToPrismic();\n\t\t\tawait this.initializeProject();\n\t\t\tawait this.initializePlugins();\n\t\t} catch (error) {\n\t\t\tawait this.trackError(error);\n\n\t\t\tthrow error;\n\t\t}\n\n\t\tawait this.manager.telemetry.track({\n\t\t\tevent: \"command:init:end\",\n\t\t\tframework: this.context.framework.sliceMachineTelemetryID,\n\t\t\trepository: this.context.repository.domain,\n\t\t\tsuccess: true,\n\t\t});\n\n\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t// eslint-disable-next-line no-console\n\t\tconsole.log(\n\t\t\t`\\n${chalk.bgGreen(` ${chalk.bold.white(\"Slice Machine\")} `)} ${chalk.dim(\n\t\t\t\t\"→\",\n\t\t\t)} Initialization successful!`,\n\t\t);\n\n\t\ttry {\n\t\t\tconst runSmCommand = this.context.projectInitialization?.patchedScript\n\t\t\t\t? await getRunScriptCommand({\n\t\t\t\t\t\tagent: this.context.packageManager || \"npm\",\n\t\t\t\t\t\tscript: \"slicemachine\",\n\t\t\t\t })\n\t\t\t\t: await getExecuteCommand({\n\t\t\t\t\t\tagent: this.context.packageManager || \"npm\",\n\t\t\t\t\t\tscript: \"start-slicemachine\",\n\t\t\t\t });\n\n\t\t\tconst runProjectCommand = await getRunScriptCommand({\n\t\t\t\tagent: this.context.packageManager || \"npm\",\n\t\t\t\tscript: \"dev\",\n\t\t\t});\n\n\t\t\tconst apiEndpoints = this.manager.getAPIEndpoints();\n\t\t\tconst wroomHost = new URL(apiEndpoints.PrismicWroom).host;\n\n\t\t\tconst dashboardURL = new URL(\n\t\t\t\t`https://${this.context.repository.domain}.${wroomHost}`,\n\t\t\t)\n\t\t\t\t.toString()\n\t\t\t\t.replace(/\\/$/, \"\");\n\t\t\tconst apiURL = new URL(\n\t\t\t\t\"./api/v2\",\n\t\t\t\t`https://${this.context.repository.domain}.cdn.${wroomHost}`,\n\t\t\t).toString();\n\n\t\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t\t// eslint-disable-next-line no-console\n\t\t\tconsole.log(`\n YOUR REPOSITORY\n Page Builder ${chalk.cyan(dashboardURL)}\n API ${chalk.cyan(apiURL)}\n\n RESOURCES\n Documentation ${chalk.cyan(\n\t\t\tthis.context.framework.prismicDocumentation,\n\t\t)}\n Getting help ${chalk.cyan(\"https://community.prismic.io\")}\n\n GETTING STARTED\n Run Slice Machine ${chalk.cyan(runSmCommand)}\n Run your project ${chalk.cyan(runProjectCommand)}\n\t`);\n\n\t\t\tif (this.options.starter && this.options.repository) {\n\t\t\t\tconst { openDashboard } = await prompt<boolean, \"openDashboard\">({\n\t\t\t\t\ttype: \"confirm\",\n\t\t\t\t\tname: \"openDashboard\",\n\t\t\t\t\tmessage: \"Would you like to open your repository?\",\n\t\t\t\t\tinitial: true,\n\t\t\t\t});\n\n\t\t\t\tif (openDashboard) {\n\t\t\t\t\topen(dashboardURL);\n\t\t\t\t}\n\t\t\t} else if (this.options.startSlicemachine) {\n\t\t\t\tconst pkgJSONPath = path.join(this.manager.cwd, \"package.json\");\n\t\t\t\tconst pkg = JSON.parse(await fs.readFile(pkgJSONPath, \"utf-8\"));\n\t\t\t\tconst scripts = pkg.scripts || {};\n\n\t\t\t\tconst finalSmCommand = (() => {\n\t\t\t\t\tif (\n\t\t\t\t\t\tscripts[\"dev\"] &&\n\t\t\t\t\t\ttypeof scripts[\"dev\"] === \"string\" &&\n\t\t\t\t\t\tscripts[\"dev\"].includes(\":slicemachine\")\n\t\t\t\t\t) {\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\tcommand: runProjectCommand,\n\t\t\t\t\t\t\tmessage: `Would you like to run your project and Slice Machine concurrently (${runProjectCommand})?`,\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\n\t\t\t\t\treturn {\n\t\t\t\t\t\tcommand: runSmCommand,\n\t\t\t\t\t\tmessage: `Would you like to run Slice Machine (${runSmCommand})?`,\n\t\t\t\t\t};\n\t\t\t\t})();\n\t\t\t\tconst { startSlicemachine } = await prompt<\n\t\t\t\t\tboolean,\n\t\t\t\t\t\"startSlicemachine\"\n\t\t\t\t>({\n\t\t\t\t\ttype: \"confirm\",\n\t\t\t\t\tname: \"startSlicemachine\",\n\t\t\t\t\tmessage: finalSmCommand.message,\n\t\t\t\t\tinitial: true,\n\t\t\t\t});\n\n\t\t\t\tif (startSlicemachine) {\n\t\t\t\t\tconst commandReturnValue = await execaCommand(\n\t\t\t\t\t\tfinalSmCommand.command,\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tenv: { FORCE_COLOR: \"true\" },\n\t\t\t\t\t\t},\n\t\t\t\t\t).pipeStdout?.(process.stdout);\n\t\t\t\t\tif (commandReturnValue !== undefined) {\n\t\t\t\t\t\t// eslint-disable-next-line no-console\n\t\t\t\t\t\tconsole.log(commandReturnValue.stdout);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t} catch {\n\t\t\t// Noop, it's only the final convenience messsage\n\t\t}\n\t}\n\n\tprotected async checkIsLoginRequired(): Promise<boolean> {\n\t\ttry {\n\t\t\tassertExists(this.context.repository, \"\");\n\t\t\tif (this.context.repository.exists === false) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tconst [slices, ctLibrary, documentsGlob] = await Promise.all([\n\t\t\t\tthis.readAllSlices(),\n\t\t\t\tthis.manager.customTypes.readCustomTypeLibrary(),\n\t\t\t\tthis.readDocuments(),\n\t\t\t]);\n\t\t\tif (\n\t\t\t\tslices.length > 0 ||\n\t\t\t\tctLibrary.ids.length > 0 ||\n\t\t\t\t(documentsGlob !== undefined && documentsGlob.documents.length > 0)\n\t\t\t) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t} catch (e) {\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t}\n\n\tprotected trackError = (error: unknown): Promise<void> => {\n\t\t// Transform error to string and prevent hitting Segment 500kb API limit or sending ridiculously long trace\n\t\tconst safeError = (\n\t\t\terror instanceof Error ? error.message : `${error}`\n\t\t).slice(0, 512);\n\n\t\treturn this.manager.telemetry.track({\n\t\t\tevent: \"command:init:end\",\n\t\t\tframework: this.context.framework?.sliceMachineTelemetryID ?? \"unknown\",\n\t\t\trepository: this.context.repository?.domain || \"\",\n\t\t\tsuccess: false,\n\t\t\terror: safeError,\n\t\t});\n\t};\n\n\tprotected async copyStarter(): Promise<void> {\n\t\tconst dir = await this.getStarterDirectoryName();\n\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Copying starter...\\n\",\n\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\tconst starter = this.options.starter;\n\n\t\t\t\t\tawait downloadTemplate(\n\t\t\t\t\t\t`${GIGET_PROVIDER}:${GIGET_ORGANIZATION}/${starter}#HEAD`,\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tdir,\n\t\t\t\t\t\t},\n\t\t\t\t\t);\n\n\t\t\t\t\tprocess.chdir(dir);\n\t\t\t\t\tthis.manager.cwd = process.cwd();\n\n\t\t\t\t\ttask.title = \"Starter copied\\n\";\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected async getStarterDirectoryName(): Promise<string> {\n\t\tlet directoryName: string;\n\t\tconst folderNames = await fs.readdir(process.cwd());\n\n\t\tif (\n\t\t\tthis.options.directoryName &&\n\t\t\t!folderNames.includes(this.options.directoryName)\n\t\t) {\n\t\t\t// Use provided directory\n\t\t\tdirectoryName = this.options.directoryName;\n\t\t} else if (\n\t\t\tthis.options.repository &&\n\t\t\t!folderNames.includes(this.options.repository)\n\t\t) {\n\t\t\t// Use repository name\n\t\t\tdirectoryName = this.options.repository;\n\t\t} else {\n\t\t\t// Use random name\n\t\t\tlet suggestedName: string;\n\t\t\tdo {\n\t\t\t\tsuggestedName = getRandomRepositoryDomain();\n\t\t\t} while (folderNames.includes(suggestedName));\n\n\t\t\tconst { selectedDirectory } = await prompt<string, \"selectedDirectory\">({\n\t\t\t\ttype: \"text\",\n\t\t\t\tname: \"selectedDirectory\",\n\t\t\t\tmessage: \"Your starter directory name\",\n\t\t\t\tinitial: suggestedName,\n\t\t\t\tvalidate: async (rawDirectory: string) => {\n\t\t\t\t\tif (folderNames.includes(rawDirectory)) {\n\t\t\t\t\t\treturn \"Directory name already exists\";\n\t\t\t\t\t}\n\n\t\t\t\t\treturn true;\n\t\t\t\t},\n\t\t\t});\n\n\t\t\tdirectoryName = selectedDirectory;\n\t\t}\n\n\t\treturn directoryName;\n\t}\n\n\tprotected detectEnvironment(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Detecting environment...\",\n\t\t\t\ttask: (_, parentTask) =>\n\t\t\t\t\tlistr([\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Detecting framework...\",\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tthis.context.framework = await detectFramework(\n\t\t\t\t\t\t\t\t\tthis.manager.cwd,\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\ttask.title = `Detected framework ${chalk.cyan(\n\t\t\t\t\t\t\t\t\tthis.context.framework.name,\n\t\t\t\t\t\t\t\t)}`;\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Detecting package manager...\",\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tthis.context.packageManager =\n\t\t\t\t\t\t\t\t\tawait this.manager.project.detectPackageManager({\n\t\t\t\t\t\t\t\t\t\troot: this.manager.cwd,\n\t\t\t\t\t\t\t\t\t});\n\n\t\t\t\t\t\t\t\ttask.title = `Detected package manager ${chalk.cyan(\n\t\t\t\t\t\t\t\t\tthis.context.packageManager,\n\t\t\t\t\t\t\t\t)}`;\n\n\t\t\t\t\t\t\t\tassertExists(\n\t\t\t\t\t\t\t\t\tthis.context.framework,\n\t\t\t\t\t\t\t\t\t\"Project framework must be available through context to proceed\",\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\tparentTask.title = `Detected framework ${chalk.cyan(\n\t\t\t\t\t\t\t\t\tthis.context.framework.name,\n\t\t\t\t\t\t\t\t)} and package manager ${chalk.cyan(\n\t\t\t\t\t\t\t\t\tthis.context.packageManager,\n\t\t\t\t\t\t\t\t)}`;\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Detecting starter...\",\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tthis.context.starterId = await detectStarterId(\n\t\t\t\t\t\t\t\t\tthis.manager.cwd,\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\tif (this.context.starterId) {\n\t\t\t\t\t\t\t\t\ttask.title = `Detected starter ${chalk.cyan(\n\t\t\t\t\t\t\t\t\t\tthis.context.starterId,\n\t\t\t\t\t\t\t\t\t)}`;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\ttask.title = \"No starter detected\";\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t]),\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected beginCoreDependenciesInstallation(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Beginning core dependencies installation...\",\n\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.packageManager,\n\t\t\t\t\t\t\"Project package manager must be available through context to run `beginCoreDependenciesInstallation`\",\n\t\t\t\t\t);\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.framework,\n\t\t\t\t\t\t\"Project framework must be available through context to run `beginCoreDependenciesInstallation`\",\n\t\t\t\t\t);\n\n\t\t\t\t\tconst { execaProcess } =\n\t\t\t\t\t\tawait this.manager.project.installDependencies({\n\t\t\t\t\t\t\tpackageManager: this.context.packageManager,\n\t\t\t\t\t\t\tdependencies: this.context.framework.devDependencies,\n\t\t\t\t\t\t\tdev: true,\n\t\t\t\t\t\t\t// Picked up later\n\t\t\t\t\t\t\tlog: () => {\n\t\t\t\t\t\t\t\t/* ... */\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t});\n\n\t\t\t\t\t// Fail hard if process fails\n\t\t\t\t\texecaProcess.catch(async (error) => {\n\t\t\t\t\t\tconst [_, ...argv1n] = process.argv;\n\t\t\t\t\t\t// Command the user used\n\t\t\t\t\t\tlet tryAgainCommand = [process.argv0, ...argv1n].join(\" \");\n\n\t\t\t\t\t\t// If the `repository` option wasn't used AND the repository was selected/created\n\t\t\t\t\t\tif (!this.options.repository && this.context.repository) {\n\t\t\t\t\t\t\ttryAgainCommand = `${tryAgainCommand} --repository=${this.context.repository.domain}`;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tawait this.trackError(error.shortMessage);\n\t\t\t\t\t\tconsole.error(\n\t\t\t\t\t\t\t`\\n\\n${error.shortMessage}\\n${error.stderr}\\n\\n${\n\t\t\t\t\t\t\t\tlogSymbols.error\n\t\t\t\t\t\t\t} Dependency installation failed, try again with:\\n\\n ${chalk.gray(\n\t\t\t\t\t\t\t\t\"$\",\n\t\t\t\t\t\t\t)} ${chalk.cyan(tryAgainCommand)}`,\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\tprocess.exit(1);\n\t\t\t\t\t});\n\n\t\t\t\t\tthis.context.installProcess = execaProcess;\n\n\t\t\t\t\ttask.title = `Began core dependencies installation with ${chalk.cyan(\n\t\t\t\t\t\tthis.context.packageManager,\n\t\t\t\t\t)} ... (running in background)`;\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected async fetchUserProfile(): Promise<void> {\n\t\tthis.context.userProfile = await this.manager.user.getProfile();\n\n\t\tawait this.manager.telemetry.identify({\n\t\t\tuserID: this.context.userProfile.shortId,\n\t\t\tintercomHash: this.context.userProfile.intercomHash,\n\t\t});\n\t\tawait this.manager.telemetry.track({\n\t\t\tevent: \"command:init:identify\",\n\t\t\trepository: this.options.repository,\n\t\t});\n\t}\n\n\tprotected async fetchUserRepositories(): Promise<void> {\n\t\tthis.context.userRepositories =\n\t\t\tawait this.manager.prismicRepository.readAll();\n\t}\n\n\tprotected validateWriteAccess(): void {\n\t\tassertExists(\n\t\t\tthis.context.repository,\n\t\t\t\"Repository selection must be available through context to proceed\",\n\t\t);\n\t\tassertExists(\n\t\t\tthis.context.userRepositories,\n\t\t\t\"User repositories must be available through context to validate write access\",\n\t\t);\n\t\tconst { domain } = this.context.repository;\n\t\tconst maybeRepository = this.context.userRepositories.find(\n\t\t\t(repository) => repository.domain === domain,\n\t\t);\n\n\t\tif (maybeRepository) {\n\t\t\tif (!this.manager.prismicRepository.hasWriteAccess(maybeRepository)) {\n\t\t\t\tthrow new Error(\n\t\t\t\t\t`Cannot run init command with repository ${chalk.cyan(\n\t\t\t\t\t\tmaybeRepository.domain,\n\t\t\t\t\t)}: you are not a developer or admin of this repository`,\n\t\t\t\t);\n\t\t\t}\n\t\t} else {\n\t\t\tthrow new Error(\n\t\t\t\t`Cannot validate write access for repository ${chalk.cyan(\n\t\t\t\t\tdomain,\n\t\t\t\t)}: you are not part of this repository`,\n\t\t\t);\n\t\t}\n\t}\n\n\tprotected loginAndFetchUserData(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Logging in to Prismic...\",\n\t\t\t\ttask: async (_, parentTask) => {\n\t\t\t\t\tparentTask.output = \"Validating session...\";\n\t\t\t\t\tconst isLoggedIn = await this.manager.user.checkIsLoggedIn();\n\n\t\t\t\t\tif (!isLoggedIn) {\n\t\t\t\t\t\tparentTask.output = \"Press any key to open the browser to login...\";\n\t\t\t\t\t\tawait new Promise((resolve) => {\n\t\t\t\t\t\t\tconst initialRawMode = !!process.stdin.isRaw;\n\t\t\t\t\t\t\tprocess.stdin.setRawMode?.(true);\n\t\t\t\t\t\t\tprocess.stdin.resume();\n\t\t\t\t\t\t\tprocess.stdin.once(\"data\", (data: Buffer) => {\n\t\t\t\t\t\t\t\tprocess.stdin.setRawMode?.(initialRawMode);\n\t\t\t\t\t\t\t\tprocess.stdin.pause();\n\t\t\t\t\t\t\t\tresolve(data.toString(\"utf-8\"));\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\tparentTask.output = \"Browser opened, waiting for you to login...\";\n\t\t\t\t\t\tconst { port, url } = await this.manager.user.getLoginSessionInfo();\n\t\t\t\t\t\tawait this.manager.user.nodeLoginSession({\n\t\t\t\t\t\t\tport,\n\t\t\t\t\t\t\tonListenCallback() {\n\t\t\t\t\t\t\t\topen(url);\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\n\t\t\t\t\tparentTask.output = \"\";\n\t\t\t\t\tparentTask.title = `Logged in`;\n\n\t\t\t\t\treturn listr(\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\ttitle: \"Fetching user profile...\",\n\t\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\t\tawait this.fetchUserProfile();\n\t\t\t\t\t\t\t\t\tparentTask.title = `Logged in as ${chalk.cyan(\n\t\t\t\t\t\t\t\t\t\tthis.context.userProfile?.email,\n\t\t\t\t\t\t\t\t\t)}`;\n\t\t\t\t\t\t\t\t\ttask.title = \"Fetched user profile\";\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\ttitle: \"Fetching user repositories...\",\n\t\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\t\tawait this.fetchUserRepositories();\n\t\t\t\t\t\t\t\t\ttask.title = \"Fetched user repositories\";\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t],\n\t\t\t\t\t\t{ concurrent: true },\n\t\t\t\t\t);\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected useRepositoryFlag(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: `Flag ${chalk.cyan(\"repository\")} used, validating input...`,\n\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.options.repository,\n\t\t\t\t\t\t\"Flag `repository` must be set to run `useRepositoryFlag`\",\n\t\t\t\t\t);\n\t\t\t\t\tconst domain = formatRepositoryDomain(this.options.repository);\n\t\t\t\t\tconst validation = await validateRepositoryDomainAndAvailability({\n\t\t\t\t\t\tdomain,\n\t\t\t\t\t\texistsFn: (domain) =>\n\t\t\t\t\t\t\tthis.manager.prismicRepository.checkExists({ domain }),\n\t\t\t\t\t});\n\n\t\t\t\t\tif (validation.LessThan4 || validation.MoreThan30) {\n\t\t\t\t\t\tconst errorMessage = getErrorMessageForRepositoryDomainValidation({\n\t\t\t\t\t\t\tvalidation: {\n\t\t\t\t\t\t\t\t...validation,\n\t\t\t\t\t\t\t\t// We don't want to throw if repo already exists.\n\t\t\t\t\t\t\t\t// User most probably just created it via their dashboard.\n\t\t\t\t\t\t\t\tAlreadyExists: false,\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tdisplayDomain: chalk.cyan(domain),\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\tif (errorMessage) {\n\t\t\t\t\t\t\tthrow new Error(errorMessage);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\ttask.title = `Selected repository ${chalk.cyan(\n\t\t\t\t\t\tdomain,\n\t\t\t\t\t)} (flag ${chalk.cyan(\"repository\")} used)`;\n\n\t\t\t\t\tthis.context.repository = {\n\t\t\t\t\t\tdomain,\n\t\t\t\t\t\texists: validation.AlreadyExists ?? false,\n\t\t\t\t\t};\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected async selectRepository(): Promise<void> {\n\t\tassertExists(\n\t\t\tthis.context.userRepositories,\n\t\t\t\"User repositories must be available through context to run `selectRepository`\",\n\t\t);\n\n\t\tif (this.context.userRepositories.length) {\n\t\t\tawait this.trySelectExistingRepository();\n\t\t}\n\n\t\tif (!this.context.repository) {\n\t\t\tawait this.selectNewRepository();\n\t\t}\n\n\t\tassertExists(\n\t\t\tthis.context.repository,\n\t\t\t\"Repository selection must be available through context to proceed\",\n\t\t);\n\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t// eslint-disable-next-line no-console\n\t\tconsole.log(\n\t\t\t`${logSymbols.success} Selected repository ${chalk.cyan(\n\t\t\t\tthis.context.repository.domain,\n\t\t\t)}`,\n\t\t);\n\t}\n\n\tprotected async trySelectExistingRepository(): Promise<void> {\n\t\tassertExists(\n\t\t\tthis.context.userRepositories,\n\t\t\t\"User repositories must be available through context to run `trySelectExistingRepository`\",\n\t\t);\n\n\t\tconst { maybeDomain } = await prompt<string, \"maybeDomain\">({\n\t\t\ttype: \"select\",\n\t\t\tname: \"maybeDomain\",\n\t\t\tmessage: \"Pick a repository to connect to or choose to create a new one\",\n\t\t\twarn: \"You are not a developer or admin of this repository\",\n\t\t\tchoices: [\n\t\t\t\t{\n\t\t\t\t\ttitle: \"CREATE NEW\",\n\t\t\t\t\tdescription: \"Create a new Prismic repository\\n\",\n\t\t\t\t\tvalue: \"\",\n\t\t\t\t},\n\t\t\t\t...this.context.userRepositories\n\t\t\t\t\t.map((repository) => {\n\t\t\t\t\t\tconst hasWriteAccess =\n\t\t\t\t\t\t\tthis.manager.prismicRepository.hasWriteAccess(repository);\n\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\ttitle: `${repository.domain}${\n\t\t\t\t\t\t\t\thasWriteAccess ? \"\" : \" (Unauthorized)\"\n\t\t\t\t\t\t\t}`,\n\t\t\t\t\t\t\tdescription: `Connect to ${chalk.cyan(repository.domain)}`,\n\t\t\t\t\t\t\tvalue: repository.domain,\n\t\t\t\t\t\t\tdisabled: !hasWriteAccess,\n\t\t\t\t\t\t};\n\t\t\t\t\t})\n\t\t\t\t\t.sort((a, b) => (a.value > b.value ? 1 : -1)),\n\t\t\t],\n\t\t});\n\n\t\tif (maybeDomain) {\n\t\t\tthis.context.repository = {\n\t\t\t\tdomain: maybeDomain,\n\t\t\t\texists: true,\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected async selectNewRepository(): Promise<void> {\n\t\tlet suggestedName = \"\";\n\n\t\t// TODO: Improve concurrency\n\t\tconst trySuggestName = async (name: string): Promise<string | void> => {\n\t\t\tif (name) {\n\t\t\t\tconst formattedName = formatRepositoryDomain(name);\n\n\t\t\t\tif (\n\t\t\t\t\t!validateRepositoryDomain({ domain: formattedName }).hasErrors &&\n\t\t\t\t\t!(await this.manager.prismicRepository.checkExists({\n\t\t\t\t\t\tdomain: formattedName,\n\t\t\t\t\t}))\n\t\t\t\t) {\n\t\t\t\t\treturn formattedName;\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\n\t\t// 1. Try to suggest name after directory name\n\t\tconst maybeSuggestion = await trySuggestName(\n\t\t\tpath.basename(this.manager.cwd),\n\t\t);\n\t\tif (maybeSuggestion) {\n\t\t\tsuggestedName = maybeSuggestion;\n\t\t}\n\n\t\t// 2. Try to suggest name after package name\n\t\tif (!suggestedName) {\n\t\t\ttry {\n\t\t\t\tconst pkgJSONPath = path.join(this.manager.cwd, \"package.json\");\n\t\t\t\tconst pkg = JSON.parse(await fs.readFile(pkgJSONPath, \"utf-8\"));\n\n\t\t\t\tconst maybeSuggestion = await trySuggestName(pkg.name);\n\t\t\t\tif (maybeSuggestion) {\n\t\t\t\t\tsuggestedName = maybeSuggestion;\n\t\t\t\t}\n\t\t\t} catch {\n\t\t\t\t// Noop\n\t\t\t}\n\t\t}\n\n\t\t// 3. Use random name\n\t\tif (!suggestedName) {\n\t\t\tdo {\n\t\t\t\tsuggestedName = getRandomRepositoryDomain();\n\t\t\t} while (\n\t\t\t\tawait this.manager.prismicRepository.checkExists({\n\t\t\t\t\tdomain: suggestedName,\n\t\t\t\t})\n\t\t\t);\n\t\t}\n\n\t\tconst { domain } = await prompt<string, \"domain\">({\n\t\t\ttype: \"text\",\n\t\t\tname: \"domain\",\n\t\t\t// Overriden by the `onRender` function, just used as a fallback\n\t\t\tmessage: \"Choose a name for your Prismic repository\",\n\t\t\tinitial: suggestedName,\n\t\t\tonRender() {\n\t\t\t\tconst rawDomain = this.value || this.initial || \"\";\n\t\t\t\tconst domain = formatRepositoryDomain(rawDomain);\n\t\t\t\tconst validation = validateRepositoryDomain({ domain });\n\n\t\t\t\tconst minRule = validation.LessThan4\n\t\t\t\t\t? chalk.red(\n\t\t\t\t\t\t\t`1. Name must be ${chalk.bold(\"4 characters long or more\")}`,\n\t\t\t\t\t )\n\t\t\t\t\t: `1. Name must be ${chalk.cyan(\"4 characters long or more\")}`;\n\n\t\t\t\tconst maxRule = validation.MoreThan30\n\t\t\t\t\t? chalk.red(\n\t\t\t\t\t\t\t`1. Name must be ${chalk.bold(\"30 characters long or less\")}`,\n\t\t\t\t\t )\n\t\t\t\t\t: `1. Name must be ${chalk.cyan(\"30 characters long or less\")}`;\n\n\t\t\t\tthis.msg = chalk.reset(\n\t\t\t\t\t`\nChoose a name for your Prismic repository\n\n NAMING RULES\n ${minRule}\n ${maxRule}\n 3. Name will be ${chalk.cyan(\"kebab-cased\")} automatically\n\n CONSIDERATIONS\n 1. Once picked, your repository name ${chalk.cyan(\"cannot be changed\")}\n 2. A ${chalk.cyan(\n\t\t\t\"display name\",\n\t\t)} for the repository can be configured later on\n\n PREVIEW\n Dashboard ${chalk.cyan(`https://${domain}.prismic.io`)}\n API ${chalk.cyan(`https://${domain}.cdn.prismic.io/api/v2`)}\n\n${chalk.cyan(\"?\")} Your Prismic repository name`.replace(\"\\n\", \"\"),\n\t\t\t\t);\n\t\t\t},\n\t\t\tvalidate: async (rawDomain: string) => {\n\t\t\t\tconst domain = formatRepositoryDomain(rawDomain);\n\t\t\t\tconst validation = await validateRepositoryDomainAndAvailability({\n\t\t\t\t\tdomain,\n\t\t\t\t\texistsFn: (domain) =>\n\t\t\t\t\t\tthis.manager.prismicRepository.checkExists({ domain }),\n\t\t\t\t});\n\t\t\t\tconst errorMessage = getErrorMessageForRepositoryDomainValidation({\n\t\t\t\t\tvalidation,\n\t\t\t\t\tdisplayDomain: chalk.cyan(domain),\n\t\t\t\t});\n\n\t\t\t\treturn errorMessage || true;\n\t\t\t},\n\t\t\tformat: (value) => {\n\t\t\t\treturn formatRepositoryDomain(value);\n\t\t\t},\n\t\t});\n\n\t\t// Clear extra lines\n\t\tprocess.stdout.moveCursor?.(0, -16);\n\t\tprocess.stdout.clearScreenDown?.();\n\n\t\tthis.context.repository = {\n\t\t\tdomain,\n\t\t\texists: false,\n\t\t};\n\t}\n\n\tprotected createNewRepository(): Promise<void> {\n\t\tassertExists(\n\t\t\tthis.context.repository,\n\t\t\t\"Repository selection must be available through context to run `createNewRepository`\",\n\t\t);\n\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: `Creating new repository ${chalk.cyan(\n\t\t\t\t\tthis.context.repository.domain,\n\t\t\t\t)} ...`,\n\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.repository,\n\t\t\t\t\t\t\"Repository selection must be available through context to run `createNewRepository`\",\n\t\t\t\t\t);\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.framework,\n\t\t\t\t\t\t\"Project framework must be available through context to run `createNewRepository`\",\n\t\t\t\t\t);\n\n\t\t\t\t\tawait this.manager.prismicRepository.create({\n\t\t\t\t\t\tdomain: this.context.repository.domain,\n\t\t\t\t\t\tframework: this.context.framework.wroomTelemetryID,\n\t\t\t\t\t\tstarterId: this.context.starterId,\n\t\t\t\t\t});\n\n\t\t\t\t\tthis.context.repository.exists = true;\n\t\t\t\t\ttask.title = `Created new repository ${chalk.cyan(\n\t\t\t\t\t\tthis.context.repository.domain,\n\t\t\t\t\t)}`;\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected finishCoreDependenciesInstallation(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: `Finishing core dependencies installation with ${chalk.cyan(\n\t\t\t\t\tthis.context.packageManager,\n\t\t\t\t)} ...`,\n\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.installProcess,\n\t\t\t\t\t\t\"Initial dependencies installation process must be available through context to run `finishCoreDependenciesInstallation`\",\n\t\t\t\t\t);\n\n\t\t\t\t\tconst updateOutput = (data: Buffer | null) => {\n\t\t\t\t\t\tif (data instanceof Buffer) {\n\t\t\t\t\t\t\ttask.output = data.toString();\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t\t// Don't clutter console with logs when process is non TTY (CI, etc.)\n\t\t\t\t\tif (process.stdout.isTTY || process.env.NODE_ENV === \"test\") {\n\t\t\t\t\t\tthis.context.installProcess.stdout?.on(\"data\", updateOutput);\n\t\t\t\t\t}\n\t\t\t\t\tthis.context.installProcess.stderr?.on(\"data\", updateOutput);\n\n\t\t\t\t\ttry {\n\t\t\t\t\t\tawait this.context.installProcess;\n\t\t\t\t\t} catch (error) {\n\t\t\t\t\t\t/**\n\t\t\t\t\t\t * Error catching happens when then process is started ealier so\n\t\t\t\t\t\t * that all install errors, earlier and presents, can be catched.\n\t\t\t\t\t\t *\n\t\t\t\t\t\t * Here, we force the task to wait so that it is neither marked as\n\t\t\t\t\t\t * done or has the opportunity to handle the error itself.\n\t\t\t\t\t\t */\n\t\t\t\t\t\t// If for whatever reason the process is not exited by now, we still throw the error\n\t\t\t\t\t\tawait new Promise((resolve) => setTimeout(resolve, 5000));\n\t\t\t\t\t\tthrow error;\n\t\t\t\t\t}\n\n\t\t\t\t\ttask.title = `Installed core dependencies with ${chalk.cyan(\n\t\t\t\t\t\tthis.context.packageManager,\n\t\t\t\t\t)}`;\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected upsertSliceMachineConfigurationAndStartPluginRunner(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Resolving Slice Machine configuration...\",\n\t\t\t\ttask: async (_, parentTask) => {\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.framework,\n\t\t\t\t\t\t\"Project framework must be available through context to run `upsertSliceMachineConfiguration`\",\n\t\t\t\t\t);\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.repository,\n\t\t\t\t\t\t\"Repository selection must be available through context to run `upsertSliceMachineConfiguration`\",\n\t\t\t\t\t);\n\n\t\t\t\t\tlet sliceMachineConfigExists = false;\n\t\t\t\t\ttry {\n\t\t\t\t\t\tawait this.manager.project.getSliceMachineConfigPath();\n\t\t\t\t\t\tsliceMachineConfigExists = true;\n\t\t\t\t\t} catch {\n\t\t\t\t\t\t// noop, config does not exists, we'll create it\n\t\t\t\t\t}\n\n\t\t\t\t\tif (sliceMachineConfigExists) {\n\t\t\t\t\t\tparentTask.title = \"Updating Slice Machine configuration...\";\n\n\t\t\t\t\t\tconst config = await this.manager.project.getSliceMachineConfig();\n\t\t\t\t\t\tawait this.manager.project.writeSliceMachineConfig({\n\t\t\t\t\t\t\tconfig: {\n\t\t\t\t\t\t\t\t...config,\n\t\t\t\t\t\t\t\trepositoryName: this.context.repository.domain,\n\t\t\t\t\t\t\t\tadapter: this.context.framework.adapterName,\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t});\n\t\t\t\t\t\tparentTask.title = \"Updated Slice Machine configuration\";\n\t\t\t\t\t} else {\n\t\t\t\t\t\tparentTask.title = \"Creating Slice Machine configuration...\";\n\n\t\t\t\t\t\tconst sliceMachineConfigPath =\n\t\t\t\t\t\t\tawait this.manager.project.suggestSliceMachineConfigPath();\n\n\t\t\t\t\t\tawait this.manager.project.writeSliceMachineConfig({\n\t\t\t\t\t\t\tconfig: {\n\t\t\t\t\t\t\t\trepositoryName: this.context.repository.domain,\n\t\t\t\t\t\t\t\tadapter: this.context.framework.adapterName,\n\t\t\t\t\t\t\t\tlibraries: [\"./slices\"],\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tpath: sliceMachineConfigPath,\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\tparentTask.title = \"Created Slice Machine configuration\";\n\t\t\t\t\t}\n\n\t\t\t\t\treturn listr([\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t// TODO: Revert when plugin are introduced to users\n\t\t\t\t\t\t\t// title: \"Starting plugin runner...\",\n\t\t\t\t\t\t\ttitle: \"Loading adapter...\",\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tawait this.manager.plugins.initPlugins();\n\t\t\t\t\t\t\t\t// TODO: Revert when plugin are introduced to users\n\t\t\t\t\t\t\t\t// task.title = \"Started plugin runner\";\n\t\t\t\t\t\t\t\ttask.title = \"Loaded adapter\";\n\t\t\t\t\t\t\t\t// TODO: Revert when plugin are introduced to users\n\t\t\t\t\t\t\t\t// parentTask.title = `${parentTask.title} and started plugin runner`;\n\t\t\t\t\t\t\t\tparentTask.title = `${parentTask.title} and loaded adapter`;\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t]);\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected async readAllSlices(): Promise<\n\t\t{ libraryID: string; sliceID: string }[]\n\t> {\n\t\tconst { libraries, errors } =\n\t\t\tawait this.manager.slices.readAllSliceLibraries();\n\n\t\tif (errors.length > 0) {\n\t\t\t// TODO: Provide better error message.\n\t\t\tthrow new Error(`Failed to read slice libraries: ${errors.join(\", \")}`);\n\t\t}\n\n\t\tconst slices: { libraryID: string; sliceID: string }[] = [];\n\t\tfor (const library of libraries) {\n\t\t\tif (library.sliceIDs) {\n\t\t\t\tfor (const sliceID of library.sliceIDs) {\n\t\t\t\t\tslices.push({\n\t\t\t\t\t\tlibraryID: library.libraryID,\n\t\t\t\t\t\tsliceID,\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn slices;\n\t}\n\n\tprotected async readDocuments(): Promise<\n\t\t| {\n\t\t\t\tsignature: string;\n\t\t\t\tdocuments: string[];\n\t\t\t\tdirectoryPath: string;\n\t\t }\n\t\t| undefined\n\t> {\n\t\tconst root = await this.manager.project.getRoot();\n\t\tconst documentsDirectoryPath = path.resolve(root, \"documents\");\n\t\ttry {\n\t\t\tawait fs.access(documentsDirectoryPath);\n\t\t} catch {\n\t\t\treturn;\n\t\t}\n\t\tconst signaturePath = path.resolve(documentsDirectoryPath, \"index.json\");\n\t\tconst rawSignature = await fs.readFile(signaturePath, \"utf-8\");\n\t\tconst signature: string = JSON.parse(rawSignature).signature;\n\n\t\tconst documents = await globby(\"*/*.json\", {\n\t\t\tcwd: documentsDirectoryPath,\n\t\t});\n\n\t\treturn { signature, documents, directoryPath: documentsDirectoryPath };\n\t}\n\n\tprotected pushDataToPrismic(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Pushing data to Prismic...\",\n\t\t\t\ttask: (_, parentTask) =>\n\t\t\t\t\tlistr([\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Pushing slices...\",\n\t\t\t\t\t\t\tskip: () => {\n\t\t\t\t\t\t\t\tif (!this.options.push) {\n\t\t\t\t\t\t\t\t\treturn `--no-push used`;\n\t\t\t\t\t\t\t\t} else if (!this.options.pushSlices) {\n\t\t\t\t\t\t\t\t\treturn `--no-push-slices used`;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tconst slices = await this.readAllSlices();\n\n\t\t\t\t\t\t\t\tif (slices.length === 0) {\n\t\t\t\t\t\t\t\t\ttask.skip(\"No slice to push\");\n\n\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\ttask.title = \"Pushing slices... (initializing ACL)\";\n\t\t\t\t\t\t\t\tawait this.manager.screenshots.initS3ACL();\n\n\t\t\t\t\t\t\t\tlet pushed = 0;\n\t\t\t\t\t\t\t\ttask.title = `Pushing slices... (0/${slices.length})`;\n\t\t\t\t\t\t\t\tawait Promise.all(\n\t\t\t\t\t\t\t\t\tslices.map(async (slice) => {\n\t\t\t\t\t\t\t\t\t\tawait this.manager.slices.pushSlice({\n\t\t\t\t\t\t\t\t\t\t\t...slice,\n\t\t\t\t\t\t\t\t\t\t\tuserAgent: SLICE_MACHINE_INIT_USER_AGENT,\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\tpushed++;\n\t\t\t\t\t\t\t\t\t\ttask.title = `Pushing slices... (${pushed}/${slices.length})`;\n\t\t\t\t\t\t\t\t\t}),\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\ttask.title = \"Pushed all slices\";\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Pushing types...\",\n\t\t\t\t\t\t\tskip: () => {\n\t\t\t\t\t\t\t\tif (!this.options.push) {\n\t\t\t\t\t\t\t\t\treturn `--no-push used`;\n\t\t\t\t\t\t\t\t} else if (!this.options.pushCustomTypes) {\n\t\t\t\t\t\t\t\t\treturn `--no-push-custom-types used`;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tconst { ids, errors } =\n\t\t\t\t\t\t\t\t\tawait this.manager.customTypes.readCustomTypeLibrary();\n\n\t\t\t\t\t\t\t\tif (errors.length > 0) {\n\t\t\t\t\t\t\t\t\t// TODO: Provide better error message.\n\t\t\t\t\t\t\t\t\tthrow new Error(\n\t\t\t\t\t\t\t\t\t\t`Failed to read custom type libraries: ${errors.join(\n\t\t\t\t\t\t\t\t\t\t\t\", \",\n\t\t\t\t\t\t\t\t\t\t)}`,\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tif (!ids || ids.length === 0) {\n\t\t\t\t\t\t\t\t\ttask.skip(\"No custom type to push\");\n\n\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tlet pushed = 0;\n\t\t\t\t\t\t\t\ttask.title = `Pushing types... (0/${ids.length})`;\n\t\t\t\t\t\t\t\tawait Promise.all(\n\t\t\t\t\t\t\t\t\tids.map(async (id) => {\n\t\t\t\t\t\t\t\t\t\tawait this.manager.customTypes.pushCustomType({\n\t\t\t\t\t\t\t\t\t\t\tid,\n\t\t\t\t\t\t\t\t\t\t\tuserAgent: SLICE_MACHINE_INIT_USER_AGENT,\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\tpushed++;\n\t\t\t\t\t\t\t\t\t\ttask.title = `Pushing types... (${pushed}/${ids.length})`;\n\t\t\t\t\t\t\t\t\t}),\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\ttask.title = \"Pushed all types\";\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Pushing documents...\",\n\t\t\t\t\t\t\tskip: () => {\n\t\t\t\t\t\t\t\tif (!this.options.push) {\n\t\t\t\t\t\t\t\t\treturn `--no-push used`;\n\t\t\t\t\t\t\t\t} else if (!this.options.pushDocuments) {\n\t\t\t\t\t\t\t\t\treturn `--no-push-documents used`;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tassertExists(\n\t\t\t\t\t\t\t\t\tthis.context.repository,\n\t\t\t\t\t\t\t\t\t\"Repository selection must be available through context to run `pushDataToPrismic`\",\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tconst documentsRead = await this.readDocuments();\n\n\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\tdocumentsRead === undefined ||\n\t\t\t\t\t\t\t\t\t\tdocumentsRead.documents.length === 0\n\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\tparentTask.title = \"Pushed data to Prismic\";\n\t\t\t\t\t\t\t\t\t\ttask.skip(\"No document to push\");\n\n\t\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tconst { signature, documents, directoryPath } = documentsRead;\n\n\t\t\t\t\t\t\t\t\t// TODO: Replace `unknown` with a Prismic document type.\n\t\t\t\t\t\t\t\t\t// The exact format is not know at this time, hence the `unknown`.\n\t\t\t\t\t\t\t\t\tconst recordDocument: Record<string, unknown> = {};\n\n\t\t\t\t\t\t\t\t\tawait Promise.all(\n\t\t\t\t\t\t\t\t\t\tdocuments.map(async (documentPath) => {\n\t\t\t\t\t\t\t\t\t\t\tconst filename = path.basename(documentPath, \".json\");\n\t\t\t\t\t\t\t\t\t\t\tconst fileContent = await fs.readFile(\n\t\t\t\t\t\t\t\t\t\t\t\tpath.resolve(directoryPath, documentPath),\n\t\t\t\t\t\t\t\t\t\t\t\t\"utf-8\",\n\t\t\t\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\t\t\t\t// TOOD: Validate the contents of the JSON file and skip on invalid documents.\n\t\t\t\t\t\t\t\t\t\t\t\tconst parsedContents = JSON.parse(fileContent);\n\n\t\t\t\t\t\t\t\t\t\t\t\trecordDocument[filename] = parsedContents;\n\t\t\t\t\t\t\t\t\t\t\t} catch {\n\t\t\t\t\t\t\t\t\t\t\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t\t\t\t\t\t\t\t\t\t\t// eslint-disable-next-line no-console\n\t\t\t\t\t\t\t\t\t\t\t\tconsole.log(\n\t\t\t\t\t\t\t\t\t\t\t\t\t`Skipped document due to its invalid format: ${documentPath}`,\n\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}),\n\t\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t\tawait this.manager.prismicRepository.pushDocuments({\n\t\t\t\t\t\t\t\t\t\tdomain: this.context.repository.domain,\n\t\t\t\t\t\t\t\t\t\tdocuments: recordDocument,\n\t\t\t\t\t\t\t\t\t\tsignature,\n\t\t\t\t\t\t\t\t\t});\n\n\t\t\t\t\t\t\t\t\ttask.title = \"Pushed all documents\";\n\t\t\t\t\t\t\t\t\tparentTask.title = \"Pushed data to Prismic\";\n\t\t\t\t\t\t\t\t} catch {\n\t\t\t\t\t\t\t\t\tparentTask.title = \"Pushed data to Prismic\";\n\t\t\t\t\t\t\t\t\ttask.skip(\"No document to push\");\n\n\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Cleaning up data push artifacts\",\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tconst root = await this.manager.project.getRoot();\n\t\t\t\t\t\t\t\tconst documentsDirectoryPath = path.resolve(root, \"documents\");\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tawait fs.rm(documentsDirectoryPath, {\n\t\t\t\t\t\t\t\t\t\tforce: true,\n\t\t\t\t\t\t\t\t\t\trecursive: true,\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t} catch {\n\t\t\t\t\t\t\t\t\t// Noop, it's not that big of a deal if we cannot delete this directory\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\ttask.title = \"Cleaned up data push artifacts\";\n\t\t\t\t\t\t\t\tparentTask.title = \"Pushed data to Prismic\";\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t]),\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected initializeProject(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Initializing project...\",\n\t\t\t\ttask: async (_, parentTask) =>\n\t\t\t\t\t// We return another Listr instance in the event we have additional task to perform to initialize the project\n\t\t\t\t\tlistr([\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: `Patching ${chalk.cyan(\"package.json\")} scripts...`,\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tconst pkgPath = path.join(this.manager.cwd, \"package.json\");\n\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tconst pkgRaw = await fs.readFile(pkgPath, \"utf-8\");\n\t\t\t\t\t\t\t\t\tconst pkg = JSON.parse(pkgRaw);\n\n\t\t\t\t\t\t\t\t\tpkg.scripts ||= {};\n\n\t\t\t\t\t\t\t\t\tif (!pkg.scripts[START_SCRIPT_KEY]) {\n\t\t\t\t\t\t\t\t\t\tpkg.scripts[START_SCRIPT_KEY] = START_SCRIPT_VALUE;\n\n\t\t\t\t\t\t\t\t\t\t// Cheap indent detection based on https://github.com/sindresorhus/detect-indent (simplified because we're only dealing with JSON here)\n\t\t\t\t\t\t\t\t\t\tconst firstIndent = pkgRaw\n\t\t\t\t\t\t\t\t\t\t\t.split(\"\\n\")\n\t\t\t\t\t\t\t\t\t\t\t.find((line) => line.match(/^(?:( )+|\\t+)/));\n\t\t\t\t\t\t\t\t\t\tconst indent = firstIndent?.match(/^(?:( )+|\\t+)/)?.[0];\n\n\t\t\t\t\t\t\t\t\t\tawait fs.writeFile(\n\t\t\t\t\t\t\t\t\t\t\tpkgPath,\n\t\t\t\t\t\t\t\t\t\t\tJSON.stringify(\n\t\t\t\t\t\t\t\t\t\t\t\tpkg,\n\t\t\t\t\t\t\t\t\t\t\t\tnull,\n\t\t\t\t\t\t\t\t\t\t\t\tindent && indent !== \" \" ? indent : \" \",\n\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t} else if (\n\t\t\t\t\t\t\t\t\t\t!pkg.scripts[\"slicemachine\"].startsWith(START_SCRIPT_VALUE)\n\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\tthrow new Error(\"Script already exists\");\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t} catch (error) {\n\t\t\t\t\t\t\t\t\ttask.title = `Could not patch ${chalk.cyan(\n\t\t\t\t\t\t\t\t\t\t\"package.json\",\n\t\t\t\t\t\t\t\t\t)} scripts (warning)`;\n\t\t\t\t\t\t\t\t\tparentTask.title = `Initialized project (could not patch ${chalk.cyan(\n\t\t\t\t\t\t\t\t\t\t\"package.json\",\n\t\t\t\t\t\t\t\t\t)} scripts)`;\n\n\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tthis.context.projectInitialization ||= {};\n\t\t\t\t\t\t\t\tthis.context.projectInitialization.patchedScript = true;\n\n\t\t\t\t\t\t\t\ttask.title = `Patched ${chalk.cyan(\"package.json\")} scripts`;\n\t\t\t\t\t\t\t\tparentTask.title = `Initialized project (patched ${chalk.cyan(\n\t\t\t\t\t\t\t\t\t\"package.json\",\n\t\t\t\t\t\t\t\t)} scripts)`;\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t]),\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected initializePlugins(): Promise<void> {\n\t\treturn listrRun(\n\t\t\t[\n\t\t\t\t{\n\t\t\t\t\t// TODO: Revert when plugin are introduced to users\n\t\t\t\t\t// title: \"Initializing plugins...\",\n\t\t\t\t\ttitle: \"Initializing adapter...\",\n\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\tconst updateOutput = (data: Buffer | string | null) => {\n\t\t\t\t\t\t\tif (data instanceof Buffer) {\n\t\t\t\t\t\t\t\ttask.output = data.toString();\n\t\t\t\t\t\t\t} else if (typeof data === \"string\") {\n\t\t\t\t\t\t\t\ttask.output = data;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t};\n\n\t\t\t\t\t\tawait this.manager.project.initProject({\n\t\t\t\t\t\t\tlog: updateOutput,\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\t// TODO: Revert when plugin are introduced to users\n\t\t\t\t\t\t// task.title = \"Initialized plugins\";\n\t\t\t\t\t\ttask.title = \"Initialized adapter\";\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t],\n\t\t\t{ exitOnError: false },\n\t\t).catch(() => void 0);\n\t}\n}\n"],"names":["pkg","_","_b","_a","domain","maybeSuggestion"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"SliceMachineInitProcess.js","sources":["../../src/SliceMachineInitProcess.ts"],"sourcesContent":["import * as fs from \"node:fs/promises\";\nimport * as path from \"node:path\";\n\nimport chalk from \"chalk\";\n\nimport { execaCommand, type ExecaChildProcess } from \"execa\";\n\nimport open from \"open\";\nimport logSymbols from \"log-symbols\";\nimport { globby } from \"globby\";\nimport { downloadTemplate } from \"giget\";\n\nimport {\n\tcreateSliceMachineManager,\n\tPrismicUserProfile,\n\tPrismicRepository,\n\tSliceMachineManager,\n\tPackageManager,\n\tStarterId,\n} from \"@slicemachine/manager\";\n\nimport pkg from \"../package.json\";\nimport { detectFramework, Framework } from \"./lib/framework\";\nimport { getRunScriptCommand } from \"./lib/getRunScriptCommand\";\nimport { getExecuteCommand } from \"./lib/getExecuteCommand\";\nimport {\n\tgetRandomRepositoryDomain,\n\tformatRepositoryDomain,\n\tvalidateRepositoryDomain,\n\tvalidateRepositoryDomainAndAvailability,\n\tgetErrorMessageForRepositoryDomainValidation,\n} from \"./lib/repositoryDomain\";\nimport { listr, listrRun } from \"./lib/listr\";\nimport { prompt } from \"./lib/prompt\";\nimport { assertExists } from \"./lib/assertExists\";\nimport {\n\tGIGET_ORGANIZATION,\n\tGIGET_PROVIDER,\n\tSLICE_MACHINE_INIT_USER_AGENT,\n\tSTART_SCRIPT_KEY,\n\tSTART_SCRIPT_VALUE,\n} from \"./constants\";\nimport { detectStarterId } from \"./lib/starters\";\n\nexport type SliceMachineInitProcessOptions = {\n\trepository?: string;\n\tstarter?: string;\n\tdirectoryName?: string;\n\tpush?: boolean;\n\tpushSlices?: boolean;\n\tpushCustomTypes?: boolean;\n\tpushDocuments?: boolean;\n\tstartSlicemachine?: boolean;\n\tcwd?: string;\n} & Record<string, unknown>;\n\nconst DEFAULT_OPTIONS: SliceMachineInitProcessOptions = {\n\tpush: true,\n\tpushSlices: true,\n\tpushCustomTypes: true,\n\tpushDocuments: true,\n\tstartSlicemachine: true,\n};\n\nexport const createSliceMachineInitProcess = (\n\toptions?: SliceMachineInitProcessOptions,\n): SliceMachineInitProcess => {\n\treturn new SliceMachineInitProcess(options);\n};\n\ntype SliceMachineInitProcessContext = {\n\tframework?: Framework;\n\tpackageManager?: PackageManager;\n\tinstallProcess?: ExecaChildProcess;\n\tuserProfile?: PrismicUserProfile;\n\tuserRepositories?: PrismicRepository[];\n\trepository?: {\n\t\tdomain: string;\n\t\texists: boolean;\n\t};\n\tprojectInitialization?: {\n\t\tpatchedScript?: boolean;\n\t};\n\tstarterId?: StarterId;\n};\n\nexport class SliceMachineInitProcess {\n\tprotected options: SliceMachineInitProcessOptions;\n\tprotected manager: SliceMachineManager;\n\n\tprotected context: SliceMachineInitProcessContext;\n\n\tconstructor(options?: SliceMachineInitProcessOptions) {\n\t\tthis.options = { ...DEFAULT_OPTIONS, ...options };\n\t\tthis.manager = createSliceMachineManager({ cwd: options?.cwd });\n\n\t\tthis.context = {};\n\t}\n\n\tasync run(): Promise<void> {\n\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t// eslint-disable-next-line no-console\n\t\tconsole.log(\n\t\t\t`\\n${chalk.bgGray(` ${chalk.bold.white(\"Slice Machine\")} `)} ${chalk.dim(\n\t\t\t\t\"→\",\n\t\t\t)} Initializing\\n`,\n\t\t);\n\n\t\ttry {\n\t\t\tif (this.options.starter) {\n\t\t\t\tawait this.copyStarter();\n\t\t\t} else if (this.options.directoryName) {\n\t\t\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t\t\t// eslint-disable-next-line no-console\n\t\t\t\tconsole.log(\n\t\t\t\t\t`${logSymbols.warning} --directory-name has no effect because --starter is not specified\\n`,\n\t\t\t\t);\n\t\t\t}\n\n\t\t\tif (await this.manager.telemetry.checkIsTelemetryEnabled()) {\n\t\t\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t\t\t// eslint-disable-next-line no-console\n\t\t\t\tconsole.log(\n\t\t\t\t\t`${\n\t\t\t\t\t\tlogSymbols.info\n\t\t\t\t\t} We collect telemetry data to improve user experience.\\n Learn more: ${chalk.cyan(\n\t\t\t\t\t\t\"https://prismic.dev/slice-machine/telemetry\",\n\t\t\t\t\t)}\\n`,\n\t\t\t\t);\n\t\t\t}\n\t\t\tawait this.manager.telemetry.initTelemetry({\n\t\t\t\tappName: pkg.name,\n\t\t\t\tappVersion: pkg.version,\n\t\t\t});\n\t\t\tawait this.manager.telemetry.track({\n\t\t\t\tevent: \"command:init:start\",\n\t\t\t\trepository: this.options.repository,\n\t\t\t});\n\n\t\t\tawait this.detectEnvironment();\n\n\t\t\tassertExists(\n\t\t\t\tthis.context.framework,\n\t\t\t\t\"Project framework must be available through context to proceed\",\n\t\t\t);\n\n\t\t\tawait this.beginCoreDependenciesInstallation();\n\n\t\t\tif (this.options.repository) {\n\t\t\t\tawait this.useRepositoryFlag();\n\t\t\t} else {\n\t\t\t\tawait this.loginAndFetchUserData();\n\t\t\t\tawait this.selectRepository();\n\t\t\t}\n\n\t\t\tassertExists(\n\t\t\t\tthis.context.repository,\n\t\t\t\t\"Repository selection must be available through context to proceed\",\n\t\t\t);\n\n\t\t\tawait this.finishCoreDependenciesInstallation();\n\t\t\tawait this.upsertSliceMachineConfigurationAndStartPluginRunner();\n\n\t\t\tconst isLoginRequired = await this.checkIsLoginRequired();\n\t\t\tif (isLoginRequired) {\n\t\t\t\tawait this.loginAndFetchUserData();\n\t\t\t\tif (this.context.repository.exists) {\n\t\t\t\t\tthis.validateWriteAccess();\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (!this.context.repository.exists) {\n\t\t\t\tawait this.createNewRepository();\n\t\t\t}\n\n\t\t\tawait this.syncDataWithPrismic();\n\t\t\tawait this.initializeProject();\n\t\t\tawait this.initializePlugins();\n\t\t} catch (error) {\n\t\t\tawait this.trackError(error);\n\n\t\t\tthrow error;\n\t\t}\n\n\t\tawait this.manager.telemetry.track({\n\t\t\tevent: \"command:init:end\",\n\t\t\tframework: this.context.framework.sliceMachineTelemetryID,\n\t\t\trepository: this.context.repository.domain,\n\t\t\tsuccess: true,\n\t\t});\n\n\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t// eslint-disable-next-line no-console\n\t\tconsole.log(\n\t\t\t`\\n${chalk.bgGreen(` ${chalk.bold.white(\"Slice Machine\")} `)} ${chalk.dim(\n\t\t\t\t\"→\",\n\t\t\t)} Initialization successful!`,\n\t\t);\n\n\t\ttry {\n\t\t\tconst runSmCommand = this.context.projectInitialization?.patchedScript\n\t\t\t\t? await getRunScriptCommand({\n\t\t\t\t\t\tagent: this.context.packageManager || \"npm\",\n\t\t\t\t\t\tscript: \"slicemachine\",\n\t\t\t\t })\n\t\t\t\t: await getExecuteCommand({\n\t\t\t\t\t\tagent: this.context.packageManager || \"npm\",\n\t\t\t\t\t\tscript: \"start-slicemachine\",\n\t\t\t\t });\n\n\t\t\tconst runProjectCommand = await getRunScriptCommand({\n\t\t\t\tagent: this.context.packageManager || \"npm\",\n\t\t\t\tscript: \"dev\",\n\t\t\t});\n\n\t\t\tconst apiEndpoints = this.manager.getAPIEndpoints();\n\t\t\tconst wroomHost = new URL(apiEndpoints.PrismicWroom).host;\n\n\t\t\tconst dashboardURL = new URL(\n\t\t\t\t`https://${this.context.repository.domain}.${wroomHost}`,\n\t\t\t)\n\t\t\t\t.toString()\n\t\t\t\t.replace(/\\/$/, \"\");\n\t\t\tconst apiURL = new URL(\n\t\t\t\t\"./api/v2\",\n\t\t\t\t`https://${this.context.repository.domain}.cdn.${wroomHost}`,\n\t\t\t).toString();\n\n\t\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t\t// eslint-disable-next-line no-console\n\t\t\tconsole.log(`\n YOUR REPOSITORY\n Page Builder ${chalk.cyan(dashboardURL)}\n API ${chalk.cyan(apiURL)}\n\n RESOURCES\n Documentation ${chalk.cyan(\n\t\t\tthis.context.framework.prismicDocumentation,\n\t\t)}\n Getting help ${chalk.cyan(\"https://community.prismic.io\")}\n\n GETTING STARTED\n Run Slice Machine ${chalk.cyan(runSmCommand)}\n Run your project ${chalk.cyan(runProjectCommand)}\n\t`);\n\n\t\t\tif (this.options.starter && this.options.repository) {\n\t\t\t\tconst { openDashboard } = await prompt<boolean, \"openDashboard\">({\n\t\t\t\t\ttype: \"confirm\",\n\t\t\t\t\tname: \"openDashboard\",\n\t\t\t\t\tmessage: \"Would you like to open your repository?\",\n\t\t\t\t\tinitial: true,\n\t\t\t\t});\n\n\t\t\t\tif (openDashboard) {\n\t\t\t\t\topen(dashboardURL);\n\t\t\t\t}\n\t\t\t} else if (this.options.startSlicemachine) {\n\t\t\t\tconst pkgJSONPath = path.join(this.manager.cwd, \"package.json\");\n\t\t\t\tconst pkg = JSON.parse(await fs.readFile(pkgJSONPath, \"utf-8\"));\n\t\t\t\tconst scripts = pkg.scripts || {};\n\n\t\t\t\tconst finalSmCommand = (() => {\n\t\t\t\t\tif (\n\t\t\t\t\t\tscripts[\"dev\"] &&\n\t\t\t\t\t\ttypeof scripts[\"dev\"] === \"string\" &&\n\t\t\t\t\t\tscripts[\"dev\"].includes(\":slicemachine\")\n\t\t\t\t\t) {\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\tcommand: runProjectCommand,\n\t\t\t\t\t\t\tmessage: `Would you like to run your project and Slice Machine concurrently (${runProjectCommand})?`,\n\t\t\t\t\t\t};\n\t\t\t\t\t}\n\n\t\t\t\t\treturn {\n\t\t\t\t\t\tcommand: runSmCommand,\n\t\t\t\t\t\tmessage: `Would you like to run Slice Machine (${runSmCommand})?`,\n\t\t\t\t\t};\n\t\t\t\t})();\n\t\t\t\tconst { startSlicemachine } = await prompt<\n\t\t\t\t\tboolean,\n\t\t\t\t\t\"startSlicemachine\"\n\t\t\t\t>({\n\t\t\t\t\ttype: \"confirm\",\n\t\t\t\t\tname: \"startSlicemachine\",\n\t\t\t\t\tmessage: finalSmCommand.message,\n\t\t\t\t\tinitial: true,\n\t\t\t\t});\n\n\t\t\t\tif (startSlicemachine) {\n\t\t\t\t\tconst commandReturnValue = await execaCommand(\n\t\t\t\t\t\tfinalSmCommand.command,\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tenv: { FORCE_COLOR: \"true\" },\n\t\t\t\t\t\t},\n\t\t\t\t\t).pipeStdout?.(process.stdout);\n\t\t\t\t\tif (commandReturnValue !== undefined) {\n\t\t\t\t\t\t// eslint-disable-next-line no-console\n\t\t\t\t\t\tconsole.log(commandReturnValue.stdout);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t} catch {\n\t\t\t// Noop, it's only the final convenience messsage\n\t\t}\n\t}\n\n\tprotected async checkIsLoginRequired(): Promise<boolean> {\n\t\ttry {\n\t\t\tassertExists(this.context.repository, \"\");\n\t\t\tif (this.context.repository.exists === false) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tconst [slices, ctLibrary, documentsGlob] = await Promise.all([\n\t\t\t\tthis.readAllSlices(),\n\t\t\t\tthis.manager.customTypes.readCustomTypeLibrary(),\n\t\t\t\tthis.readDocuments(),\n\t\t\t]);\n\n\t\t\t// If repository exists, and there's anything to push\n\t\t\tif (\n\t\t\t\tslices.length > 0 ||\n\t\t\t\tctLibrary.ids.length > 0 ||\n\t\t\t\t(documentsGlob !== undefined && documentsGlob.documents.length > 0)\n\t\t\t) {\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\t// If repository exists, and there might be things to pull\n\t\t\tif (ctLibrary.ids.length === 0) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t} catch (e) {\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t}\n\n\tprotected trackError = (error: unknown): Promise<void> => {\n\t\t// Transform error to string and prevent hitting Segment 500kb API limit or sending ridiculously long trace\n\t\tconst safeError = (\n\t\t\terror instanceof Error ? error.message : `${error}`\n\t\t).slice(0, 512);\n\n\t\treturn this.manager.telemetry.track({\n\t\t\tevent: \"command:init:end\",\n\t\t\tframework: this.context.framework?.sliceMachineTelemetryID ?? \"unknown\",\n\t\t\trepository: this.context.repository?.domain || \"\",\n\t\t\tsuccess: false,\n\t\t\terror: safeError,\n\t\t});\n\t};\n\n\tprotected async copyStarter(): Promise<void> {\n\t\tconst dir = await this.getStarterDirectoryName();\n\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Copying starter...\\n\",\n\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\tconst starter = this.options.starter;\n\n\t\t\t\t\tawait downloadTemplate(\n\t\t\t\t\t\t`${GIGET_PROVIDER}:${GIGET_ORGANIZATION}/${starter}#HEAD`,\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tdir,\n\t\t\t\t\t\t},\n\t\t\t\t\t);\n\n\t\t\t\t\tprocess.chdir(dir);\n\t\t\t\t\tthis.manager.cwd = process.cwd();\n\n\t\t\t\t\ttask.title = \"Starter copied\\n\";\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected async getStarterDirectoryName(): Promise<string> {\n\t\tlet directoryName: string;\n\t\tconst folderNames = await fs.readdir(process.cwd());\n\n\t\tif (\n\t\t\tthis.options.directoryName &&\n\t\t\t!folderNames.includes(this.options.directoryName)\n\t\t) {\n\t\t\t// Use provided directory\n\t\t\tdirectoryName = this.options.directoryName;\n\t\t} else if (\n\t\t\tthis.options.repository &&\n\t\t\t!folderNames.includes(this.options.repository)\n\t\t) {\n\t\t\t// Use repository name\n\t\t\tdirectoryName = this.options.repository;\n\t\t} else {\n\t\t\t// Use random name\n\t\t\tlet suggestedName: string;\n\t\t\tdo {\n\t\t\t\tsuggestedName = getRandomRepositoryDomain();\n\t\t\t} while (folderNames.includes(suggestedName));\n\n\t\t\tconst { selectedDirectory } = await prompt<string, \"selectedDirectory\">({\n\t\t\t\ttype: \"text\",\n\t\t\t\tname: \"selectedDirectory\",\n\t\t\t\tmessage: \"Your starter directory name\",\n\t\t\t\tinitial: suggestedName,\n\t\t\t\tvalidate: async (rawDirectory: string) => {\n\t\t\t\t\tif (folderNames.includes(rawDirectory)) {\n\t\t\t\t\t\treturn \"Directory name already exists\";\n\t\t\t\t\t}\n\n\t\t\t\t\treturn true;\n\t\t\t\t},\n\t\t\t});\n\n\t\t\tdirectoryName = selectedDirectory;\n\t\t}\n\n\t\treturn directoryName;\n\t}\n\n\tprotected detectEnvironment(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Detecting environment...\",\n\t\t\t\ttask: (_, parentTask) =>\n\t\t\t\t\tlistr([\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Detecting framework...\",\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tthis.context.framework = await detectFramework(\n\t\t\t\t\t\t\t\t\tthis.manager.cwd,\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\ttask.title = `Detected framework ${chalk.cyan(\n\t\t\t\t\t\t\t\t\tthis.context.framework.name,\n\t\t\t\t\t\t\t\t)}`;\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Detecting package manager...\",\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tthis.context.packageManager =\n\t\t\t\t\t\t\t\t\tawait this.manager.project.detectPackageManager({\n\t\t\t\t\t\t\t\t\t\troot: this.manager.cwd,\n\t\t\t\t\t\t\t\t\t});\n\n\t\t\t\t\t\t\t\ttask.title = `Detected package manager ${chalk.cyan(\n\t\t\t\t\t\t\t\t\tthis.context.packageManager,\n\t\t\t\t\t\t\t\t)}`;\n\n\t\t\t\t\t\t\t\tassertExists(\n\t\t\t\t\t\t\t\t\tthis.context.framework,\n\t\t\t\t\t\t\t\t\t\"Project framework must be available through context to proceed\",\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\tparentTask.title = `Detected framework ${chalk.cyan(\n\t\t\t\t\t\t\t\t\tthis.context.framework.name,\n\t\t\t\t\t\t\t\t)} and package manager ${chalk.cyan(\n\t\t\t\t\t\t\t\t\tthis.context.packageManager,\n\t\t\t\t\t\t\t\t)}`;\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Detecting starter...\",\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tthis.context.starterId = await detectStarterId(\n\t\t\t\t\t\t\t\t\tthis.manager.cwd,\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\tif (this.context.starterId) {\n\t\t\t\t\t\t\t\t\ttask.title = `Detected starter ${chalk.cyan(\n\t\t\t\t\t\t\t\t\t\tthis.context.starterId,\n\t\t\t\t\t\t\t\t\t)}`;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\ttask.title = \"No starter detected\";\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t]),\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected beginCoreDependenciesInstallation(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Beginning core dependencies installation...\",\n\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.packageManager,\n\t\t\t\t\t\t\"Project package manager must be available through context to run `beginCoreDependenciesInstallation`\",\n\t\t\t\t\t);\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.framework,\n\t\t\t\t\t\t\"Project framework must be available through context to run `beginCoreDependenciesInstallation`\",\n\t\t\t\t\t);\n\n\t\t\t\t\tconst { execaProcess } =\n\t\t\t\t\t\tawait this.manager.project.installDependencies({\n\t\t\t\t\t\t\tpackageManager: this.context.packageManager,\n\t\t\t\t\t\t\tdependencies: this.context.framework.devDependencies,\n\t\t\t\t\t\t\tdev: true,\n\t\t\t\t\t\t\t// Picked up later\n\t\t\t\t\t\t\tlog: () => {\n\t\t\t\t\t\t\t\t/* ... */\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t});\n\n\t\t\t\t\t// Fail hard if process fails\n\t\t\t\t\texecaProcess.catch(async (error) => {\n\t\t\t\t\t\tconst [_, ...argv1n] = process.argv;\n\t\t\t\t\t\t// Command the user used\n\t\t\t\t\t\tlet tryAgainCommand = [process.argv0, ...argv1n].join(\" \");\n\n\t\t\t\t\t\t// If the `repository` option wasn't used AND the repository was selected/created\n\t\t\t\t\t\tif (!this.options.repository && this.context.repository) {\n\t\t\t\t\t\t\ttryAgainCommand = `${tryAgainCommand} --repository=${this.context.repository.domain}`;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tawait this.trackError(error.shortMessage);\n\t\t\t\t\t\tconsole.error(\n\t\t\t\t\t\t\t`\\n\\n${error.shortMessage}\\n${error.stderr}\\n\\n${\n\t\t\t\t\t\t\t\tlogSymbols.error\n\t\t\t\t\t\t\t} Dependency installation failed, try again with:\\n\\n ${chalk.gray(\n\t\t\t\t\t\t\t\t\"$\",\n\t\t\t\t\t\t\t)} ${chalk.cyan(tryAgainCommand)}`,\n\t\t\t\t\t\t);\n\n\t\t\t\t\t\tprocess.exit(1);\n\t\t\t\t\t});\n\n\t\t\t\t\tthis.context.installProcess = execaProcess;\n\n\t\t\t\t\ttask.title = `Began core dependencies installation with ${chalk.cyan(\n\t\t\t\t\t\tthis.context.packageManager,\n\t\t\t\t\t)} ... (running in background)`;\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected async fetchUserProfile(): Promise<void> {\n\t\tthis.context.userProfile = await this.manager.user.getProfile();\n\n\t\tawait this.manager.telemetry.identify({\n\t\t\tuserID: this.context.userProfile.shortId,\n\t\t\tintercomHash: this.context.userProfile.intercomHash,\n\t\t});\n\t\tawait this.manager.telemetry.track({\n\t\t\tevent: \"command:init:identify\",\n\t\t\trepository: this.options.repository,\n\t\t});\n\t}\n\n\tprotected async fetchUserRepositories(): Promise<void> {\n\t\tthis.context.userRepositories =\n\t\t\tawait this.manager.prismicRepository.readAll();\n\t}\n\n\tprotected validateWriteAccess(): void {\n\t\tassertExists(\n\t\t\tthis.context.repository,\n\t\t\t\"Repository selection must be available through context to proceed\",\n\t\t);\n\t\tassertExists(\n\t\t\tthis.context.userRepositories,\n\t\t\t\"User repositories must be available through context to validate write access\",\n\t\t);\n\t\tconst { domain } = this.context.repository;\n\t\tconst maybeRepository = this.context.userRepositories.find(\n\t\t\t(repository) => repository.domain === domain,\n\t\t);\n\n\t\tif (maybeRepository) {\n\t\t\tif (!this.manager.prismicRepository.hasWriteAccess(maybeRepository)) {\n\t\t\t\tthrow new Error(\n\t\t\t\t\t`Cannot run init command with repository ${chalk.cyan(\n\t\t\t\t\t\tmaybeRepository.domain,\n\t\t\t\t\t)}: you are not a developer or admin of this repository`,\n\t\t\t\t);\n\t\t\t}\n\t\t} else {\n\t\t\tthrow new Error(\n\t\t\t\t`Cannot validate write access for repository ${chalk.cyan(\n\t\t\t\t\tdomain,\n\t\t\t\t)}: you are not part of this repository`,\n\t\t\t);\n\t\t}\n\t}\n\n\tprotected loginAndFetchUserData(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Logging in to Prismic...\",\n\t\t\t\ttask: async (_, parentTask) => {\n\t\t\t\t\tparentTask.output = \"Validating session...\";\n\t\t\t\t\tconst isLoggedIn = await this.manager.user.checkIsLoggedIn();\n\n\t\t\t\t\tif (!isLoggedIn) {\n\t\t\t\t\t\tparentTask.output = \"Press any key to open the browser to login...\";\n\t\t\t\t\t\tawait new Promise((resolve) => {\n\t\t\t\t\t\t\tconst initialRawMode = !!process.stdin.isRaw;\n\t\t\t\t\t\t\tprocess.stdin.setRawMode?.(true);\n\t\t\t\t\t\t\tprocess.stdin.resume();\n\t\t\t\t\t\t\tprocess.stdin.once(\"data\", (data: Buffer) => {\n\t\t\t\t\t\t\t\tprocess.stdin.setRawMode?.(initialRawMode);\n\t\t\t\t\t\t\t\tprocess.stdin.pause();\n\t\t\t\t\t\t\t\tresolve(data.toString(\"utf-8\"));\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\tparentTask.output = \"Browser opened, waiting for you to login...\";\n\t\t\t\t\t\tconst { port, url } = await this.manager.user.getLoginSessionInfo();\n\t\t\t\t\t\tawait this.manager.user.nodeLoginSession({\n\t\t\t\t\t\t\tport,\n\t\t\t\t\t\t\tonListenCallback() {\n\t\t\t\t\t\t\t\topen(url);\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\n\t\t\t\t\tparentTask.output = \"\";\n\t\t\t\t\tparentTask.title = `Logged in`;\n\n\t\t\t\t\treturn listr(\n\t\t\t\t\t\t[\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\ttitle: \"Fetching user profile...\",\n\t\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\t\tawait this.fetchUserProfile();\n\t\t\t\t\t\t\t\t\tparentTask.title = `Logged in as ${chalk.cyan(\n\t\t\t\t\t\t\t\t\t\tthis.context.userProfile?.email,\n\t\t\t\t\t\t\t\t\t)}`;\n\t\t\t\t\t\t\t\t\ttask.title = \"Fetched user profile\";\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\ttitle: \"Fetching user repositories...\",\n\t\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\t\tawait this.fetchUserRepositories();\n\t\t\t\t\t\t\t\t\ttask.title = \"Fetched user repositories\";\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t],\n\t\t\t\t\t\t{ concurrent: true },\n\t\t\t\t\t);\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected useRepositoryFlag(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: `Flag ${chalk.cyan(\"repository\")} used, validating input...`,\n\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.options.repository,\n\t\t\t\t\t\t\"Flag `repository` must be set to run `useRepositoryFlag`\",\n\t\t\t\t\t);\n\t\t\t\t\tconst domain = formatRepositoryDomain(this.options.repository);\n\t\t\t\t\tconst validation = await validateRepositoryDomainAndAvailability({\n\t\t\t\t\t\tdomain,\n\t\t\t\t\t\texistsFn: (domain) =>\n\t\t\t\t\t\t\tthis.manager.prismicRepository.checkExists({ domain }),\n\t\t\t\t\t});\n\n\t\t\t\t\tif (validation.LessThan4 || validation.MoreThan30) {\n\t\t\t\t\t\tconst errorMessage = getErrorMessageForRepositoryDomainValidation({\n\t\t\t\t\t\t\tvalidation: {\n\t\t\t\t\t\t\t\t...validation,\n\t\t\t\t\t\t\t\t// We don't want to throw if repo already exists.\n\t\t\t\t\t\t\t\t// User most probably just created it via their dashboard.\n\t\t\t\t\t\t\t\tAlreadyExists: false,\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tdisplayDomain: chalk.cyan(domain),\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\tif (errorMessage) {\n\t\t\t\t\t\t\tthrow new Error(errorMessage);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\ttask.title = `Selected repository ${chalk.cyan(\n\t\t\t\t\t\tdomain,\n\t\t\t\t\t)} (flag ${chalk.cyan(\"repository\")} used)`;\n\n\t\t\t\t\tthis.context.repository = {\n\t\t\t\t\t\tdomain,\n\t\t\t\t\t\texists: validation.AlreadyExists ?? false,\n\t\t\t\t\t};\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected async selectRepository(): Promise<void> {\n\t\tassertExists(\n\t\t\tthis.context.userRepositories,\n\t\t\t\"User repositories must be available through context to run `selectRepository`\",\n\t\t);\n\n\t\tif (this.context.userRepositories.length) {\n\t\t\tawait this.trySelectExistingRepository();\n\t\t}\n\n\t\tif (!this.context.repository) {\n\t\t\tawait this.selectNewRepository();\n\t\t}\n\n\t\tassertExists(\n\t\t\tthis.context.repository,\n\t\t\t\"Repository selection must be available through context to proceed\",\n\t\t);\n\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t// eslint-disable-next-line no-console\n\t\tconsole.log(\n\t\t\t`${logSymbols.success} Selected repository ${chalk.cyan(\n\t\t\t\tthis.context.repository.domain,\n\t\t\t)}`,\n\t\t);\n\t}\n\n\tprotected async trySelectExistingRepository(): Promise<void> {\n\t\tassertExists(\n\t\t\tthis.context.userRepositories,\n\t\t\t\"User repositories must be available through context to run `trySelectExistingRepository`\",\n\t\t);\n\n\t\tconst { maybeDomain } = await prompt<string, \"maybeDomain\">({\n\t\t\ttype: \"select\",\n\t\t\tname: \"maybeDomain\",\n\t\t\tmessage: \"Pick a repository to connect to or choose to create a new one\",\n\t\t\twarn: \"You are not a developer or admin of this repository\",\n\t\t\tchoices: [\n\t\t\t\t{\n\t\t\t\t\ttitle: \"CREATE NEW\",\n\t\t\t\t\tdescription: \"Create a new Prismic repository\\n\",\n\t\t\t\t\tvalue: \"\",\n\t\t\t\t},\n\t\t\t\t...this.context.userRepositories\n\t\t\t\t\t.map((repository) => {\n\t\t\t\t\t\tconst hasWriteAccess =\n\t\t\t\t\t\t\tthis.manager.prismicRepository.hasWriteAccess(repository);\n\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\ttitle: `${repository.domain}${\n\t\t\t\t\t\t\t\thasWriteAccess ? \"\" : \" (Unauthorized)\"\n\t\t\t\t\t\t\t}`,\n\t\t\t\t\t\t\tdescription: `Connect to ${chalk.cyan(repository.domain)}`,\n\t\t\t\t\t\t\tvalue: repository.domain,\n\t\t\t\t\t\t\tdisabled: !hasWriteAccess,\n\t\t\t\t\t\t};\n\t\t\t\t\t})\n\t\t\t\t\t.sort((a, b) => (a.value > b.value ? 1 : -1)),\n\t\t\t],\n\t\t});\n\n\t\tif (maybeDomain) {\n\t\t\tthis.context.repository = {\n\t\t\t\tdomain: maybeDomain,\n\t\t\t\texists: true,\n\t\t\t};\n\t\t}\n\t}\n\n\tprotected async selectNewRepository(): Promise<void> {\n\t\tlet suggestedName = \"\";\n\n\t\t// TODO: Improve concurrency\n\t\tconst trySuggestName = async (name: string): Promise<string | void> => {\n\t\t\tif (name) {\n\t\t\t\tconst formattedName = formatRepositoryDomain(name);\n\n\t\t\t\tif (\n\t\t\t\t\t!validateRepositoryDomain({ domain: formattedName }).hasErrors &&\n\t\t\t\t\t!(await this.manager.prismicRepository.checkExists({\n\t\t\t\t\t\tdomain: formattedName,\n\t\t\t\t\t}))\n\t\t\t\t) {\n\t\t\t\t\treturn formattedName;\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\n\t\t// 1. Try to suggest name after directory name\n\t\tconst maybeSuggestion = await trySuggestName(\n\t\t\tpath.basename(this.manager.cwd),\n\t\t);\n\t\tif (maybeSuggestion) {\n\t\t\tsuggestedName = maybeSuggestion;\n\t\t}\n\n\t\t// 2. Try to suggest name after package name\n\t\tif (!suggestedName) {\n\t\t\ttry {\n\t\t\t\tconst pkgJSONPath = path.join(this.manager.cwd, \"package.json\");\n\t\t\t\tconst pkg = JSON.parse(await fs.readFile(pkgJSONPath, \"utf-8\"));\n\n\t\t\t\tconst maybeSuggestion = await trySuggestName(pkg.name);\n\t\t\t\tif (maybeSuggestion) {\n\t\t\t\t\tsuggestedName = maybeSuggestion;\n\t\t\t\t}\n\t\t\t} catch {\n\t\t\t\t// Noop\n\t\t\t}\n\t\t}\n\n\t\t// 3. Use random name\n\t\tif (!suggestedName) {\n\t\t\tdo {\n\t\t\t\tsuggestedName = getRandomRepositoryDomain();\n\t\t\t} while (\n\t\t\t\tawait this.manager.prismicRepository.checkExists({\n\t\t\t\t\tdomain: suggestedName,\n\t\t\t\t})\n\t\t\t);\n\t\t}\n\n\t\tconst { domain } = await prompt<string, \"domain\">({\n\t\t\ttype: \"text\",\n\t\t\tname: \"domain\",\n\t\t\t// Overriden by the `onRender` function, just used as a fallback\n\t\t\tmessage: \"Choose a name for your Prismic repository\",\n\t\t\tinitial: suggestedName,\n\t\t\tonRender() {\n\t\t\t\tconst rawDomain = this.value || this.initial || \"\";\n\t\t\t\tconst domain = formatRepositoryDomain(rawDomain);\n\t\t\t\tconst validation = validateRepositoryDomain({ domain });\n\n\t\t\t\tconst minRule = validation.LessThan4\n\t\t\t\t\t? chalk.red(\n\t\t\t\t\t\t\t`1. Name must be ${chalk.bold(\"4 characters long or more\")}`,\n\t\t\t\t\t )\n\t\t\t\t\t: `1. Name must be ${chalk.cyan(\"4 characters long or more\")}`;\n\n\t\t\t\tconst maxRule = validation.MoreThan30\n\t\t\t\t\t? chalk.red(\n\t\t\t\t\t\t\t`1. Name must be ${chalk.bold(\"30 characters long or less\")}`,\n\t\t\t\t\t )\n\t\t\t\t\t: `1. Name must be ${chalk.cyan(\"30 characters long or less\")}`;\n\n\t\t\t\tthis.msg = chalk.reset(\n\t\t\t\t\t`\nChoose a name for your Prismic repository\n\n NAMING RULES\n ${minRule}\n ${maxRule}\n 3. Name will be ${chalk.cyan(\"kebab-cased\")} automatically\n\n CONSIDERATIONS\n 1. Once picked, your repository name ${chalk.cyan(\"cannot be changed\")}\n 2. A ${chalk.cyan(\n\t\t\t\"display name\",\n\t\t)} for the repository can be configured later on\n\n PREVIEW\n Dashboard ${chalk.cyan(`https://${domain}.prismic.io`)}\n API ${chalk.cyan(`https://${domain}.cdn.prismic.io/api/v2`)}\n\n${chalk.cyan(\"?\")} Your Prismic repository name`.replace(\"\\n\", \"\"),\n\t\t\t\t);\n\t\t\t},\n\t\t\tvalidate: async (rawDomain: string) => {\n\t\t\t\tconst domain = formatRepositoryDomain(rawDomain);\n\t\t\t\tconst validation = await validateRepositoryDomainAndAvailability({\n\t\t\t\t\tdomain,\n\t\t\t\t\texistsFn: (domain) =>\n\t\t\t\t\t\tthis.manager.prismicRepository.checkExists({ domain }),\n\t\t\t\t});\n\t\t\t\tconst errorMessage = getErrorMessageForRepositoryDomainValidation({\n\t\t\t\t\tvalidation,\n\t\t\t\t\tdisplayDomain: chalk.cyan(domain),\n\t\t\t\t});\n\n\t\t\t\treturn errorMessage || true;\n\t\t\t},\n\t\t\tformat: (value) => {\n\t\t\t\treturn formatRepositoryDomain(value);\n\t\t\t},\n\t\t});\n\n\t\t// Clear extra lines\n\t\tprocess.stdout.moveCursor?.(0, -16);\n\t\tprocess.stdout.clearScreenDown?.();\n\n\t\tthis.context.repository = {\n\t\t\tdomain,\n\t\t\texists: false,\n\t\t};\n\t}\n\n\tprotected createNewRepository(): Promise<void> {\n\t\tassertExists(\n\t\t\tthis.context.repository,\n\t\t\t\"Repository selection must be available through context to run `createNewRepository`\",\n\t\t);\n\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: `Creating new repository ${chalk.cyan(\n\t\t\t\t\tthis.context.repository.domain,\n\t\t\t\t)} ...`,\n\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.repository,\n\t\t\t\t\t\t\"Repository selection must be available through context to run `createNewRepository`\",\n\t\t\t\t\t);\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.framework,\n\t\t\t\t\t\t\"Project framework must be available through context to run `createNewRepository`\",\n\t\t\t\t\t);\n\n\t\t\t\t\tawait this.manager.prismicRepository.create({\n\t\t\t\t\t\tdomain: this.context.repository.domain,\n\t\t\t\t\t\tframework: this.context.framework.wroomTelemetryID,\n\t\t\t\t\t\tstarterId: this.context.starterId,\n\t\t\t\t\t});\n\n\t\t\t\t\tthis.context.repository.exists = true;\n\t\t\t\t\ttask.title = `Created new repository ${chalk.cyan(\n\t\t\t\t\t\tthis.context.repository.domain,\n\t\t\t\t\t)}`;\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected finishCoreDependenciesInstallation(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: `Finishing core dependencies installation with ${chalk.cyan(\n\t\t\t\t\tthis.context.packageManager,\n\t\t\t\t)} ...`,\n\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.installProcess,\n\t\t\t\t\t\t\"Initial dependencies installation process must be available through context to run `finishCoreDependenciesInstallation`\",\n\t\t\t\t\t);\n\n\t\t\t\t\tconst updateOutput = (data: Buffer | null) => {\n\t\t\t\t\t\tif (data instanceof Buffer) {\n\t\t\t\t\t\t\ttask.output = data.toString();\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\t\t\t\t\t// Don't clutter console with logs when process is non TTY (CI, etc.)\n\t\t\t\t\tif (process.stdout.isTTY || process.env.NODE_ENV === \"test\") {\n\t\t\t\t\t\tthis.context.installProcess.stdout?.on(\"data\", updateOutput);\n\t\t\t\t\t}\n\t\t\t\t\tthis.context.installProcess.stderr?.on(\"data\", updateOutput);\n\n\t\t\t\t\ttry {\n\t\t\t\t\t\tawait this.context.installProcess;\n\t\t\t\t\t} catch (error) {\n\t\t\t\t\t\t/**\n\t\t\t\t\t\t * Error catching happens when then process is started ealier so\n\t\t\t\t\t\t * that all install errors, earlier and presents, can be catched.\n\t\t\t\t\t\t *\n\t\t\t\t\t\t * Here, we force the task to wait so that it is neither marked as\n\t\t\t\t\t\t * done or has the opportunity to handle the error itself.\n\t\t\t\t\t\t */\n\t\t\t\t\t\t// If for whatever reason the process is not exited by now, we still throw the error\n\t\t\t\t\t\tawait new Promise((resolve) => setTimeout(resolve, 5000));\n\t\t\t\t\t\tthrow error;\n\t\t\t\t\t}\n\n\t\t\t\t\ttask.title = `Installed core dependencies with ${chalk.cyan(\n\t\t\t\t\t\tthis.context.packageManager,\n\t\t\t\t\t)}`;\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected upsertSliceMachineConfigurationAndStartPluginRunner(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Resolving Slice Machine configuration...\",\n\t\t\t\ttask: async (_, parentTask) => {\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.framework,\n\t\t\t\t\t\t\"Project framework must be available through context to run `upsertSliceMachineConfiguration`\",\n\t\t\t\t\t);\n\t\t\t\t\tassertExists(\n\t\t\t\t\t\tthis.context.repository,\n\t\t\t\t\t\t\"Repository selection must be available through context to run `upsertSliceMachineConfiguration`\",\n\t\t\t\t\t);\n\n\t\t\t\t\tlet sliceMachineConfigExists = false;\n\t\t\t\t\ttry {\n\t\t\t\t\t\tawait this.manager.project.getSliceMachineConfigPath();\n\t\t\t\t\t\tsliceMachineConfigExists = true;\n\t\t\t\t\t} catch {\n\t\t\t\t\t\t// noop, config does not exists, we'll create it\n\t\t\t\t\t}\n\n\t\t\t\t\tif (sliceMachineConfigExists) {\n\t\t\t\t\t\tparentTask.title = \"Updating Slice Machine configuration...\";\n\n\t\t\t\t\t\tconst config = await this.manager.project.getSliceMachineConfig();\n\t\t\t\t\t\tawait this.manager.project.writeSliceMachineConfig({\n\t\t\t\t\t\t\tconfig: {\n\t\t\t\t\t\t\t\t...config,\n\t\t\t\t\t\t\t\trepositoryName: this.context.repository.domain,\n\t\t\t\t\t\t\t\tadapter: this.context.framework.adapterName,\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t});\n\t\t\t\t\t\tparentTask.title = \"Updated Slice Machine configuration\";\n\t\t\t\t\t} else {\n\t\t\t\t\t\tparentTask.title = \"Creating Slice Machine configuration...\";\n\n\t\t\t\t\t\tconst sliceMachineConfigPath =\n\t\t\t\t\t\t\tawait this.manager.project.suggestSliceMachineConfigPath();\n\n\t\t\t\t\t\tawait this.manager.project.writeSliceMachineConfig({\n\t\t\t\t\t\t\tconfig: {\n\t\t\t\t\t\t\t\trepositoryName: this.context.repository.domain,\n\t\t\t\t\t\t\t\tadapter: this.context.framework.adapterName,\n\t\t\t\t\t\t\t\tlibraries: [\"./slices\"],\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tpath: sliceMachineConfigPath,\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\tparentTask.title = \"Created Slice Machine configuration\";\n\t\t\t\t\t}\n\n\t\t\t\t\treturn listr([\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t// TODO: Revert when plugin are introduced to users\n\t\t\t\t\t\t\t// title: \"Starting plugin runner...\",\n\t\t\t\t\t\t\ttitle: \"Loading adapter...\",\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tawait this.manager.plugins.initPlugins();\n\t\t\t\t\t\t\t\t// TODO: Revert when plugin are introduced to users\n\t\t\t\t\t\t\t\t// task.title = \"Started plugin runner\";\n\t\t\t\t\t\t\t\ttask.title = \"Loaded adapter\";\n\t\t\t\t\t\t\t\t// TODO: Revert when plugin are introduced to users\n\t\t\t\t\t\t\t\t// parentTask.title = `${parentTask.title} and started plugin runner`;\n\t\t\t\t\t\t\t\tparentTask.title = `${parentTask.title} and loaded adapter`;\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t]);\n\t\t\t\t},\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected async readAllSlices(): Promise<\n\t\t{ libraryID: string; sliceID: string }[]\n\t> {\n\t\tconst { libraries, errors } =\n\t\t\tawait this.manager.slices.readAllSliceLibraries();\n\n\t\tif (errors.length > 0) {\n\t\t\t// TODO: Provide better error message.\n\t\t\tthrow new Error(`Failed to read slice libraries: ${errors.join(\", \")}`);\n\t\t}\n\n\t\tconst slices: { libraryID: string; sliceID: string }[] = [];\n\t\tfor (const library of libraries) {\n\t\t\tif (library.sliceIDs) {\n\t\t\t\tfor (const sliceID of library.sliceIDs) {\n\t\t\t\t\tslices.push({\n\t\t\t\t\t\tlibraryID: library.libraryID,\n\t\t\t\t\t\tsliceID,\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn slices;\n\t}\n\n\tprotected async readDocuments(): Promise<\n\t\t| {\n\t\t\t\tsignature: string;\n\t\t\t\tdocuments: string[];\n\t\t\t\tdirectoryPath: string;\n\t\t }\n\t\t| undefined\n\t> {\n\t\tconst root = await this.manager.project.getRoot();\n\t\tconst documentsDirectoryPath = path.resolve(root, \"documents\");\n\t\ttry {\n\t\t\tawait fs.access(documentsDirectoryPath);\n\t\t} catch {\n\t\t\treturn;\n\t\t}\n\t\tconst signaturePath = path.resolve(documentsDirectoryPath, \"index.json\");\n\t\tconst rawSignature = await fs.readFile(signaturePath, \"utf-8\");\n\t\tconst signature: string = JSON.parse(rawSignature).signature;\n\n\t\tconst documents = await globby(\"*/*.json\", {\n\t\t\tcwd: documentsDirectoryPath,\n\t\t});\n\n\t\treturn { signature, documents, directoryPath: documentsDirectoryPath };\n\t}\n\n\tprotected syncDataWithPrismic(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Syncing data with Prismic...\",\n\t\t\t\ttask: (_, parentTask) =>\n\t\t\t\t\tlistr([\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Pushing slices...\",\n\t\t\t\t\t\t\tskip: () => {\n\t\t\t\t\t\t\t\tif (!this.options.push) {\n\t\t\t\t\t\t\t\t\treturn `--no-push used`;\n\t\t\t\t\t\t\t\t} else if (!this.options.pushSlices) {\n\t\t\t\t\t\t\t\t\treturn `--no-push-slices used`;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tconst slices = await this.readAllSlices();\n\n\t\t\t\t\t\t\t\tif (slices.length === 0) {\n\t\t\t\t\t\t\t\t\ttask.skip(\"No slice to push\");\n\n\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\ttask.title = \"Pushing slices... (initializing ACL)\";\n\t\t\t\t\t\t\t\tawait this.manager.screenshots.initS3ACL();\n\n\t\t\t\t\t\t\t\tlet pushed = 0;\n\t\t\t\t\t\t\t\ttask.title = `Pushing slices... (0/${slices.length})`;\n\t\t\t\t\t\t\t\tawait Promise.all(\n\t\t\t\t\t\t\t\t\tslices.map(async (slice) => {\n\t\t\t\t\t\t\t\t\t\tawait this.manager.slices.pushSlice({\n\t\t\t\t\t\t\t\t\t\t\t...slice,\n\t\t\t\t\t\t\t\t\t\t\tuserAgent: SLICE_MACHINE_INIT_USER_AGENT,\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\tpushed++;\n\t\t\t\t\t\t\t\t\t\ttask.title = `Pushing slices... (${pushed}/${slices.length})`;\n\t\t\t\t\t\t\t\t\t}),\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\ttask.title = \"Pushed all slices\";\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Pushing types...\",\n\t\t\t\t\t\t\tskip: () => {\n\t\t\t\t\t\t\t\tif (!this.options.push) {\n\t\t\t\t\t\t\t\t\treturn `--no-push used`;\n\t\t\t\t\t\t\t\t} else if (!this.options.pushCustomTypes) {\n\t\t\t\t\t\t\t\t\treturn `--no-push-custom-types used`;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tconst { ids, errors } =\n\t\t\t\t\t\t\t\t\tawait this.manager.customTypes.readCustomTypeLibrary();\n\n\t\t\t\t\t\t\t\tif (errors.length > 0) {\n\t\t\t\t\t\t\t\t\t// TODO: Provide better error message.\n\t\t\t\t\t\t\t\t\tthrow new Error(\n\t\t\t\t\t\t\t\t\t\t`Failed to read custom type libraries: ${errors.join(\n\t\t\t\t\t\t\t\t\t\t\t\", \",\n\t\t\t\t\t\t\t\t\t\t)}`,\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tif (!ids || ids.length === 0) {\n\t\t\t\t\t\t\t\t\ttask.skip(\"No custom type to push\");\n\n\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tlet pushed = 0;\n\t\t\t\t\t\t\t\ttask.title = `Pushing types... (0/${ids.length})`;\n\t\t\t\t\t\t\t\tawait Promise.all(\n\t\t\t\t\t\t\t\t\tids.map(async (id) => {\n\t\t\t\t\t\t\t\t\t\tawait this.manager.customTypes.pushCustomType({\n\t\t\t\t\t\t\t\t\t\t\tid,\n\t\t\t\t\t\t\t\t\t\t\tuserAgent: SLICE_MACHINE_INIT_USER_AGENT,\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\tpushed++;\n\t\t\t\t\t\t\t\t\t\ttask.title = `Pushing types... (${pushed}/${ids.length})`;\n\t\t\t\t\t\t\t\t\t}),\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\ttask.title = \"Pushed all types\";\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Pushing documents...\",\n\t\t\t\t\t\t\tskip: () => {\n\t\t\t\t\t\t\t\tif (!this.options.push) {\n\t\t\t\t\t\t\t\t\treturn `--no-push used`;\n\t\t\t\t\t\t\t\t} else if (!this.options.pushDocuments) {\n\t\t\t\t\t\t\t\t\treturn `--no-push-documents used`;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tassertExists(\n\t\t\t\t\t\t\t\t\tthis.context.repository,\n\t\t\t\t\t\t\t\t\t\"Repository selection must be available through context to run `syncDataWithPrismic`\",\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tconst documentsRead = await this.readDocuments();\n\n\t\t\t\t\t\t\t\t\tif (\n\t\t\t\t\t\t\t\t\t\tdocumentsRead === undefined ||\n\t\t\t\t\t\t\t\t\t\tdocumentsRead.documents.length === 0\n\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\ttask.skip(\"No document to push\");\n\n\t\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tconst { signature, documents, directoryPath } = documentsRead;\n\n\t\t\t\t\t\t\t\t\t// TODO: Replace `unknown` with a Prismic document type.\n\t\t\t\t\t\t\t\t\t// The exact format is not know at this time, hence the `unknown`.\n\t\t\t\t\t\t\t\t\tconst recordDocument: Record<string, unknown> = {};\n\n\t\t\t\t\t\t\t\t\tawait Promise.all(\n\t\t\t\t\t\t\t\t\t\tdocuments.map(async (documentPath) => {\n\t\t\t\t\t\t\t\t\t\t\tconst filename = path.basename(documentPath, \".json\");\n\t\t\t\t\t\t\t\t\t\t\tconst fileContent = await fs.readFile(\n\t\t\t\t\t\t\t\t\t\t\t\tpath.resolve(directoryPath, documentPath),\n\t\t\t\t\t\t\t\t\t\t\t\t\"utf-8\",\n\t\t\t\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\t\t\t\t// TOOD: Validate the contents of the JSON file and skip on invalid documents.\n\t\t\t\t\t\t\t\t\t\t\t\tconst parsedContents = JSON.parse(fileContent);\n\n\t\t\t\t\t\t\t\t\t\t\t\trecordDocument[filename] = parsedContents;\n\t\t\t\t\t\t\t\t\t\t\t} catch {\n\t\t\t\t\t\t\t\t\t\t\t\t// We prefer to manually allow console logs despite the app being a CLI to catch wild/unwanted console logs better\n\t\t\t\t\t\t\t\t\t\t\t\t// eslint-disable-next-line no-console\n\t\t\t\t\t\t\t\t\t\t\t\tconsole.log(\n\t\t\t\t\t\t\t\t\t\t\t\t\t`Skipped document due to its invalid format: ${documentPath}`,\n\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}),\n\t\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\t\tawait this.manager.prismicRepository.pushDocuments({\n\t\t\t\t\t\t\t\t\t\tdomain: this.context.repository.domain,\n\t\t\t\t\t\t\t\t\t\tdocuments: recordDocument,\n\t\t\t\t\t\t\t\t\t\tsignature,\n\t\t\t\t\t\t\t\t\t});\n\n\t\t\t\t\t\t\t\t\ttask.title = \"Pushed all documents\";\n\t\t\t\t\t\t\t\t} catch {\n\t\t\t\t\t\t\t\t\ttask.skip(\"No document to push\");\n\n\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Cleaning up data push artifacts\",\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tconst root = await this.manager.project.getRoot();\n\t\t\t\t\t\t\t\tconst documentsDirectoryPath = path.resolve(root, \"documents\");\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tawait fs.rm(documentsDirectoryPath, {\n\t\t\t\t\t\t\t\t\t\tforce: true,\n\t\t\t\t\t\t\t\t\t\trecursive: true,\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t} catch {\n\t\t\t\t\t\t\t\t\t// Noop, it's not that big of a deal if we cannot delete this directory\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\ttask.title = \"Cleaned up data push artifacts\";\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: \"Pulling existing types...\",\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tconst { ids, errors } =\n\t\t\t\t\t\t\t\t\tawait this.manager.customTypes.readCustomTypeLibrary();\n\n\t\t\t\t\t\t\t\tif (errors.length > 0) {\n\t\t\t\t\t\t\t\t\t// TODO: Provide better error message.\n\t\t\t\t\t\t\t\t\tthrow new Error(\n\t\t\t\t\t\t\t\t\t\t`Failed to read custom type libraries: ${errors.join(\n\t\t\t\t\t\t\t\t\t\t\t\", \",\n\t\t\t\t\t\t\t\t\t\t)}`,\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tif (ids && ids.length > 0) {\n\t\t\t\t\t\t\t\t\ttask.skip(\"Types already exists\");\n\t\t\t\t\t\t\t\t\tparentTask.title = \"Synced data with Prismic\";\n\n\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tconst remoteTypes =\n\t\t\t\t\t\t\t\t\tawait this.manager.customTypes.fetchRemoteCustomTypes();\n\n\t\t\t\t\t\t\t\tawait Promise.all(\n\t\t\t\t\t\t\t\t\tremoteTypes.map(async (model) => {\n\t\t\t\t\t\t\t\t\t\tawait this.manager.customTypes.createCustomType({ model });\n\t\t\t\t\t\t\t\t\t}),\n\t\t\t\t\t\t\t\t);\n\n\t\t\t\t\t\t\t\ttask.title = \"Pulled existing types\";\n\t\t\t\t\t\t\t\tparentTask.title = \"Synced data with Prismic\";\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t]),\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected initializeProject(): Promise<void> {\n\t\treturn listrRun([\n\t\t\t{\n\t\t\t\ttitle: \"Initializing project...\",\n\t\t\t\ttask: async (_, parentTask) =>\n\t\t\t\t\t// We return another Listr instance in the event we have additional task to perform to initialize the project\n\t\t\t\t\tlistr([\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\ttitle: `Patching ${chalk.cyan(\"package.json\")} scripts...`,\n\t\t\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\t\t\tconst pkgPath = path.join(this.manager.cwd, \"package.json\");\n\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tconst pkgRaw = await fs.readFile(pkgPath, \"utf-8\");\n\t\t\t\t\t\t\t\t\tconst pkg = JSON.parse(pkgRaw);\n\n\t\t\t\t\t\t\t\t\tpkg.scripts ||= {};\n\n\t\t\t\t\t\t\t\t\tif (!pkg.scripts[START_SCRIPT_KEY]) {\n\t\t\t\t\t\t\t\t\t\tpkg.scripts[START_SCRIPT_KEY] = START_SCRIPT_VALUE;\n\n\t\t\t\t\t\t\t\t\t\t// Cheap indent detection based on https://github.com/sindresorhus/detect-indent (simplified because we're only dealing with JSON here)\n\t\t\t\t\t\t\t\t\t\tconst firstIndent = pkgRaw\n\t\t\t\t\t\t\t\t\t\t\t.split(\"\\n\")\n\t\t\t\t\t\t\t\t\t\t\t.find((line) => line.match(/^(?:( )+|\\t+)/));\n\t\t\t\t\t\t\t\t\t\tconst indent = firstIndent?.match(/^(?:( )+|\\t+)/)?.[0];\n\n\t\t\t\t\t\t\t\t\t\tawait fs.writeFile(\n\t\t\t\t\t\t\t\t\t\t\tpkgPath,\n\t\t\t\t\t\t\t\t\t\t\tJSON.stringify(\n\t\t\t\t\t\t\t\t\t\t\t\tpkg,\n\t\t\t\t\t\t\t\t\t\t\t\tnull,\n\t\t\t\t\t\t\t\t\t\t\t\tindent && indent !== \" \" ? indent : \" \",\n\t\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t} else if (\n\t\t\t\t\t\t\t\t\t\t!pkg.scripts[\"slicemachine\"].startsWith(START_SCRIPT_VALUE)\n\t\t\t\t\t\t\t\t\t) {\n\t\t\t\t\t\t\t\t\t\tthrow new Error(\"Script already exists\");\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t} catch (error) {\n\t\t\t\t\t\t\t\t\ttask.title = `Could not patch ${chalk.cyan(\n\t\t\t\t\t\t\t\t\t\t\"package.json\",\n\t\t\t\t\t\t\t\t\t)} scripts (warning)`;\n\t\t\t\t\t\t\t\t\tparentTask.title = `Initialized project (could not patch ${chalk.cyan(\n\t\t\t\t\t\t\t\t\t\t\"package.json\",\n\t\t\t\t\t\t\t\t\t)} scripts)`;\n\n\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tthis.context.projectInitialization ||= {};\n\t\t\t\t\t\t\t\tthis.context.projectInitialization.patchedScript = true;\n\n\t\t\t\t\t\t\t\ttask.title = `Patched ${chalk.cyan(\"package.json\")} scripts`;\n\t\t\t\t\t\t\t\tparentTask.title = `Initialized project (patched ${chalk.cyan(\n\t\t\t\t\t\t\t\t\t\"package.json\",\n\t\t\t\t\t\t\t\t)} scripts)`;\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t]),\n\t\t\t},\n\t\t]);\n\t}\n\n\tprotected initializePlugins(): Promise<void> {\n\t\treturn listrRun(\n\t\t\t[\n\t\t\t\t{\n\t\t\t\t\t// TODO: Revert when plugin are introduced to users\n\t\t\t\t\t// title: \"Initializing plugins...\",\n\t\t\t\t\ttitle: \"Initializing adapter...\",\n\t\t\t\t\ttask: async (_, task) => {\n\t\t\t\t\t\tconst updateOutput = (data: Buffer | string | null) => {\n\t\t\t\t\t\t\tif (data instanceof Buffer) {\n\t\t\t\t\t\t\t\ttask.output = data.toString();\n\t\t\t\t\t\t\t} else if (typeof data === \"string\") {\n\t\t\t\t\t\t\t\ttask.output = data;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t};\n\n\t\t\t\t\t\tawait this.manager.project.initProject({\n\t\t\t\t\t\t\tlog: updateOutput,\n\t\t\t\t\t\t});\n\n\t\t\t\t\t\t// TODO: Revert when plugin are introduced to users\n\t\t\t\t\t\t// task.title = \"Initialized plugins\";\n\t\t\t\t\t\ttask.title = \"Initialized adapter\";\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t],\n\t\t\t{ exitOnError: false },\n\t\t).catch(() => void 0);\n\t}\n}\n"],"names":["pkg","_","_b","_a","domain","maybeSuggestion"],"mappings":"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"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
3
|
const name = "@slicemachine/init";
|
|
4
|
-
const version = "2.6.
|
|
4
|
+
const version = "2.6.4-dev-upgrade-legacy.0";
|
|
5
5
|
const description = "Init Prismic Slice Machine in your project";
|
|
6
6
|
const keywords = [
|
|
7
7
|
"typescript",
|
|
@@ -54,7 +54,7 @@ const scripts = {
|
|
|
54
54
|
const dependencies = {
|
|
55
55
|
"@antfu/ni": "^0.20.0",
|
|
56
56
|
"@lihbr/listr-update-renderer": "^0.5.3",
|
|
57
|
-
"@slicemachine/manager": "^0.11.
|
|
57
|
+
"@slicemachine/manager": "^0.11.3-dev-upgrade-legacy.0",
|
|
58
58
|
chalk: "^4.1.2",
|
|
59
59
|
giget: "^1.1.2",
|
|
60
60
|
globby: "^13.1.3",
|
|
@@ -67,7 +67,7 @@ const dependencies = {
|
|
|
67
67
|
};
|
|
68
68
|
const devDependencies = {
|
|
69
69
|
"@size-limit/preset-small-lib": "8.2.4",
|
|
70
|
-
"@slicemachine/plugin-kit": "0.4.
|
|
70
|
+
"@slicemachine/plugin-kit": "0.4.17-dev-upgrade-legacy.0",
|
|
71
71
|
"@types/listr": "0.14.4",
|
|
72
72
|
"@types/prompts": "2.4.3",
|
|
73
73
|
"@types/semver": "7.3.13",
|
|
@@ -93,7 +93,7 @@ const devDependencies = {
|
|
|
93
93
|
"vite-plugin-sdk": "0.1.1",
|
|
94
94
|
vitest: "0.32.0"
|
|
95
95
|
};
|
|
96
|
-
const gitHead = "
|
|
96
|
+
const gitHead = "8271fdf73353ac1e38c8dd2cc5993f36c25bd9ae";
|
|
97
97
|
const pkg = {
|
|
98
98
|
name,
|
|
99
99
|
version,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
const name = "@slicemachine/init";
|
|
2
|
-
const version = "2.6.
|
|
2
|
+
const version = "2.6.4-dev-upgrade-legacy.0";
|
|
3
3
|
const description = "Init Prismic Slice Machine in your project";
|
|
4
4
|
const keywords = [
|
|
5
5
|
"typescript",
|
|
@@ -52,7 +52,7 @@ const scripts = {
|
|
|
52
52
|
const dependencies = {
|
|
53
53
|
"@antfu/ni": "^0.20.0",
|
|
54
54
|
"@lihbr/listr-update-renderer": "^0.5.3",
|
|
55
|
-
"@slicemachine/manager": "^0.11.
|
|
55
|
+
"@slicemachine/manager": "^0.11.3-dev-upgrade-legacy.0",
|
|
56
56
|
chalk: "^4.1.2",
|
|
57
57
|
giget: "^1.1.2",
|
|
58
58
|
globby: "^13.1.3",
|
|
@@ -65,7 +65,7 @@ const dependencies = {
|
|
|
65
65
|
};
|
|
66
66
|
const devDependencies = {
|
|
67
67
|
"@size-limit/preset-small-lib": "8.2.4",
|
|
68
|
-
"@slicemachine/plugin-kit": "0.4.
|
|
68
|
+
"@slicemachine/plugin-kit": "0.4.17-dev-upgrade-legacy.0",
|
|
69
69
|
"@types/listr": "0.14.4",
|
|
70
70
|
"@types/prompts": "2.4.3",
|
|
71
71
|
"@types/semver": "7.3.13",
|
|
@@ -91,7 +91,7 @@ const devDependencies = {
|
|
|
91
91
|
"vite-plugin-sdk": "0.1.1",
|
|
92
92
|
vitest: "0.32.0"
|
|
93
93
|
};
|
|
94
|
-
const gitHead = "
|
|
94
|
+
const gitHead = "8271fdf73353ac1e38c8dd2cc5993f36c25bd9ae";
|
|
95
95
|
const pkg = {
|
|
96
96
|
name,
|
|
97
97
|
version,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@slicemachine/init",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.4-dev-upgrade-legacy.0",
|
|
4
4
|
"description": "Init Prismic Slice Machine in your project",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@antfu/ni": "^0.20.0",
|
|
55
55
|
"@lihbr/listr-update-renderer": "^0.5.3",
|
|
56
|
-
"@slicemachine/manager": "^0.11.
|
|
56
|
+
"@slicemachine/manager": "^0.11.3-dev-upgrade-legacy.0",
|
|
57
57
|
"chalk": "^4.1.2",
|
|
58
58
|
"giget": "^1.1.2",
|
|
59
59
|
"globby": "^13.1.3",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@size-limit/preset-small-lib": "8.2.4",
|
|
69
|
-
"@slicemachine/plugin-kit": "0.4.
|
|
69
|
+
"@slicemachine/plugin-kit": "0.4.17-dev-upgrade-legacy.0",
|
|
70
70
|
"@types/listr": "0.14.4",
|
|
71
71
|
"@types/prompts": "2.4.3",
|
|
72
72
|
"@types/semver": "7.3.13",
|
|
@@ -92,5 +92,5 @@
|
|
|
92
92
|
"vite-plugin-sdk": "0.1.1",
|
|
93
93
|
"vitest": "0.32.0"
|
|
94
94
|
},
|
|
95
|
-
"gitHead": "
|
|
95
|
+
"gitHead": "8271fdf73353ac1e38c8dd2cc5993f36c25bd9ae"
|
|
96
96
|
}
|
|
@@ -172,7 +172,7 @@ export class SliceMachineInitProcess {
|
|
|
172
172
|
await this.createNewRepository();
|
|
173
173
|
}
|
|
174
174
|
|
|
175
|
-
await this.
|
|
175
|
+
await this.syncDataWithPrismic();
|
|
176
176
|
await this.initializeProject();
|
|
177
177
|
await this.initializePlugins();
|
|
178
178
|
} catch (error) {
|
|
@@ -315,6 +315,8 @@ export class SliceMachineInitProcess {
|
|
|
315
315
|
this.manager.customTypes.readCustomTypeLibrary(),
|
|
316
316
|
this.readDocuments(),
|
|
317
317
|
]);
|
|
318
|
+
|
|
319
|
+
// If repository exists, and there's anything to push
|
|
318
320
|
if (
|
|
319
321
|
slices.length > 0 ||
|
|
320
322
|
ctLibrary.ids.length > 0 ||
|
|
@@ -322,6 +324,11 @@ export class SliceMachineInitProcess {
|
|
|
322
324
|
) {
|
|
323
325
|
return true;
|
|
324
326
|
}
|
|
327
|
+
|
|
328
|
+
// If repository exists, and there might be things to pull
|
|
329
|
+
if (ctLibrary.ids.length === 0) {
|
|
330
|
+
return true;
|
|
331
|
+
}
|
|
325
332
|
} catch (e) {
|
|
326
333
|
return true;
|
|
327
334
|
}
|
|
@@ -1092,10 +1099,10 @@ ${chalk.cyan("?")} Your Prismic repository name`.replace("\n", ""),
|
|
|
1092
1099
|
return { signature, documents, directoryPath: documentsDirectoryPath };
|
|
1093
1100
|
}
|
|
1094
1101
|
|
|
1095
|
-
protected
|
|
1102
|
+
protected syncDataWithPrismic(): Promise<void> {
|
|
1096
1103
|
return listrRun([
|
|
1097
1104
|
{
|
|
1098
|
-
title: "
|
|
1105
|
+
title: "Syncing data with Prismic...",
|
|
1099
1106
|
task: (_, parentTask) =>
|
|
1100
1107
|
listr([
|
|
1101
1108
|
{
|
|
@@ -1191,7 +1198,7 @@ ${chalk.cyan("?")} Your Prismic repository name`.replace("\n", ""),
|
|
|
1191
1198
|
task: async (_, task) => {
|
|
1192
1199
|
assertExists(
|
|
1193
1200
|
this.context.repository,
|
|
1194
|
-
"Repository selection must be available through context to run `
|
|
1201
|
+
"Repository selection must be available through context to run `syncDataWithPrismic`",
|
|
1195
1202
|
);
|
|
1196
1203
|
|
|
1197
1204
|
try {
|
|
@@ -1201,7 +1208,6 @@ ${chalk.cyan("?")} Your Prismic repository name`.replace("\n", ""),
|
|
|
1201
1208
|
documentsRead === undefined ||
|
|
1202
1209
|
documentsRead.documents.length === 0
|
|
1203
1210
|
) {
|
|
1204
|
-
parentTask.title = "Pushed data to Prismic";
|
|
1205
1211
|
task.skip("No document to push");
|
|
1206
1212
|
|
|
1207
1213
|
return;
|
|
@@ -1243,9 +1249,7 @@ ${chalk.cyan("?")} Your Prismic repository name`.replace("\n", ""),
|
|
|
1243
1249
|
});
|
|
1244
1250
|
|
|
1245
1251
|
task.title = "Pushed all documents";
|
|
1246
|
-
parentTask.title = "Pushed data to Prismic";
|
|
1247
1252
|
} catch {
|
|
1248
|
-
parentTask.title = "Pushed data to Prismic";
|
|
1249
1253
|
task.skip("No document to push");
|
|
1250
1254
|
|
|
1251
1255
|
return;
|
|
@@ -1267,7 +1271,41 @@ ${chalk.cyan("?")} Your Prismic repository name`.replace("\n", ""),
|
|
|
1267
1271
|
}
|
|
1268
1272
|
|
|
1269
1273
|
task.title = "Cleaned up data push artifacts";
|
|
1270
|
-
|
|
1274
|
+
},
|
|
1275
|
+
},
|
|
1276
|
+
{
|
|
1277
|
+
title: "Pulling existing types...",
|
|
1278
|
+
task: async (_, task) => {
|
|
1279
|
+
const { ids, errors } =
|
|
1280
|
+
await this.manager.customTypes.readCustomTypeLibrary();
|
|
1281
|
+
|
|
1282
|
+
if (errors.length > 0) {
|
|
1283
|
+
// TODO: Provide better error message.
|
|
1284
|
+
throw new Error(
|
|
1285
|
+
`Failed to read custom type libraries: ${errors.join(
|
|
1286
|
+
", ",
|
|
1287
|
+
)}`,
|
|
1288
|
+
);
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
if (ids && ids.length > 0) {
|
|
1292
|
+
task.skip("Types already exists");
|
|
1293
|
+
parentTask.title = "Synced data with Prismic";
|
|
1294
|
+
|
|
1295
|
+
return;
|
|
1296
|
+
}
|
|
1297
|
+
|
|
1298
|
+
const remoteTypes =
|
|
1299
|
+
await this.manager.customTypes.fetchRemoteCustomTypes();
|
|
1300
|
+
|
|
1301
|
+
await Promise.all(
|
|
1302
|
+
remoteTypes.map(async (model) => {
|
|
1303
|
+
await this.manager.customTypes.createCustomType({ model });
|
|
1304
|
+
}),
|
|
1305
|
+
);
|
|
1306
|
+
|
|
1307
|
+
task.title = "Pulled existing types";
|
|
1308
|
+
parentTask.title = "Synced data with Prismic";
|
|
1271
1309
|
},
|
|
1272
1310
|
},
|
|
1273
1311
|
]),
|