Skip to content
Snippets Groups Projects
Commit ecfaedf0 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Load the path async instead of the whole svg

This means less dom change on load
parent 5fdea389
No related branches found
No related tags found
No related merge requests found
...@@ -30,18 +30,12 @@ class Icon extends LitElement { ...@@ -30,18 +30,12 @@ class Icon extends LitElement {
} }
render() { render() {
let svg = fetch('local/vpu-common/icons/' + this.name + '.json').then(response => { let path = fetch('local/vpu-common/icons/' + this.name + '.json')
if (!response.ok) .then(response => {
throw Error(response.statusText); if (!response.ok)
return response.json().then(data => { throw Error(response.statusText);
return html` return response.json();
<svg aria-labelledby="title" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" style="pointer-events: none; display: block; width: 100%; height: 100%;">
<title id="title">${this.name}</title>
<path d=${data} />
</svg>
`;
}); });
});
return html` return html`
<style> <style>
...@@ -50,7 +44,10 @@ class Icon extends LitElement { ...@@ -50,7 +44,10 @@ class Icon extends LitElement {
} }
</style> </style>
${until(svg)} <svg aria-labelledby="title" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" style="pointer-events: none; display: block; width: 100%; height: 100%;">
<title id="title">${this.name}</title>
<path d=${until(path)} />
</svg>
`; `;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment