# How To Add In-App Notifications To Your Angular App

> How to add an in-app notification center to your Angular app

Canonical: https://novu.co/blog/how-to-add-in-app-notifications-to-your-angular-app/

Markdown: https://novu.co/blog/how-to-add-in-app-notifications-to-your-angular-app.md

Last updated: 2023-05-02T14:53:00.000Z

How to add an in-app notification center to your Angular app

Authors: Emil Pearce

Published: 2023-05-02T14:53:00.000Z

Category: How to

### TL;DR

This article explains how to add an in-app notification center to your Angular app and gives you a few reasons to smile 🙃

> In one of the screenshots, there’s a reference to one of my all-time favorite movies. If you can correctly guess which movie it is and leave your answer in the comments section, I’ll make sure to acknowledge you in some way in my upcoming article. 🤓

Now that you’re happy, we can start the tutorial.

Many notifications that may be convenient or necessary for your use case are available.

Here are some notification (communication) channels you are probably familiar with:

- In-App

- SMS

- Emails

- Chat (Discord, Slack, MS Teams, WhatsApp, Telegram)

- Push

However, we will eat only 1/5 of this delicious pie – In-App notification. This communication channel allows you to interact with your users within your application.

Assuming you’ve not been living under a rock for the past decade, let’s observe an example of an In-App event-based notification workflow for a social media app like Instagram:

1. User opens the Instagram app and scrolls through their feed, looking at photos and videos posted by other users.

1. The user posts a photo or video to their own Instagram profile.

1. Another user sees the post and likes it.

1. The Instagram app detects the like event and triggers a notification to the user who posted the content.

1. The notification appears on the user’s screen, notifying them that another user has liked their post.

1. The user can either dismiss the notification or tap on it to open the app and view the user who liked their post.

1. If the user taps on the notification and opens the app, they can see the profile of the user who liked their post and engages with them by liking their posts or following their account.

Now that we know what we’re doing let’s integrate In-App notifications into our app.

Well…It’s not a chicken and egg type of question; we need to have our chicken first – our app.

I recently started experimenting with Angular and have grown quite fond of this framework, but I will not be trying to convince you to join to the dark side.

