-
Notifications
You must be signed in to change notification settings - Fork 8
refactor(igx-ts): Remove suffixes from services in templates #1547
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
Merged
damyanpetev
merged 12 commits into
master
from
copilot/update-template-service-directive-pipe-names
Mar 19, 2026
Merged
Changes from 10 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
00e61b6
Initial plan
Copilot 35b6398
Remove Angular suffixes from services/pipes/directives in igx-ts and …
Copilot f2ad806
Revert igx-ts-legacy template changes and yarn.lock
Copilot 6acd327
Revert yarn.lock to original state
Copilot c7a4a05
Revert pipe changes in igx-ts template
Copilot 1b8e074
fix: merge master
Hristo313 449e1c4
Rename localData/ directory to data/ in fintech-grid template
Copilot d5691e0
Merge branch 'master' into copilot/update-template-service-directive-…
Hristo313 51514d3
Merge branch 'master' into copilot/update-template-service-directive-…
Hristo313 03e72c6
refactor: remove NgModule files, migrate to standalone structure; fix…
Copilot c3f8f72
revert: undo module migration from side-nav-auth, keep variable renam…
Copilot 2729a59
refactor: rename service files to match TypeScript identifiers (user-…
Copilot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
...les/src/app/__path__/localData.service.ts → ...-grid/files/src/app/__path__/localData.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 0 additions & 48 deletions
48
packages/igx-templates/igx-ts/projects/side-nav-auth/files/src/app/app-module.ts
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
packages/igx-templates/igx-ts/projects/side-nav-auth/files/src/app/app.routes.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,6 @@ | ||
| import { Routes } from '@angular/router'; | ||
| import { authRoutes } from './authentication/authentication.routes'; | ||
|
|
||
| export const routes: Routes = []; | ||
| export const routes: Routes = [ | ||
| ...authRoutes | ||
| ]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...es/igx-templates/igx-ts/projects/side-nav-auth/files/src/app/authentication/auth.guard.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 0 additions & 13 deletions
13
.../igx-ts/projects/side-nav-auth/files/src/app/authentication/authentication-module.spec.ts
This file was deleted.
Oops, something went wrong.
67 changes: 0 additions & 67 deletions
67
...lates/igx-ts/projects/side-nav-auth/files/src/app/authentication/authentication-module.ts
This file was deleted.
Oops, something went wrong.
17 changes: 3 additions & 14 deletions
17
...tication/authentication-routing-module.ts → ...p/authentication/authentication.routes.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,24 +1,13 @@ | ||
| import { NgModule } from '@angular/core'; | ||
| import { RouterModule, Routes } from '@angular/router'; | ||
| import { Routes } from '@angular/router'; | ||
| import { AuthGuard } from './auth.guard'; | ||
| import { Profile } from './profile/profile'; | ||
| import { Redirect } from './redirect/redirect'; | ||
| import { ExternalAuthProvider } from './services/external-auth-configs'; | ||
| import { ExternalAuthRedirectUrl } from './services/external-auth.service'; | ||
| import { ExternalAuthRedirectUrl } from './services/external-auth'; | ||
|
|
||
| const authRoutes: Routes = [ | ||
| export const authRoutes: Routes = [ | ||
| { path: 'profile', component: Profile, canActivate: [AuthGuard] }, | ||
| { path: ExternalAuthRedirectUrl.Google, component: Redirect, data: { provider: ExternalAuthProvider.Google } }, | ||
| { path: ExternalAuthRedirectUrl.Facebook, component: Redirect, data: { provider: ExternalAuthProvider.Facebook } }, | ||
| { path: ExternalAuthRedirectUrl.Microsoft, component: Redirect, data: { provider: ExternalAuthProvider.Microsoft } } | ||
| ]; | ||
|
|
||
| @NgModule({ | ||
| imports: [ | ||
| RouterModule.forChild(authRoutes) | ||
| ], | ||
| exports: [ | ||
| RouterModule | ||
| ] | ||
| }) | ||
| export class AuthenticationRoutingModule { } |
9 changes: 4 additions & 5 deletions
9
packages/igx-templates/igx-ts/projects/side-nav-auth/files/src/app/authentication/index.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,8 @@ | ||
| export * from './auth.guard'; | ||
| export * from './authentication-routing-module'; | ||
| export * from './authentication-module'; | ||
| export * from './authentication.routes'; | ||
| export * from './models/login'; | ||
| export * from './models/register-info'; | ||
| export * from './models/user'; | ||
| export * from './services/authentication.service'; | ||
| export * from './services/external-auth.service'; | ||
| export * from './services/user.service'; | ||
| export * from './services/authentication'; | ||
| export * from './services/external-auth'; | ||
| export * from './services/user'; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.