Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(autocomplete): fix the generation of the autocomplete script and prevent duplication on enable/disable #5794

Merged
merged 2 commits into from
Apr 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
94 changes: 77 additions & 17 deletions lib/common/services/auto-completion-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ export class AutoCompletionService implements IAutoCompletionService {
"###-begin-%s-completion-###";
private static TABTAB_COMPLETION_END_REGEX_PATTERN =
"###-end-%s-completion-###";
private static GENERATED_TABTAB_COMPLETION_END =
"###-end-ns-completions-section-###";
private static GENERATED_TABTAB_COMPLETION_START =
"###-begin-ns-completions-section-###";

constructor(
private $fs: IFileSystem,
Expand Down Expand Up @@ -70,6 +74,16 @@ export class AutoCompletionService implements IAutoCompletionService {
return tabTabRegex;
}

private getTabTabCompletionsRegex(): RegExp {
return new RegExp(
util.format(
"%s[\\s\\S]*%s",
AutoCompletionService.GENERATED_TABTAB_COMPLETION_START,
AutoCompletionService.GENERATED_TABTAB_COMPLETION_END
)
);
}

private removeObsoleteAutoCompletion(): void {
// In previous releases we were writing directly in .bash_profile, .bashrc, .zshrc and .profile - remove this old code
const shellProfilesToBeCleared = this.shellProfiles;
Expand Down Expand Up @@ -107,6 +121,43 @@ export class AutoCompletionService implements IAutoCompletionService {
});
}

private removeOboleteTabTabCompletion(text: string) {
try {
let newText = text.replace(this.getTabTabObsoleteRegex("ns"), "");

newText = newText.replace(this.getTabTabObsoleteRegex("nsc"), "");

newText = newText.replace(
this.getTabTabObsoleteRegex("nativescript"),
""
);

newText = newText.replace(this.getTabTabObsoleteRegex("tns"), "");

return newText;
} catch (error) {
this.$logger.trace(
"Error while trying to disable autocompletion for '%s' file. Error is:\n%s",
error.toString()
);

return text;
}
}

@cache()
private get completionAliasDefinition() {
const pattern = "compdef _nativescript.js_yargs_completions %s";
const ns = util.format(pattern, "ns");
const tns = util.format(pattern, "tns");
return util.format(
"\n%s\n%s\n%s\n",
ns,
tns,
AutoCompletionService.GENERATED_TABTAB_COMPLETION_END
);
}

@cache()
private get completionShellScriptContent() {
const startText = util.format(
Expand Down Expand Up @@ -284,24 +335,9 @@ export class AutoCompletionService implements IAutoCompletionService {
if (this.$fs.exists(filePath)) {
const contents = this.$fs.readText(filePath);
const regExp = new RegExp(
util.format(
"%s\\s+completion\\s+--\\s+",
this.$staticConfig.CLIENT_NAME.toLowerCase()
)
AutoCompletionService.GENERATED_TABTAB_COMPLETION_START
);
let matchCondition = contents.match(regExp);
if (this.$staticConfig.CLIENT_NAME_ALIAS) {
matchCondition =
matchCondition ||
contents.match(
new RegExp(
util.format(
"%s\\s+completion\\s+--\\s+",
this.$staticConfig.CLIENT_NAME_ALIAS.toLowerCase()
)
)
);
}

if (matchCondition) {
doUpdate = false;
Expand All @@ -316,9 +352,33 @@ export class AutoCompletionService implements IAutoCompletionService {
__dirname,
`../../../bin/${clientExecutableFileName}.js`
);

if (this.$fs.exists(filePath)) {
const existingText = this.$fs.readText(filePath);
let newText = existingText.replace(
this.getTabTabCompletionsRegex(),
""
);
newText = this.removeOboleteTabTabCompletion(newText);
if (newText !== existingText) {
this.$logger.trace(
"Remove existing AutoCompletion from file %s.",
filePath
);
this.$fs.writeFile(filePath, newText);
}
}
// The generated seems to be inconsistent in it's start/end markers so adding our own.

this.$fs.appendFile(
filePath,
`\n${AutoCompletionService.GENERATED_TABTAB_COMPLETION_START}\n`
);
await this.$childProcess.exec(
`"${process.argv[0]}" "${pathToExecutableFile}" completion >> "${filePath}"`
`"${process.argv[0]}" "${pathToExecutableFile}" completion_generate_script >> "${filePath}"`
);
this.$fs.appendFile(filePath, this.completionAliasDefinition);

this.$fs.chmod(filePath, "0644");
}
} catch (err) {
Expand Down