You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/packages/ui-default/pages/home_preference.page.jsx

73 lines
2.1 KiB
React

import $ from 'jquery';
import { renderLanguageSelect } from 'vj/components/languageselect';
import { NamedPage } from 'vj/misc/Page';
import {
delay, getAvailableLangs, i18n, tpl,
} from 'vj/utils';
async function initCodeLangHelper() {
const $el = $(tpl`<div class="row" id="codelang-select"></div>`);
$('[name="codeLang"]')
.parent().parent().parent()
.parent()
.hide()
.after($el);
const main = {};
for (const key in window.LANGS) {
if (!key.includes('.') && !window.LANGS[key].hidden) main[key] = window.LANGS[key].display;
}
await delay(50);
renderLanguageSelect(
document.getElementById('codelang-select'),
$('[name="codeLang"]'),
getAvailableLangs(),
main,
[$('[name="codeLang"]').val()],
);
}
function supportFontFamily(f) {
const h = 'Arial';
if (f.toLowerCase() === h.toLowerCase()) return true;
const canvas = document.createElement('canvas');
canvas.width = 100;
canvas.height = 100;
const ctx = canvas.getContext('2d');
ctx.textAlign = 'center';
ctx.fillStyle = 'black';
ctx.textBaseline = 'middle';
const g = (j) => {
ctx.clearRect(0, 0, 100, 100);
ctx.font = `100px ${j}, ${h}`;
ctx.fillText('a', 50, 50);
const k = ctx.getImageData(0, 0, 100, 100).data;
return [].slice.call(k).filter((l) => l !== 0);
};
return g(h).join('') !== g(f).join('');
}
const page = new NamedPage('home_preference', () => {
initCodeLangHelper();
$('[name="fontFamily"] option, [name="codeFontFamily"] option').each(function () {
if (!supportFontFamily(this.value)) {
$(this).hide();
console.log(`Unsupported: ${this.value}`);
}
this.style.fontFamily = this.getAttribute('value');
this.textContent = i18n(this.textContent.trim());
});
function updateFont() {
this.style.fontFamily = $(this).val();
}
document.fonts.onloadingdone = () => {
$('[name="fontFamily"] option, [name="codeFontFamily"] option').each(function () {
if (supportFontFamily(this.value)) $(this).show();
});
};
$('[name="fontFamily"], [name="codeFontFamily"]').on('change', updateFont).each(updateFont);
});
export default page;