1
0
Fork 0
freesewing/lib/attributes.ts

54 lines
1.1 KiB
TypeScript
Raw Normal View History

2018-07-14 16:04:39 +00:00
export class Attributes {
list: any = {};
2018-07-14 16:04:39 +00:00
constructor(init?) {
for (let key in init) {
let val = init[key];
this.add(key, val);
}
return this;
}
2018-07-14 16:04:39 +00:00
/** Adds an attribute */
add(name: string, value: string): Attributes {
if(typeof this.list[name] === 'undefined') {
this.list[name] = [];
}
this.list[name].push(value);
2018-07-14 16:04:39 +00:00
return this;
}
/** Retrieves an attribute */
get(name: string): string {
if(typeof this.list[name] === 'undefined') return false;
else return this.list[name].join(' ');
}
2018-07-14 16:04:39 +00:00
/** Returns SVG code for attributes */
render(): string {
let svg = '';
for (let key in this.list) {
svg += ` ${key}="${this.list[key].join(' ')}"`;
2018-07-14 16:04:39 +00:00
}
return svg;
}
/** Returns SVG code for attributes with a fiven prefix
* typically used for data-text*/
renderIfPrefixIs(prefix:string = ''): string {
let svg = '';
let prefixLen = prefix.length;
for (let key in this.list) {
if(key.substr(0,prefixLen) === prefix) {
svg += ` ${key.substr(prefixLen)}="${this.list[key].join(' ')}"`;
}
}
return svg;
}
2018-07-14 16:04:39 +00:00
}