Angular Mat-Icon不使用蒙版渲染SVG

时间:2019-03-15 21:26:33

标签: javascript angular svg angular-material material-design

我已经从Sketch导出了一系列.svgs(请参见下面的示例),我已经注册到MatIconRegistry,并且正在使用mat-icon组件进行显示。

但是我注意到,任何在Sketch中使用遮罩的图标(导出为<defs>)都无法正确显示,有时甚至完全显示错误的图标。

我知道mat-icon存在问题,因为文件在浏览器中呈现良好。当源文件不使用掩码时,mat-icon也可以很好地呈现(但是我们不能保证svgs没有掩码)

有人知道在Sketch或Angular中解决此问题的方法吗?

icon-registry.service.ts

import { MatIconRegistry } from '@angular/material/icon';
import { DomSanitizer } from '@angular/platform-browser';

@Injectable({
  providedIn: 'root',
})
export class MyIconRegistry {
  constructor(
    private matIconRegistry: MatIconRegistry, 
    private domSanitizer: DomSanitizer) {
      this.matIconRegistry.addSvgIcon(
        'dot',
        'path/to/icon-dot.svg'
      )
  }
}

myComponent.component.ts

...
@Component({
  selector: 'my-component',
  template: `<mat-icon svgIcon="dot"></mat-icon>`,
  styleUrls: ['./icon.scss'],
  encapsulation: ViewEncapsulation.Emulated,
})
...

myModule.module.ts

...
@NgModule({
  declarations: [MyComponent],
  providers: [MyIconRegistry],
  imports: [CommonModule, MatIconModule, HttpClientModule],
  exports: [MyComponent],
})

icon-dot.svg

<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
    <!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com -->
    <title>icon-dot</title>
    <desc>Created with Sketch.</desc>
    <defs>
        <circle id="path-1" cx="12" cy="12" r="8"></circle>
    </defs>
    <g id="Icons" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
        <g id="icon-dot">
            <mask id="mask-2" fill="white">
                <use xlink:href="#path-1"></use>
            </mask>
            <g id="Mask" fill-rule="nonzero"></g>
            <g id="Blue/" mask="url(#mask-2)" fill="#0A4ACE">
                <rect id="Rectangle" x="0" y="0" width="24" height="24"></rect>
            </g>
        </g>
    </g>
</svg>

1 个答案:

答案 0 :(得分:0)

对于以后遇到任何麻烦的人:

从技术上讲,我怀疑这个问题与mat-icon无关。呈现svg的错误是由于Sketch的非唯一蒙版和路径id的错误。

因此,为了解决此问题,我使用了ShadowDom封装,使每个svg在其自己的DOM中都是唯一的,并编写了自己的注入。

myComponent.component.ts

...
@Component({
  ...
  encapsulation: ViewEncapsulation.ShadowDom,
})
...

  ngOnChanges(changes: SimpleChanges){
    this.iconRegistry.getNamedSvgIcon(this.name).pipe(take(1)).subscribe(
      svg => {
        this.setSvgElement(svg)
      },
        (err: Error) => console.warn(`Error retrieving icon: ${err.message}`)
    )
  }

  private setSvgElement(svg: SVGElement){
    this.elementRef.nativeElement.shadowRoot.appendChild(svg)
  }