Feel free to visit the deployed version: [https://in-app-notification-with-angular.vercel.app/](<https://in-app-notification-with-angular.vercel.app/>)

Or clone this [repo](<https://github.com/iampearceman/in-app-notification-with-angular>)

That’s what it should look like:

## Create an Angular app

Prerequisites: (The things you need to ensure you have not lost your hair)

Before we start, make sure you have the following installed on your system:

- Node.js

- NPM (Node Package Manager)

- Angular CLI (Command Line Interface)

- Angular version &gt; 0.15.0

If you still need to install these tools, you can download and install them from their official websites.

### Step 1: Creating a new Angular app

To create a new Angular app, open a terminal or command prompt and run the following command:

```bash
ng new my-app
```

Here, `my-app` is the name of your new Angular app. This command will create a new Angular app with a basic file structure and all the necessary dependencies installed.

### Step 2: Starting the development server

Navigate to the app directory by running the following command:

```bash
cd my-app
```

Once you are in the app directory, you can start the development server by running the following command:

```bash
ng serve
```

This command will start the development server and launch your app in the default browser. You can access your app by navigating to `http://localhost:4200/`.

### Step 3: Modifying the app

Now that your app is up and running, you can start modifying it to fit your requirements. You can modify the app by editing the files located in the `src` directory.

- `index.html`: This file is the main entry point of your app.

- `app.component.ts`: This file contains the main component of your app.

- `app.component.html`: This file contains the HTML template for your app component.

- `app.component.css`: This file contains the CSS styles for your app component.

- `app.component.spec.ts`: This file contains unit tests for the App root.

You can modify these files to add new components, change the layout, and add tests or new functionality to your app.

## Signing up for Novu

We will use an out-of-the-box solution for our notifications because we are lazy and constantly looking for shortcuts in life

(those millennials….)

If you tried to build a notification system by yourself in the past, before reading this, you will love me in a few moments.

We will be using Novu, as it’s an open-source notification infrastructure that enables us to trigger an event-based notification workflow.

### Step 1: Sign Up

Click this [link](<https://web.novu.co/auth/signup>)

### Step 2: Creating A Workflow

You can follow the Get Started guide or head to [notification templates](<https://web.novu.co/templates>) and create your template (workflow)

## Adding a notification center

### Step 1: Installation

In the terminal, navigate to the root directory of your Angular application.

```bash
cd my-app
```

Run the following command to generate a new component:

```bash
npm install @novu/notification-center-angular

or

yarn add @novu/notification-center-angular
```

### Step 2: Adding Novu Module

Now, navigate to the `**app.module.ts**`** file (my-app/src/app/app.module.ts)**

```javascript
// my-app/src/app/app.module.ts
****
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }
```

Import `CUSTOM_ELEMENTS_SCHEMA` from `'@angular/core'`.

```javascript
// my-app/src/app/app.module.ts

import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule
  ],
  schemas: [CUSTOM_ELEMENTS_SCHEMA],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }
```

Add Novu’s notification center module

```javascript
// my-app/src/app/app.module.ts

import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import { NotificationCenterModule } from '@novu/notification-center-angular';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    NotificationCenterModule
  ],
  schemas: [CUSTOM_ELEMENTS_SCHEMA],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }
```

### Step 3: Configuring Application Environments

Using the Angular CLI, start by running the [generate environments command](<https://angular.io/cli/generate#environments-command>) shown here to create the `src/environments/` directory and configure the project to use these files.

```bash
ng generate environments
```

Navigate to `my-app/src/environments/environment.ts` and add the following variables: `subscriberId`, `applicationIdentifier`

```javascript
export const environment = {
    production: false,
    subscriberId: "",
    applicationIdentifier: ""
};
```

These variables are needed for the `GET` request our notification center will make to Novu’s API to actually push notifications into the feed.

Now we need to add those variables:

`**Application Identifier**` can be found here:[https://web.novu.co/settings](<https://web.novu.co/settings>) (Novu’s settings section)

`**subscriberId**` can be found here: [https://web.novu.co/subscribers](<https://web.novu.co/subscribers>) (Novu’s Subscribers section)

Now add it into your `my-app/src/environments/environment.ts` file

```javascript
export const environment = {
    production: true,
    subscriberId: "",
    applicationIdentifier: ""
};
```

and to the `my-app/src/environments/environment.development.ts` file

```javascript
export const environment = {
    production: false,
    subscriberId: "",
    applicationIdentifier: ""
};
```

Let’s head to `my-app/src/app/app.component.ts` file

```javascript
import { Component } from '@angular/core';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  title = 'my-app';
}
```

The `**app.component.ts**` file is a critical part of an Angular application, as it defines the root component and provides the foundation for the rest of the app’s functionality.

Now, we are going to import the `environment` variables to make them accessible in the `app.component.html` and the `styles` properties of our notification center (there are many properties, but you can discover them later on)

```javascript
import { Component } from '@angular/core';
import { environment } from '../environments/environment';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  title = 'my-app';

  subscriberId = environment.subscriberId;
  applicationIdentifier = environment.applicationIdentifier;

styles = {
    bellButton: {
      root: {
        svg: {
          color: 'white',
          width: '45px',
          height: '40px',
          fill: 'white',
        },
      },
      dot: {
        rect: {
          fill: 'rgb(221, 0, 49)',
          strokeWidth: '0.2',
          stroke: 'white',
          width: '3.5px',
          height: '3.5px',
        },
        left: '40%',
      },
    },
    header: {
      root: {
        backgroundColor: '',
        '&:hover': { backgroundColor: '' },
        '.some_class': { color: '' },
      },
    },
    layout: {
      root: {
        backgroundColor: '',
      },
    },
    popover: {
      arrow: {
        backgroundColor: '',
        border: '',
      },
    },
  };

  sessionLoaded = (data: unknown) => {
    console.log('loaded', { data });
  };
}
```

You might see some errors in the `\[localhost:4200\](http://localhost:4200)` we will fix it now!

This occurs because the Angular component is generated as a wrapper around the original React component. This approach is clever, as it allows Novu’s engineers to focus on creating and developing things in the React way. Additionally, many other frameworks can still use the created components using the wrapping approach.

We need to add `@types/react` as dev dependency for the angular component to work properly.

Open your terminal and navigate to the app root directory and type the following:

```bash
npm i @types/react

or

yarn add @types/react
```

Now head to the `my-app/tsconfig.json` file

```javascript
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
  "compileOnSave": false,
  "compilerOptions": {
    "baseUrl": "./",
    "outDir": "./dist/out-tsc",
    "forceConsistentCasingInFileNames": true,
    "strict": true,
    "noImplicitOverride": true,
    "noPropertyAccessFromIndexSignature": true,
    "noImplicitReturns": true,
    "noFallthroughCasesInSwitch": true,
    "sourceMap": true,
    "declaration": false,
    "downlevelIteration": true,
    "experimentalDecorators": true,
    "moduleResolution": "node",
    "importHelpers": true,
    "target": "ES2022",
    "module": "ES2022",
    "useDefineForClassFields": false,
    "lib": [
      "ES2022",
      "dom"
    ]
  },
  "angularCompilerOptions": {
    "enableI18nLegacyMessageIdFormat": false,
    "strictInjectionParameters": true,
    "strictInputAccessModifiers": true,
    "strictTemplates": true
  }
}
```

And we’re going to add `"allowSyntheticDefaultImports": true` to the `compilerOptions` array.

```javascript
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
  "compileOnSave": false,
  "compilerOptions": {
    "allowSyntheticDefaultImports": true,
    "baseUrl": "./",
    "outDir": "./dist/out-tsc",
    "forceConsistentCasingInFileNames": true,
    "strict": true,
    "noImplicitOverride": true,
    "noPropertyAccessFromIndexSignature": true,
    "noImplicitReturns": true,
    "noFallthroughCasesInSwitch": true,
    "sourceMap": true,
    "declaration": false,
    "downlevelIteration": true,
    "experimentalDecorators": true,
    "moduleResolution": "node",
    "importHelpers": true,
    "target": "ES2022",
    "module": "ES2022",
    "useDefineForClassFields": false,
    "lib": [
      "ES2022",
      "dom"
    ]
  },
  "angularCompilerOptions": {
    "enableI18nLegacyMessageIdFormat": false,
    "strictInjectionParameters": true,
    "strictInputAccessModifiers": true,
    "strictTemplates": true
  }
}
```

To see the error resolved, you might need to go to the terminal that is running the app and serve the app again for `compilerOptions` changes to take effect.

### Step 4: Add the notification center component

Open the `my-app/src/app/app.component.html` file.

This file contain the CSS code along with the HTML one – ideally you should separate the CSS to the `my-app/src/app/app.component.css` file, but it’s not mandatory.

We will add our notification center to the .toolbar div.

Paste the following into your `app.component.html` file:

```cshtml
</notification-center-component>
  </div>
```

The div should look like this:

```cshtml
"
  />
  Welcome</span>
    </div>

    </notification-center-component>
      </div>

        " fill="#fff"/>
      </svg>
    </a>

        "/>
      </svg>
    </a>
</div>
```

And in the `&lt;style&gt;` tag, we also want to add some margin to our `#bell-icon` so that it looks good next to the other icons.

```css
.toolbar #bell-icon {
    height: '';
    margin: 0 16px;
}
```

And now you should see the bell icon (the notification center) in the toolbar section of your app

## Test the notification center

It’s going to be very awkward if you will fail, but don’t let it discourage you and go over the previous steps one more time thoroughly to make sure you haven’t missed/skipped anything.

Now let’s test our notification workflow (template):

You should see a red dot indicating that you have received a notification.

And that’s it!

This is what we’d sought to achieve at the beginning of this tutorial.If you’ve followed till this part and your app is working, pat yourself on the back. Congratulations, you did well!

Going forward, I’ll be sharing many such tutorials and apps in Angular so make sure you stay tuned for that.

Until next time,Pearceman
