2017-06-21 06:40:28 +00:00
|
|
|
import { setCharWidth } from 'state/app';
|
2018-04-05 19:13:32 +00:00
|
|
|
import { stringWidth } from 'utils';
|
2017-05-26 06:20:00 +00:00
|
|
|
|
2020-05-18 23:29:22 +00:00
|
|
|
export default async function fonts({ store }) {
|
2018-03-25 00:34:41 +00:00
|
|
|
let { charWidth } = localStorage;
|
2017-05-26 06:20:00 +00:00
|
|
|
if (charWidth) {
|
|
|
|
store.dispatch(setCharWidth(parseFloat(charWidth)));
|
2020-05-18 23:29:22 +00:00
|
|
|
} else {
|
|
|
|
await document.fonts.load('16px Roboto Mono');
|
2017-05-26 06:20:00 +00:00
|
|
|
|
2020-05-18 23:29:22 +00:00
|
|
|
charWidth = stringWidth(' ', '16px Roboto Mono');
|
|
|
|
store.dispatch(setCharWidth(charWidth));
|
|
|
|
localStorage.charWidth = charWidth;
|
|
|
|
}
|
2017-05-26 06:20:00 +00:00
|
|
|
}
|