我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Angular怎么自定义notification

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Angular怎么自定义notification

今天小编给大家分享一下Angular怎么自定义notification的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。

效果图如下:

Angular怎么自定义notification

添加服务

我们在 app/services 中添加 notification.service.ts 服务文件(请使用命令行生成),添加相关的内容:

// notification.service.tsimport { Injectable } from '@angular/core';import { Observable, Subject } from 'rxjs';// 通知状态的枚举export enum NotificationStatus {  Process = "progress",  Success = "success",  Failure = "failure",  Ended = "ended"}@Injectable({  providedIn: 'root'})export class NotificationService {  private notify: Subject<NotificationStatus> = new Subject();  public messageObj: any = {    primary: '',    secondary: ''  }  // 转换成可观察体  public getNotification(): Observable<NotificationStatus> {    return this.notify.asObservable();  }  // 进行中通知  public showProcessNotification() {    this.notify.next(NotificationStatus.Process)  }  // 成功通知  public showSuccessNotification() {    this.notify.next(NotificationStatus.Success)  }  // 结束通知  public showEndedNotification() {    this.notify.next(NotificationStatus.Ended)  }  // 更改信息  public changePrimarySecondary(primary?: string, secondary?: string) {    this.messageObj.primary = primary;    this.messageObj.secondary = secondary  }  constructor() { }}

是不是很容易理解...

我们将 notify 变成可观察物体,之后发布各种状态的信息。

创建组件

我们在 app/components 这个存放公共组件的地方新建 notification 组件。所以你会得到下面的结构:

notification                                          ├── notification.component.html                     // 页面骨架├── notification.component.scss                     // 页面独有样式├── notification.component.spec.ts                  // 测试文件└── notification.component.ts                       // javascript 文件

我们定义 notification 的骨架:

<!-- notification.component.html --><!-- 支持手动关闭通知 --><button (click)="closeNotification()">关闭</button><h2>提醒的内容: {{ message }}</h2><!-- 自定义重点通知信息 --><p>{{ primaryMessage }}</p><!-- 自定义次要通知信息 --><p>{{ secondaryMessage }}</p>

接着,我们简单修饰下骨架,添加下面的样式:

// notification.component.scss:host {  position: fixed;  top: -100%;  right: 20px;  background-color: #999;  border: 1px solid #333;  border-radius: 10px;  width: 400px;  height: 180px;  padding: 10px;  // 注意这里的 active 的内容,在出现通知的时候才有  &.active {    top: 10px;  }  &.success {}  &.progress {}  &.failure {}  &.ended {}}

success, progress, failure, ended 这四个类名对应 notification service 定义的枚举,可以按照自己的喜好添加相关的样式。

最后,我们添加行为 javascript 代码。

// notification.component.tsimport { Component, OnInit, HostBinding, OnDestroy } from '@angular/core';// 新的知识点 rxjsimport { Subscription } from 'rxjs';import {debounceTime} from 'rxjs/operators';// 引入相关的服务import { NotificationStatus, NotificationService } from 'class="lazy" data-src/app/services/notification.service';@Component({  selector: 'app-notification',  templateUrl: './notification.component.html',  styleUrls: ['./notification.component.scss']})export class NotificationComponent implements OnInit, OnDestroy {    // 防抖时间,只读  private readonly NOTIFICATION_DEBOUNCE_TIME_MS = 200;    protected notificationSubscription!: Subscription;  private timer: any = null;  public message: string = ''    // notification service 枚举信息的映射  private reflectObj: any = {    progress: "进行中",    success: "成功",    failure: "失败",    ended: "结束"  }  @HostBinding('class') notificationCssClass = '';  public primaryMessage!: string;  public secondaryMessage!: string;  constructor(    private notificationService: NotificationService  ) { }  ngOnInit(): void {    this.init()  }  public init() {    // 添加相关的订阅信息    this.notificationSubscription = this.notificationService.getNotification()      .pipe(        debounceTime(this.NOTIFICATION_DEBOUNCE_TIME_MS)      )      .subscribe((notificationStatus: NotificationStatus) => {        if(notificationStatus) {          this.resetTimeout();          // 添加相关的样式          this.notificationCssClass = `active ${ notificationStatus }`          this.message = this.reflectObj[notificationStatus]          // 获取自定义首要信息          this.primaryMessage = this.notificationService.messageObj.primary;          // 获取自定义次要信息          this.secondaryMessage = this.notificationService.messageObj.secondary;          if(notificationStatus === NotificationStatus.Process) {            this.resetTimeout()            this.timer = setTimeout(() => {              this.resetView()            }, 1000)          } else {            this.resetTimeout();            this.timer = setTimeout(() => {              this.notificationCssClass = ''              this.resetView()            }, 2000)          }        }      })  }  private resetView(): void {    this.message = ''  }    // 关闭定时器  private resetTimeout(): void {    if(this.timer) {      clearTimeout(this.timer)    }  }  // 关闭通知  public closeNotification() {    this.notificationCssClass = ''    this.resetTimeout()  }    // 组件销毁  ngOnDestroy(): void {    this.resetTimeout();    // 取消所有的订阅消息    this.notificationSubscription.unsubscribe()  }}

在这里,我们引入了 rxjs 这个知识点,RxJS 是使用 Observables 的响应式编程的库,它使编写异步或基于回调的代码更容易。这是一个很棒的库,接下来的很多文章你会接触到它更多的内容。

这里我们使用了 debounce 防抖函数,函数防抖,就是指触发事件后,在 n 秒后只能执行一次,如果在 n 秒内又触发了事件,则会重新计算函数的执行时间。简单来说:当一个动作连续触发,只执行最后一次。

ps: throttle 节流函数:限制一个函数在一定时间内只能执行一次

调用

因为这个一个全局的服务,我们在 app.component.html 中调用此组件:

// app.component.html<router-outlet></router-outlet><app-notification></app-notification>

为了方便演示,我们在 user-list.component.html 中添加按钮,方便触发演示:

// user-list.component.html<button (click)="showNotification()">click show notification</button>

触发相关的代码:

// user-list.component.tsimport { NotificationService } from 'class="lazy" data-src/app/services/notification.service';// ...constructor(  private notificationService: NotificationService) { }// 展示通知showNotification(): void {  this.notificationService.changePrimarySecondary('主要信息 1');  this.notificationService.showProcessNotification();  setTimeout(() => {    this.notificationService.changePrimarySecondary('主要信息 2', '次要信息 2');    this.notificationService.showSuccessNotification();  }, 1000)}

以上就是“Angular怎么自定义notification”这篇文章的所有内容,感谢各位的阅读!相信大家阅读完这篇文章都有很大的收获,小编每天都会为大家更新不同的知识,如果还想学习更多的知识,请关注编程网行业资讯频道。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Angular怎么自定义notification

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Angular怎么自定义notification

今天小编给大家分享一下Angular怎么自定义notification的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。效果图如
2023-07-04

Angular学习之聊聊notification(自定义服务)

本篇文章带大家继续angular的学习,简单了解一下angular中的自定义服务 notification,希望对大家有所帮助!
2023-05-14

Notification自定义界面

前言之前在做一个手机的播放器,需要做到在通知栏显示控制播放的界面,如下:这是让服务在前台运行就可以实现的(可以参考我的前一篇文章Service在前台运行),今天我们就要实现Notification的自定义界面,当然就不实现如上图所示的了,而
2023-05-30

Angular中的管道怎么自定义

本篇内容介绍了“Angular中的管道怎么自定义”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!什么是管道(PIPE)PIPE,翻译为管道。A
2023-07-04

Android自定义Notification添加点击事件

前言在上一篇文章中《Notification自定义界面》中我们实现了自定义的界面,那么我们该怎么为自定义的界面添加点击事件呢?像酷狗在通知栏 有“上一首”,“下一首”等控制按钮,我们需要对按钮的点击事件进行响应,不过方法和之前的点击设置不一
2023-05-30

Android编程自定义Notification实例分析

本文实例讲述了Android编程自定义Notification的用法。分享给大家供大家参考,具体如下: Notification是一种让你的应用程序在不使用Activity的情况下警示用户,Notification是看不见的程序组件警示用户
2022-06-06

Angular中如何自定义创建指令

小编给大家分享一下Angular中如何自定义创建指令,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!指令介绍在 Angular 中有三种类型的指令:组件,有模板的指
2023-06-14

Notification消息通知 自定义消息通知内容布局

具体操作:自定义消息通知内容布局;点击界面中心的“点击发送消息”TextView控件,模拟发送通知消息,通知栏接收消息,点击几次则发送几次,点击通知栏消息,跳转到详情界面。1.activity_main.xml:
2023-05-30

uniapp怎么自定义tabbar

这篇文章主要讲解了“uniapp怎么自定义tabbar”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“uniapp怎么自定义tabbar”吧!思路实现思路就是通过通过自定义view来实现我们这
2023-07-06

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录