mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-08 21:33:10 +02:00
54 lines
1.3 KiB
TypeScript
54 lines
1.3 KiB
TypeScript
/**
|
|
* Replace fontawesome symbols
|
|
*/
|
|
|
|
import * as fontawesome from '@fortawesome/fontawesome';
|
|
import regular from '@fortawesome/fontawesome-free-regular';
|
|
import solid from '@fortawesome/fontawesome-free-solid';
|
|
import brands from '@fortawesome/fontawesome-free-brands';
|
|
|
|
fontawesome.library.add(regular, solid, brands);
|
|
|
|
export const pattern = /%fa:(.+?)%/g;
|
|
|
|
export const replacement = (match: string, key: string) => {
|
|
const args = key.split(' ');
|
|
let prefix = 'fas';
|
|
const classes: string[] = [];
|
|
let transform = '';
|
|
let name;
|
|
|
|
args.forEach(arg => {
|
|
if (arg == 'R' || arg == 'S' || arg == 'B') {
|
|
prefix =
|
|
arg == 'R' ? 'far' :
|
|
arg == 'S' ? 'fas' :
|
|
arg == 'B' ? 'fab' :
|
|
'';
|
|
} else if (arg.startsWith('.')) {
|
|
classes.push(`fa-${arg.substr(1)}`);
|
|
} else if (arg.startsWith('-')) {
|
|
transform = arg.substr(1).split('|').join(' ');
|
|
} else {
|
|
name = arg;
|
|
}
|
|
});
|
|
|
|
const icon = fontawesome.icon({ prefix, iconName: name } as fontawesome.IconLookup, {
|
|
classes: classes,
|
|
transform: fontawesome.parse.transform(transform)
|
|
});
|
|
|
|
if (icon) {
|
|
return `<i data-fa class="${name}">${icon.html[0]}</i>`;
|
|
} else {
|
|
console.warn(`'${name}' not found in fa`);
|
|
return '';
|
|
}
|
|
};
|
|
|
|
export default (src: string) => {
|
|
return src.replace(pattern, replacement);
|
|
};
|
|
|
|
export const fa = fontawesome;
|