mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-23 06:18:03 +08:00
24 lines
571 B
JavaScript
24 lines
571 B
JavaScript
import $ from '$';
|
|
|
|
let cachedUrl = null;
|
|
const getUrl = () => {
|
|
if (!cachedUrl) {
|
|
const version = $('#rlAppVersion').attr('content') || '0.0.0';
|
|
cachedUrl = `rainloop/v/${version}/static/css/svg/icons.svg`;
|
|
}
|
|
|
|
return cachedUrl;
|
|
};
|
|
|
|
export default {
|
|
template: '<b></b>',
|
|
viewModel: {
|
|
createViewModel: ({ icon = 'null' }, componentInfo) => {
|
|
if (componentInfo && componentInfo.element) {
|
|
$(componentInfo.element).replaceWith(
|
|
`<svg class="svg-icon svg-icon-${icon}"><use xlink:href="${getUrl()}#svg-icon-${icon}"></use></svg>`
|
|
);
|
|
}
|
|
}
|
|
}
|
|
};
|