Skip to content
Snippets Groups Projects
Commit a37ea675 authored by Paul Kaplan's avatar Paul Kaplan
Browse files

Use fontInliner instead of entire SVGRenderer for showing costume tiles.

The fontInliner from the scratch-svg-renderer was changed recently to work entirely on strings, so we can use that instead of parsing/loading/possibly drawing/stringifying the entire SVG. 

This does not address the size-1 cache issue where the cache is invalidated any time there is more than 1 sprite. But that can be handled later.

Using the 4x CPU slowdown in chrome dev tools, on a simple costume that just has a single text element the getCostumeUrl time goes from 10ms to 1ms, very important for updating in a timely way.
parent ef59643c
No related branches found
No related tags found
No related merge requests found
import storage from './storage'; import storage from './storage';
import {SVGRenderer} from 'scratch-svg-renderer'; import {inlineSvgFonts} from 'scratch-svg-renderer';
// Contains 'font-family', but doesn't only contain 'font-family="none"' // Contains 'font-family', but doesn't only contain 'font-family="none"'
const HAS_FONT_REGEXP = 'font-family(?!="none")'; const HAS_FONT_REGEXP = 'font-family(?!="none")';
...@@ -21,9 +21,7 @@ const getCostumeUrl = (function () { ...@@ -21,9 +21,7 @@ const getCostumeUrl = (function () {
if (asset.assetType === storage.AssetType.ImageVector) { if (asset.assetType === storage.AssetType.ImageVector) {
const svgString = asset.decodeText(); const svgString = asset.decodeText();
if (svgString.match(HAS_FONT_REGEXP)) { if (svgString.match(HAS_FONT_REGEXP)) {
const svgRenderer = new SVGRenderer(); const svgText = inlineSvgFonts(svgString);
svgRenderer.loadString(svgString);
const svgText = svgRenderer.toString(true /* shouldInjectFonts */);
cachedUrl = `data:image/svg+xml;utf8,${encodeURIComponent(svgText)}`; cachedUrl = `data:image/svg+xml;utf8,${encodeURIComponent(svgText)}`;
} else { } else {
cachedUrl = asset.encodeDataURI(); cachedUrl = asset.encodeDataURI();
......
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