Files
angular__angular/aio/content/guide/routing-with-urlmatcher.md
Alan Agius 3598d212a6 docs: update to standalone and routing by default (#52293)
This commit covers several changes:
 - routing enabled by default
 - standalone by default

PR Close #52293
2023-10-25 16:37:52 -07:00

150 lines
5.5 KiB
Markdown

# Tutorial: Creating custom route matches
The Angular Router supports a powerful matching strategy that you can use to help users navigate your application.
This matching strategy supports static routes, variable routes with parameters, wildcard routes, and so on.
Also, build your own custom pattern matching for situations in which the URLs are more complicated.
In this tutorial, you'll build a custom route matcher using Angular's `UrlMatcher`.
This matcher looks for a Twitter handle in the URL.
For a working example of the final version of this tutorial, see the <live-example></live-example>.
## Objectives
Implement Angular's `UrlMatcher` to create a custom route matcher.
## Prerequisites
To complete this tutorial, you should have a basic understanding of the following concepts:
* JavaScript
* HTML
* CSS
* [Angular CLI](cli)
If you are unfamiliar with how Angular's router works, review [Using Angular routes in a single-page application](guide/router-tutorial).
## Create a sample application
Using the Angular CLI, create a new application, *angular-custom-route-match*.
In addition to the default Angular application framework, you will also create a *profile* component.
1. Create a new Angular project, *angular-custom-route-match*.
<code-example format="shell" language="shell">
ng new angular-custom-route-match
</code-example>
When prompted with `Would you like to add Angular routing?`, select `Y`.
When prompted with `Which stylesheet format would you like to use?`, select `CSS`.
After a few moments, a new project, `angular-custom-route-match`, is ready.
1. From your terminal, navigate to the `angular-custom-route-match` directory.
1. Create a component, *profile*.
<code-example format="shell" language="shell">
ng generate component profile
</code-example>
1. In your code editor, locate the file, `profile.component.html` and replace the placeholder content with the following HTML.
<code-example header="src/app/profile/profile.component.html" path="routing-with-urlmatcher/src/app/profile/profile.component.html"></code-example>
1. In your code editor, locate the file, `app.component.html` and replace the placeholder content with the following HTML.
<code-example header="src/app/app.component.html" path="routing-with-urlmatcher/src/app/app.component.html"></code-example>
## Configure your routes for your application
With your application framework in place, you next need to add routing capabilities to the `app.config.ts` file.
As a part of this process, you will create a custom URL matcher that looks for a Twitter handle in the URL.
This handle is identified by a preceding `@` symbol.
1. In your code editor, open your `app.config.ts` file.
1. Add an `import` statement for Angular's `provideRouter` and `withComponentInputBinding` as well as the application routes.
```
import {provideRouter, withComponentInputBinding} from '@angular/router';
import {routes} from './app.routes';
```
1. In the providers array, add a `provideRouter(routes, withComponentInputBinding())` statement.
1. Define the custom route matcher by adding the following code to the application routes.
<code-example header="src/app/app.routes.ts" path="routing-with-urlmatcher/src/app/app.routes.ts" region="matcher"></code-example>
This custom matcher is a function that performs the following tasks:
* The matcher verifies that the array contains only one segment
* The matcher employs a regular expression to ensure that the format of the username is a match
* If there is a match, the function returns the entire URL, defining a `username` route parameter as a substring of the path
* If there isn't a match, the function returns null and the router continues to look for other routes that match the URL
<div class="is-helpful">
A custom URL matcher behaves like any other route definition.
Define child routes or lazy loaded routes as you would with any other route.
</div>
## Reading the route parameters
With the custom matcher in place, you can now bind the route parameter in the `profile` component.
In your code editor, open your `profile.component.ts` file and create an `Input` matching the `username` parameter.
We added the `withComponentInputBinding` feature earlier
in `provideRouter`. This allows the `Router` to bind information directly to the route components.
```
@Input() username!: string;
```
## Test your custom URL matcher
With your code in place, you can now test your custom URL matcher.
1. From a terminal window, run the `ng serve` command.
<code-example format="shell" language="shell">
ng serve
</code-example>
1. Open a browser to `http://localhost:4200`.
You should see a single web page, consisting of a sentence that reads `Navigate to my profile`.
1. Click the **my profile** hyperlink.
A new sentence, reading `Hello, Angular!` appears on the page.
## Next steps
Pattern matching with the Angular Router provides you with a lot of flexibility when you have dynamic URLs in your application.
To learn more about the Angular Router, see the following topics:
* [In-app Routing and Navigation](guide/router)
* [Router API](api/router)
<div class="alert is-helpful">
This content is based on [Custom Route Matching with the Angular Router](https://medium.com/@brandontroberts/custom-route-matching-with-the-angular-router-fbdd48665483), by [Brandon Roberts](https://twitter.com/brandontroberts).
</div>
<!-- links -->
<!-- external links -->
<!-- end links -->
@reviewed 2023-10-24