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

[Angular] Angular DI: Using Inject instead of Constructor #24585

Merged
merged 3 commits into from
Dec 18, 2023

Conversation

qmonmert
Copy link
Contributor


Please make sure the below checklist is followed for Pull Requests.

When you are still working on the PR, consider converting it to Draft (below reviewers) and adding skip-ci label, you can still see CI build result at your branch.

@qmonmert qmonmert force-pushed the angularinject branch 6 times, most recently from 235a11c to 9f793be Compare December 17, 2023 17:21
@qmonmert qmonmert marked this pull request as ready for review December 18, 2023 14:50
@qmonmert qmonmert requested a review from mshima December 18, 2023 14:50
mshima
mshima previously approved these changes Dec 18, 2023
Comment on lines 28 to 30
constructor() {
super();
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unused constructor

Suggested change
constructor() {
super();
}

import { RouterStateSnapshot, TitleStrategy } from "@angular/router";
<%_ if (enableTranslation) { _%>
import { TranslateService } from "@ngx-translate/core";
<%_ } _%>

@Injectable()
export class AppPageTitleStrategy extends TitleStrategy {

constructor(<%_ if (enableTranslation) { _%>private translateService: TranslateService<%_ } _%>) {
<%_ if (enableTranslation) { _%>private translateService = inject(TranslateService);<%_ } _%>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<%_ if (enableTranslation) { _%>private translateService = inject(TranslateService);<%_ } _%>
<%_ if (enableTranslation) { _%>
private translateService = inject(TranslateService);
<%_ } _%>

@mshima mshima enabled auto-merge (squash) December 18, 2023 17:52
@mshima mshima merged commit 57e2a55 into jhipster:main Dec 18, 2023
39 checks passed
@deepu105 deepu105 added this to the 8.2.0 milestone Mar 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants