91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Angular怎么利用service實現自定義服務

發布時間:2022-04-15 13:36:20 來源:億速云 閱讀:98 作者:iii 欄目:web開發

這篇文章主要介紹“Angular怎么利用service實現自定義服務”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“Angular怎么利用service實現自定義服務”文章能幫助大家解決問題。

Angular怎么利用service實現自定義服務

添加服務

我們在 app/services 中添加 notification.service.ts 服務文件(請使用命令行生成),添加相關的內容:

// notification.service.ts

import { 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.ts

import { Component, OnInit, HostBinding, OnDestroy } from '@angular/core';
// 新的知識點 rxjs
import { Subscription } from 'rxjs';
import {debounceTime} from 'rxjs/operators';
// 引入相關的服務
import { NotificationStatus, NotificationService } from '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.ts

import { NotificationService } from '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怎么利用service實現自定義服務”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阜新市| 广东省| 丹巴县| 铁力市| 类乌齐县| 沙雅县| 龙陵县| 南江县| 永福县| 濉溪县| 突泉县| 酒泉市| 建昌县| 湘乡市| 阳曲县| 毕节市| 视频| 新建县| 凤冈县| 湾仔区| 保德县| 五指山市| 兖州市| 布尔津县| 屏东市| 桓仁| 博湖县| 水城县| 新兴县| 封开县| 大竹县| 洛宁县| 金山区| 西安市| 九江市| 河北省| 江口县| 丽水市| 库车县| 牡丹江市| 青海省|