Skip to content

Commit

Permalink
refactor font loading
Browse files Browse the repository at this point in the history
  • Loading branch information
wissenbach committed May 12, 2017
1 parent c27fc3d commit b861c52
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 35 deletions.
38 changes: 3 additions & 35 deletions svg_rendering/page/debug.html
Expand Up @@ -11,6 +11,7 @@
<link rel="stylesheet" href="css/basic_layout.css">

<script type="text/javascript" src="./js-gen/webfontloader.js"></script>
<script type="text/javascript" src="./js-gen/loadwebfonts.js"></script>
<script type="text/javascript" src="./js-gen/Y_extract.js"></script>
<script type="text/javascript" src="./js-gen/svg-utils.js"></script>
<script type="text/javascript" src="./js-gen/faust.js"></script>
Expand Down Expand Up @@ -92,40 +93,7 @@ <h1>Transcript Generation Debugging</h1>
var help = document.getElementById("debughelp");
help.parentNode.removeChild(help);


var fontError = false;
var webFontConfig = {
custom: {
families: ['Ubuntu', 'Ubuntu Monospace', 'Gentium Plus'],
// we don not need to specify urls as they are specified in the css files
urls: ['/css/webfonts.css']
},
// do not time out if font can't be loaded
timeout: 10, //Number.MAX_VALUE,
active: function() {
// if we made it this far without 'fontinactive' occurring, then all
// fonts have been loaded
if (!Faust.TranscriptConfiguration.forceFontLoading || !fontError) {
Faust.io(json, transcriptGeneration.createDiplomaticSvg);
} else {
// do not try to render page
}

},
fontinactive: function(familyName, fvd) {
// font could not be loaded, abort
if (Faust.TranscriptConfiguration.forceFontLoading) {
fontError = true;
var message = "Error: web font could not be loaded: " + familyName + " " + fvd;
var htmlMessage = document.createElement('div');
htmlMessage.innerHTML = message;
document.body.append(htmlMessage);
throw(message);
}
}
};

WebFont.load(webFontConfig);
</script>
Faust.Fonts.active(function(){Faust.io(json, transcriptGeneration.createDiplomaticSvg);});
</script>
</body>
</html>
67 changes: 67 additions & 0 deletions svg_rendering/page/js-gen/loadwebfonts.js
@@ -0,0 +1,67 @@
/*
* Copyright (c) 2014 Faust Edition development team.
*
* This file is part of the Faust Edition.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

if (window.Faust === undefined) {
window.Faust = {};
}

(function (Faust) {

Fonts = {};
Fonts.active = function (callback) {


var fontError = false;
var webFontConfig = {
custom: {
families: ['Ubuntu', 'Ubuntu Monospace', 'Gentium Plus'],
// we don not need to specify urls as they are specified in the css files
urls: ['/css/webfonts.css']
},
// do not time out if font can't be loaded
timeout: 10, //Number.MAX_VALUE,
active: function () {
// if we made it this far without 'fontinactive' occurring, then all
// fonts have been loaded
if (!Faust.TranscriptConfiguration.forceFontLoading || !fontError) {
callback();
} else {
// do not try to render page
}

},
fontinactive: function (familyName, fvd) {
// font could not be loaded, abort
if (Faust.TranscriptConfiguration.forceFontLoading) {
fontError = true;
var message = "Error: web font could not be loaded: " + familyName + " " + fvd;
var htmlMessage = document.createElement('div');
htmlMessage.innerHTML = message;
document.body.append(htmlMessage);
throw(message);
}
}
};

WebFont.load(webFontConfig);
};

Faust.Fonts = Fonts;
})(Faust);

0 comments on commit b861c52

Please sign in to comment.