@carbon/icons-angular
Version:
Angular components for icons in digital and software products using the Carbon Design System
178 lines (175 loc) • 8.34 kB
JavaScript
import { __decorate, __metadata } from 'tslib';
import { Input, Component, ElementRef, Directive, NgModule } from '@angular/core';
import { getAttributes } from '@carbon/icon-helpers';
var CaretDownDirective_1;
let CaretDownComponent = class CaretDownComponent {
constructor() {
this.focusable = false;
}
};
__decorate([
Input(),
__metadata("design:type", String)
], CaretDownComponent.prototype, "ariaLabel", void 0);
__decorate([
Input(),
__metadata("design:type", String)
], CaretDownComponent.prototype, "ariaLabelledby", void 0);
__decorate([
Input(),
__metadata("design:type", Boolean)
], CaretDownComponent.prototype, "ariaHidden", void 0);
__decorate([
Input(),
__metadata("design:type", String)
], CaretDownComponent.prototype, "title", void 0);
__decorate([
Input(),
__metadata("design:type", Boolean)
], CaretDownComponent.prototype, "focusable", void 0);
__decorate([
Input(),
__metadata("design:type", String)
], CaretDownComponent.prototype, "innerClass", void 0);
__decorate([
Input(),
__metadata("design:type", String)
], CaretDownComponent.prototype, "size", void 0);
CaretDownComponent = __decorate([
Component({
selector: "ibm-icon-caret-down",
template: `
<svg
ibmIconCaretDown
[size]="size"
[ariaLabel]="ariaLabel"
[ariaLabelledby]="ariaLabelledby"
[ariaHidden]="ariaHidden"
[title]="title"
[isFocusable]="focusable"
[attr.class]="innerClass">
</svg>
`
})
], CaretDownComponent);
let CaretDownDirective = CaretDownDirective_1 = class CaretDownDirective {
constructor(elementRef) {
this.elementRef = elementRef;
this.isFocusable = false;
this.icons = {
"32": {
metadata: { "moduleName": "CaretDown32", "filepath": "caret--down/32.js", "descriptor": { "elem": "svg", "attrs": { "xmlns": "http://www.w3.org/2000/svg", "viewBox": "0 0 32 32", "fill": "currentColor", "width": 32, "height": 32 }, "content": [{ "elem": "path", "attrs": { "d": "M24 12L16 22 8 12z" } }], "name": "caret--down", "size": 32 }, "size": 32 },
svg: `<svg focusable="false" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg" fill="currentColor" width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><path d="M24 12L16 22 8 12z"></path></svg>`
},
"24": {
metadata: { "moduleName": "CaretDown24", "filepath": "caret--down/24.js", "descriptor": { "elem": "svg", "attrs": { "xmlns": "http://www.w3.org/2000/svg", "viewBox": "0 0 32 32", "fill": "currentColor", "width": 24, "height": 24 }, "content": [{ "elem": "path", "attrs": { "d": "M24 12L16 22 8 12z" } }], "name": "caret--down", "size": 24 }, "size": 24 },
svg: `<svg focusable="false" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg" fill="currentColor" width="24" height="24" viewBox="0 0 32 32" aria-hidden="true"><path d="M24 12L16 22 8 12z"></path></svg>`
},
"20": {
metadata: { "moduleName": "CaretDown20", "filepath": "caret--down/20.js", "descriptor": { "elem": "svg", "attrs": { "xmlns": "http://www.w3.org/2000/svg", "viewBox": "0 0 32 32", "fill": "currentColor", "width": 20, "height": 20 }, "content": [{ "elem": "path", "attrs": { "d": "M24 12L16 22 8 12z" } }], "name": "caret--down", "size": 20 }, "size": 20 },
svg: `<svg focusable="false" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg" fill="currentColor" width="20" height="20" viewBox="0 0 32 32" aria-hidden="true"><path d="M24 12L16 22 8 12z"></path></svg>`
},
"16": {
metadata: { "moduleName": "CaretDown16", "filepath": "caret--down/16.js", "descriptor": { "elem": "svg", "attrs": { "xmlns": "http://www.w3.org/2000/svg", "viewBox": "0 0 32 32", "fill": "currentColor", "width": 16, "height": 16 }, "content": [{ "elem": "path", "attrs": { "d": "M24 12L16 22 8 12z" } }], "name": "caret--down", "size": 16 }, "size": 16 },
svg: `<svg focusable="false" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg" fill="currentColor" width="16" height="16" viewBox="0 0 32 32" aria-hidden="true"><path d="M24 12L16 22 8 12z"></path></svg>`
},
"glyph": {
metadata: { "descriptor": { "elem": "svg", "attrs": { "xmlns": "http://www.w3.org/2000/svg", "viewBox": "0 0 8 4", "fill": "currentColor", "width": "8", "height": "4" }, "content": [{ "elem": "path", "attrs": { "d": "M8 0L4 4 0 0z" } }], "name": "caret--down", "size": "glyph" }, "moduleName": "CaretDownGlyph", "filepath": "caret--down/index.js", "size": "glyph" },
svg: `<svg focusable="false" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg" fill="currentColor" width="8" height="4" viewBox="0 0 8 4" aria-hidden="true"><path d="M8 0L4 4 0 0z"></path></svg>`
},
};
}
ngAfterViewInit() {
const svg = this.elementRef.nativeElement;
svg.setAttribute("xmlns", "http://www.w3.org/2000/svg");
const icon = this.icons[this.size];
const domParser = new DOMParser();
const rawSVG = icon.svg;
const svgElement = domParser.parseFromString(rawSVG, "image/svg+xml").documentElement;
let node = svgElement.firstChild;
while (node) {
// importNode makes a clone of the node
// this ensures we keep looping over the nodes in the parsed document
svg.appendChild(svg.ownerDocument.importNode(node, true));
node = node.nextSibling;
}
const attributes = getAttributes({
width: icon.metadata.descriptor.attrs.height,
height: icon.metadata.descriptor.attrs.height,
viewBox: icon.metadata.descriptor.attrs.viewBox,
title: this.title,
"aria-label": this.ariaLabel,
"aria-labelledby": this.ariaLabelledby,
"aria-hidden": this.ariaHidden,
focusable: this.isFocusable.toString()
});
const attrKeys = Object.keys(attributes);
for (let i = 0; i < attrKeys.length; i++) {
const key = attrKeys[i];
const value = attributes[key];
if (key === "title") {
continue;
}
if (value) {
svg.setAttribute(key, value);
}
}
if (attributes.title) {
const title = document.createElement("title");
title.textContent = attributes.title;
CaretDownDirective_1.titleIdCounter++;
title.setAttribute("id", `caret-down-${CaretDownDirective_1.titleIdCounter}`);
svg.appendChild(title);
svg.setAttribute("aria-labelledby", `caret-down-${CaretDownDirective_1.titleIdCounter}`);
}
}
};
CaretDownDirective.titleIdCounter = 0;
CaretDownDirective.ctorParameters = () => [
{ type: ElementRef }
];
__decorate([
Input(),
__metadata("design:type", String)
], CaretDownDirective.prototype, "ariaLabel", void 0);
__decorate([
Input(),
__metadata("design:type", String)
], CaretDownDirective.prototype, "ariaLabelledby", void 0);
__decorate([
Input(),
__metadata("design:type", Boolean)
], CaretDownDirective.prototype, "ariaHidden", void 0);
__decorate([
Input(),
__metadata("design:type", String)
], CaretDownDirective.prototype, "title", void 0);
__decorate([
Input(),
__metadata("design:type", Boolean)
], CaretDownDirective.prototype, "isFocusable", void 0);
__decorate([
Input(),
__metadata("design:type", String)
], CaretDownDirective.prototype, "size", void 0);
CaretDownDirective = CaretDownDirective_1 = __decorate([
Directive({
selector: "[ibmIconCaretDown]"
}),
__metadata("design:paramtypes", [ElementRef])
], CaretDownDirective);
let CaretDownModule = class CaretDownModule {
};
CaretDownModule = __decorate([
NgModule({
declarations: [
CaretDownComponent,
CaretDownDirective,
],
exports: [
CaretDownComponent,
CaretDownDirective,
]
})
], CaretDownModule);
export { CaretDownComponent, CaretDownDirective, CaretDownModule };