1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Angular Material】`mat-icon`を動的に表示したい

Last updated at Posted at 2019-12-22

はじめに

今回はAngular Materialの「MatIcon」を動的に表示する方法を共有する。

今回使用するソースコード

icon-example.component.html
<h2>アイコン増殖バグ</h2>

<button mat-flat-button (click)="addIcon()" color="accent">Add Button</button>

<div class="icon-area">
    <mat-icon>bug_report</mat-icon>
</div>
icon-example.component.ts
import { Component, ElementRef, Renderer2 } from '@angular/core';

@Component({
    selector: 'app-icon-example',
    templateUrl: './icon-example.component.html',
    styleUrls: ['./icon-example.component.scss'],
})
export class IconExampleComponent {
    constructor(private renderer: Renderer2, private elRef: ElementRef) {}

    /**
     * アイコンを追加する
     */
    public addIcon() {
        const addIcon = this.createIcon('bug_report');

        const iconDiv = this.elRef.nativeElement.querySelector('.icon-area');
        this.renderer.appendChild(iconDiv, addIcon);
    }

    /**
     * アイコンを作成する
     * @param iconName
     */
    private createIcon(iconName: string) {
        const icon = this.renderer.createElement('mat-icon');
        const text = this.renderer.createText(iconName);
        this.renderer.appendChild(icon, text);
        return icon;
    }
}

「Add Button」がクリックされるたびに虫のアイコンが増えるようにした。
これで実際にボタンを押してみる。
icon-add.gif

ありゃ、文字だけ追加されてアイコンが表示されない。

Classの追加も必要

mat-iconを追加するだけではダメで、Classも追加する必要がある。
追加するClassはmat-icon, material-iconsだ。

icon-example.component.ts
    /**
     * アイコンを作成する
     * @param iconName
     */
    private createIcon(iconName: string) {
        const icon = this.renderer.createElement('mat-icon');
        const text = this.renderer.createText(iconName);
        this.renderer.appendChild(icon, text);
        this.renderer.addClass(icon, 'mat-icon'); // ←追加
        this.renderer.addClass(icon, 'material-icons'); // ←追加
        return icon;
    }

実際に動かしてみる。
add-icon-success.gif
正常にアイコンが追加されるようになった。

まとめ

  • MatIconを動的に追加する場合は、Classも一緒につけよう。
  • つけるClassは、mat-icon, material-icons

参考

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?