Merge branch 'feature/can2div' into develop

This commit is contained in:
Book Pauk
2019-01-24 21:59:28 +07:00
3 changed files with 169 additions and 153 deletions

View File

@@ -3,69 +3,96 @@ export default class DrawHelper {
return `${size}px ${this.fontName}`; return `${size}px ${this.fontName}`;
} }
drawPercentBar(context, x, y, w, h, bookPos, textLength) { drawPercentBar(x, y, w, h, font, fontSize, bookPos, textLength) {
const pad = 3; const pad = 3;
const fh = h - 2*pad; const fh = h - 2*pad;
const fh2 = fh/2; const fh2 = fh/2;
const t1 = `${Math.floor((bookPos + 1)/1000)}k/${Math.floor(textLength/1000)}k`; const t1 = `${Math.floor((bookPos + 1)/1000)}k/${Math.floor(textLength/1000)}k`;
const w1 = context.measureText(t1).width + fh2; const w1 = this.measureTextFont(t1, font) + fh2;
const read = (bookPos + 1)/textLength; const read = (bookPos + 1)/textLength;
const t2 = `${(read*100).toFixed(2)}%`; const t2 = `${(read*100).toFixed(2)}%`;
const w2 = context.measureText(t2).width; const w2 = this.measureTextFont(t2, font);
let w3 = w - w1 - w2; let w3 = w - w1 - w2;
let out = '';
if (w1 + w2 <= w) if (w1 + w2 <= w)
context.fillText(t1, x, y + h - 2); out += this.fillTextShift(t1, x, y, font, fontSize);
if (w1 + w2 + w3 <= w && w3 > (10 + fh2)) { if (w1 + w2 + w3 <= w && w3 > (10 + fh2)) {
const barWidth = w - w1 - w2 - fh2; const barWidth = w - w1 - w2 - fh2;
context.strokeRect(x + w1, y + pad + 1, barWidth, fh - 2); out += this.strokeRect(x + w1, y + pad, barWidth, fh - 2, this.statusBarColor);
context.fillRect(x + w1 + 2, y + pad + 3, (barWidth - 4)*read, fh - 6); out += this.fillRect(x + w1 + 2, y + pad + 2, (barWidth - 4)*read, fh - 6, this.statusBarColor);
} }
if (w1 <= w) if (w1 <= w)
context.fillText(t2, x + w1 + w3, y + h - 2); out += this.fillTextShift(t2, x + w1 + w3, y, font, fontSize);
return out;
} }
async drawStatusBar(context, statusBarTop, statusBarHeight, statusBarColor, bookPos, textLength, title) { drawStatusBar(statusBarTop, statusBarHeight, bookPos, textLength, title) {
const y = (statusBarTop ? 1 : this.realHeight - statusBarHeight);
context.fillStyle = this.backgroundColor; let out = `<div class="layout" style="` +
context.fillRect(0, y, this.realWidth, statusBarHeight); `width: ${this.realWidth}px; height: ${statusBarHeight}px; ` +
`color: ${this.statusBarColor}; background-color: ${this.backgroundColor}">`;
context.font = 'bold ' + this.fontBySize(statusBarHeight - 6); const fontSize = statusBarHeight*0.75;
context.fillStyle = statusBarColor; const font = 'bold ' + this.fontBySize(fontSize);
context.strokeStyle = statusBarColor;
context.fillRect(0, (statusBarTop ? statusBarHeight : y), this.realWidth, 1); out += this.fillRect(0, (statusBarTop ? statusBarHeight : 0), this.realWidth, 1, this.statusBarColor);
const date = new Date(); const date = new Date();
const time = ` ${date.getHours().toString().padStart(2, '0')}:${date.getMinutes().toString().padStart(2, '0')} `; const time = `${date.getHours().toString().padStart(2, '0')}:${date.getMinutes().toString().padStart(2, '0')}`;
const timeW = context.measureText(time).width; const timeW = this.measureTextFont(time, font);
context.fillText(time, this.realWidth - timeW, y + statusBarHeight - 2); out += this.fillTextShift(time, this.realWidth - timeW - fontSize, 2, font, fontSize);
title = ' ' + title; out += this.fillTextShift(this.fittingString(title, this.realWidth/2 - fontSize - 3, font), fontSize, 2, font, fontSize);
context.fillText(this.fittingString(context, title, this.realWidth/2 - 3), 0, y + statusBarHeight - 2);
this.drawPercentBar(context, this.realWidth/2, y, this.realWidth/2 - timeW, statusBarHeight, bookPos, textLength); out += this.drawPercentBar(this.realWidth/2, 2, this.realWidth/2 - timeW - 2*fontSize, statusBarHeight, font, fontSize, bookPos, textLength);
out += '</div>';
return out;
} }
fittingString(context, str, maxWidth) { statusBarClickable(statusBarTop, statusBarHeight) {
let w = context.measureText(str).width; return `<div class="layout" style="position: absolute; ` +
`left: 0px; top: ${statusBarTop ? 1 : this.realHeight - statusBarHeight + 1}px; ` +
`width: ${this.realWidth/2}px; height: ${statusBarHeight}px; cursor: pointer"></div>`;
}
fittingString(str, maxWidth, font) {
let w = this.measureTextFont(str, font);
const ellipsis = '…'; const ellipsis = '…';
const ellipsisWidth = context.measureText(ellipsis).width; const ellipsisWidth = this.measureTextFont(ellipsis, font);
if (w <= maxWidth || w <= ellipsisWidth) { if (w <= maxWidth || w <= ellipsisWidth) {
return str; return str;
} else { } else {
let len = str.length; let len = str.length;
while (w >= maxWidth - ellipsisWidth && len-- > 0) { while (w >= maxWidth - ellipsisWidth && len-- > 0) {
str = str.substring(0, len); str = str.substring(0, len);
w = context.measureText(str).width; w = this.measureTextFont(str, font);
} }
return str + ellipsis; return str + ellipsis;
} }
} }
fillTextShift(text, x, y, font, size, css) {
return this.fillText(text, x, y + size*this.fontShift, font, css);
}
fillText(text, x, y, font, css) {
css = (css ? css : '');
return `<div style="position: absolute; left: ${x}px; top: ${y}px; font: ${font}; ${css}">${text}</div>`;
}
fillRect(x, y, w, h, color) {
return `<div style="position: absolute; left: ${x}px; top: ${y}px; ` +
`width: ${w}px; height: ${h}px; background-color: ${color}"></div>`;
}
strokeRect(x, y, w, h, color) {
return `<div style="position: absolute; left: ${x}px; top: ${y}px; ` +
`width: ${w}px; height: ${h}px; box-sizing: border-box; border: 1px solid ${color}"></div>`;
}
} }

View File

@@ -1,15 +1,22 @@
<template> <template>
<div ref="main" class="main" @click.capture="onMouseClick"> <div ref="main" class="main">
<canvas :style="canvasStyle1" ref="canvas1" class="canvas" @mousedown.prevent.stop="onMouseDown" @mouseup.prevent.stop="onMouseUp" <div v-show="activeCanvas" class="layout">
<div v-html="page1"></div>
</div>
<div v-show="!activeCanvas" class="layout">
<div v-html="page2"></div>
</div>
<div v-show="showStatusBar" ref="statusBar" class="layout">
<div v-html="statusBar"></div>
</div>
<div ref="layoutEvents" class="layout events" @mousedown.prevent.stop="onMouseDown" @mouseup.prevent.stop="onMouseUp"
@wheel.prevent.stop="onMouseWheel" @wheel.prevent.stop="onMouseWheel"
@touchstart.stop="onTouchStart" @touchend.stop="onTouchEnd" @touchcancel.prevent.stop="onTouchCancel" @touchstart.stop="onTouchStart" @touchend.stop="onTouchEnd" @touchcancel.prevent.stop="onTouchCancel"
oncontextmenu="return false;"> oncontextmenu="return false;">
</canvas> <div v-show="showStatusBar" v-html="statusBarClickable" @mousedown.prevent.stop @touchstart.stop
<canvas :style="canvasStyle2" ref="canvas2" class="canvas" @mousedown.prevent.stop="onMouseDown" @mouseup.prevent.stop="onMouseUp" @click.prevent.stop="onStatusBarClick"></div>
@wheel.prevent.stop="onMouseWheel" </div>
@touchstart.stop="onTouchStart" @touchend.stop="onTouchEnd" @touchcancel.prevent.stop="onTouchCancel" <canvas ref="offscreenCanvas" style="display: none"></canvas>
oncontextmenu="return false;">
</canvas>
</div> </div>
</template> </template>
@@ -33,6 +40,11 @@ export default @Component({
}) })
class TextPage extends Vue { class TextPage extends Vue {
activeCanvas = false; activeCanvas = false;
showStatusBar = false;
page1 = null;
page2 = null;
statusBar = null;
statusBarClickable = null;
lastBook = null; lastBook = null;
bookPos = 0; bookPos = 0;
@@ -63,13 +75,16 @@ class TextPage extends Vue {
this.prepareNextPage(); this.prepareNextPage();
}, 100); }, 100);
this.debouncedDrawStatusBar = _.throttle(() => {
this.drawStatusBar();
}, 60);
this.$root.$on('resize', () => {this.$nextTick(this.onResize)}); this.$root.$on('resize', () => {this.$nextTick(this.onResize)});
this.mobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent); this.mobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent);
} }
mounted() { mounted() {
this.canvas1 = this.$refs.canvas1; this.context = this.$refs.offscreenCanvas.getContext('2d');
this.canvas2 = this.$refs.canvas2;
} }
hex2rgba(hex, alpha = 1) { hex2rgba(hex, alpha = 1) {
@@ -78,36 +93,12 @@ class TextPage extends Vue {
} }
async calcDrawProps() { async calcDrawProps() {
this.context1 = this.canvas1.getContext('2d');
this.context2 = this.canvas2.getContext('2d');
this.realWidth = this.$refs.main.clientWidth; this.realWidth = this.$refs.main.clientWidth;
this.realHeight = this.$refs.main.clientHeight; this.realHeight = this.$refs.main.clientHeight;
let ratio = window.devicePixelRatio; this.$refs.layoutEvents.style.width = this.realWidth + 'px';
if (ratio) { this.$refs.layoutEvents.style.height = this.realHeight + 'px';
this.canvas1.width = this.realWidth*ratio;
this.canvas1.height = this.realHeight*ratio;
this.canvas1.style.width = this.$refs.main.clientWidth + 'px';
this.canvas1.style.height = this.$refs.main.clientHeight + 'px';
this.context1.scale(ratio, ratio);
this.canvas2.width = this.realWidth*ratio;
this.canvas2.height = this.realHeight*ratio;
this.canvas2.style.width = this.$refs.main.clientWidth + 'px';
this.canvas2.style.height = this.$refs.main.clientHeight + 'px';
this.context2.scale(ratio, ratio);
} else {
this.canvas1.width = this.realWidth;
this.canvas1.height = this.realHeight;
this.canvas2.width = this.realWidth;
this.canvas2.height = this.realHeight;
}
this.context1.textAlign = 'left';
this.context2.textAlign = 'left';
this.context1.textBaseline = 'bottom';
this.context2.textBaseline = 'bottom';
this.activeCanvas = false; this.activeCanvas = false;
this.w = this.realWidth - 2*this.indent; this.w = this.realWidth - 2*this.indent;
@@ -120,13 +111,13 @@ class TextPage extends Vue {
this.parsed.w = this.w;// px, ширина текста this.parsed.w = this.w;// px, ширина текста
this.parsed.font = this.font; this.parsed.font = this.font;
this.parsed.wordWrap = this.wordWrap; this.parsed.wordWrap = this.wordWrap;
this.parsed.context = this.context1; this.parsed.measureText = this.measureText;
this.parsed.fontByStyle = this.fontByStyle;
} }
this.statusBarColor = this.hex2rgba(this.textColor, this.statusBarColorAlpha); this.statusBarColor = this.hex2rgba(this.textColor, this.statusBarColorAlpha);
this.currentTransition = ''; this.currentTransition = '';
this.pageChangeDirectionDown = true; this.pageChangeDirectionDown = true;
this.fontShift = (this.fontShifts[this.fontName] ? this.fontShifts[this.fontName] : 0)/100;
//drawHelper //drawHelper
this.drawHelper.realWidth = this.realWidth; this.drawHelper.realWidth = this.realWidth;
@@ -135,6 +126,24 @@ class TextPage extends Vue {
this.drawHelper.backgroundColor = this.backgroundColor; this.drawHelper.backgroundColor = this.backgroundColor;
this.drawHelper.statusBarColor = this.statusBarColor; this.drawHelper.statusBarColor = this.statusBarColor;
this.drawHelper.fontName = this.fontName; this.drawHelper.fontName = this.fontName;
this.drawHelper.fontShift = this.fontShift;
this.drawHelper.measureText = this.measureText;
this.drawHelper.measureTextFont = this.measureTextFont;
this.$refs.statusBar.style.left = '0px';
this.$refs.statusBar.style.top = (this.statusBarTop ? 1 : this.realHeight - this.statusBarHeight) + 'px';
this.statusBarClickable = this.drawHelper.statusBarClickable(this.statusBarTop, this.statusBarHeight);
}
measureText(text, style) {// eslint-disable-line no-unused-vars
this.context.font = this.fontByStyle(style);
return this.context.measureText(text).width;
}
measureTextFont(text, font) {// eslint-disable-line no-unused-vars
this.context.font = font;
return this.context.measureText(text).width;
} }
async loadFonts() { async loadFonts() {
@@ -157,15 +166,28 @@ class TextPage extends Vue {
this.linesDown = null; this.linesDown = null;
//preloaded fonts //preloaded fonts
this.fontList = ['12px ReaderDefault', '12px Arial', '12px ComicSansMS', '12px OpenSans', '12px Roboto', '12px ArialNarrow', this.fontShifts = {//%
'12px Georgia', '12px Tahoma', '12px Helvetica', '12px CenturySchoolbook']; ReaderDefault: 0,
Arial: 5,
ComicSansMS: -12,
OpenSans: 0,
Roboto: 0,
ArialNarrow: 0,
Georgia: 0,
Tahoma: 0,
Helvetica: 0,
CenturySchoolbook: 0,
}
this.fontList = [];
for (let fontName in this.fontShifts)
this.fontList.push(`12px ${fontName}`);
//default draw props //default draw props
this.textColor = '#000000'; this.textColor = '#000000';
this.backgroundColor = '#478355'; this.backgroundColor = '#478355';
this.fontStyle = '';// 'bold','italic' this.fontStyle = '';// 'bold','italic'
this.fontSize = 35;// px this.fontSize = 35;// px
this.fontName = 'Arial'; this.fontName = 'ComicSansMS';
this.lineInterval = 7;// px, межстрочный интервал this.lineInterval = 7;// px, межстрочный интервал
this.textAlignJustify = true;// выравнивание по ширине this.textAlignJustify = true;// выравнивание по ширине
this.p = 50;// px, отступ параграфа this.p = 50;// px, отступ параграфа
@@ -231,22 +253,6 @@ class TextPage extends Vue {
return `${style.italic ? 'italic' : ''} ${style.bold ? 'bold' : ''} ${this.fontSize}px ${this.fontName}`; return `${style.italic ? 'italic' : ''} ${style.bold ? 'bold' : ''} ${this.fontSize}px ${this.fontName}`;
} }
get context() {
return (this.activeCanvas ? this.context1 : this.context2);
}
get canvas() {
return (this.activeCanvas ? this.canvas1 : this.canvas2);
}
get canvasStyle1() {
return (this.activeCanvas ? {'z-index': 11} : {'z-index': 10});
}
get canvasStyle2() {
return (this.activeCanvas ? {'z-index': 10} : {'z-index': 11});
}
draw(immediate) { draw(immediate) {
if (this.book && this.bookPos > 0 && this.bookPos >= this.parsed.textLength) { if (this.book && this.bookPos > 0 && this.bookPos >= this.parsed.textLength) {
this.doEnd(); this.doEnd();
@@ -254,10 +260,12 @@ class TextPage extends Vue {
} }
this.activeCanvas = !this.activeCanvas; this.activeCanvas = !this.activeCanvas;
const context = this.context;
if (immediate) { if (immediate) {
this.drawPage(context, this.bookPos); if (this.activeCanvas)
this.page1 = this.drawPage(this.bookPos);
else
this.page2 = this.drawPage(this.bookPos);
} else { } else {
if (this.pageChangeDirectionDown && this.pagePrepared && this.bookPos == this.bookPosPrepared) { if (this.pageChangeDirectionDown && this.pagePrepared && this.bookPos == this.bookPosPrepared) {
this.linesDown = this.linesDownNext; this.linesDown = this.linesDownNext;
@@ -265,7 +273,10 @@ class TextPage extends Vue {
this.pagePrepared = false; this.pagePrepared = false;
this.debouncedPrepareNextPage(); this.debouncedPrepareNextPage();
} else { } else {
this.drawPage(context, this.bookPos); if (this.activeCanvas)
this.page1 = this.drawPage(this.bookPos);
else
this.page2 = this.drawPage(this.bookPos);
this.pagePrepared = false; this.pagePrepared = false;
this.debouncedPrepareNextPage(); this.debouncedPrepareNextPage();
} }
@@ -282,21 +293,23 @@ class TextPage extends Vue {
this.currentTransition = ''; this.currentTransition = '';
this.pageChangeDirectionDown = false;//true только если PgDown this.pageChangeDirectionDown = false;//true только если PgDown
} }
this.debouncedDrawStatusBar();
} }
drawPage(context, bookPos, nextChangeLines) { drawPage(bookPos, nextChangeLines) {
if (!this.lastBook) if (!this.lastBook)
return; return;
context.fillStyle = this.backgroundColor; let out = `<div class="layout" style="width: ${this.realWidth}px; height: ${this.realHeight}px;` +
context.fillRect(0, 0, this.realWidth, this.realHeight); ` color: ${this.textColor}; background-color: ${this.backgroundColor}">`;
if (!this.book || !this.parsed.textLength) if (!this.book || !this.parsed.textLength) {
return; out += '</div>';
return out;
}
context.font = this.font; const spaceWidth = this.measureText(' ', {});
context.fillStyle = this.textColor;
const spaceWidth = context.measureText(' ').width;
const lines = this.parsed.getLines(bookPos, 2*this.pageLineCount); const lines = this.parsed.getLines(bookPos, 2*this.pageLineCount);
if (!nextChangeLines) { if (!nextChangeLines) {
@@ -307,7 +320,7 @@ class TextPage extends Vue {
this.linesUpNext = this.parsed.getLines(bookPos, -2*this.pageLineCount); this.linesUpNext = this.parsed.getLines(bookPos, -2*this.pageLineCount);
} }
let y = -this.lineInterval/2 + (this.h - this.pageLineCount*this.lineHeight)/2; let y = -this.lineInterval/2 + (this.h - this.pageLineCount*this.lineHeight)/2 + this.fontSize*this.fontShift;
if (this.showStatusBar) if (this.showStatusBar)
y += this.statusBarHeight*(this.statusBarTop ? 1 : 0); y += this.statusBarHeight*(this.statusBarTop ? 1 : 0);
@@ -328,13 +341,15 @@ class TextPage extends Vue {
}*/ }*/
let indent = this.indent + (line.first ? this.p : 0); let indent = this.indent + (line.first ? this.p : 0);
y += this.lineHeight;
let lineText = ''; let lineText = '';
let center = false; let center = false;
let centerStyle = {};
for (const part of line.parts) { for (const part of line.parts) {
lineText += part.text; lineText += part.text;
center = center || part.style.center; center = center || part.style.center;
if (part.style.center)
centerStyle = part.style.center;
} }
let filled = false; let filled = false;
@@ -349,13 +364,13 @@ class TextPage extends Vue {
let x = indent; let x = indent;
for (const part of line.parts) { for (const part of line.parts) {
context.font = this.fontByStyle(part.style); const font = this.fontByStyle(part.style);
let partWords = part.text.split(' '); let partWords = part.text.split(' ');
for (let i = 0; i < partWords.length; i++) { for (let i = 0; i < partWords.length; i++) {
let word = partWords[i]; let word = partWords[i];
context.fillText(word, x, y); out += this.drawHelper.fillText(word, x, y, font);
x += context.measureText(word).width + (i < partWords.length - 1 ? space : 0); x += this.measureText(word, part.style) + (i < partWords.length - 1 ? space : 0);
} }
} }
filled = true; filled = true;
@@ -365,31 +380,31 @@ class TextPage extends Vue {
// просто выводим текст // просто выводим текст
if (!filled) { if (!filled) {
let x = indent; let x = indent;
x = (center ? this.indent + (this.w - context.measureText(lineText).width)/2 : x); x = (center ? this.indent + (this.w - this.measureText(lineText, centerStyle))/2 : x);
for (const part of line.parts) { for (const part of line.parts) {
let text = part.text; let text = part.text;
context.font = this.fontByStyle(part.style); const font = this.fontByStyle(part.style);
context.fillText(text, x, y); out += this.drawHelper.fillText(text, x, y, font);
x += context.measureText(text).width; x += this.measureText(text, part.style);
} }
} }
y += this.lineHeight;
} }
this.drawStatusBar(context, lines); out += '</div>';
return out;
} }
drawStatusBar(context, lines) { drawStatusBar() {
if (!lines) if (this.showStatusBar && this.linesDown) {
lines = this.linesDown; const lines = this.linesDown;
if (this.showStatusBar) {
let i = this.pageLineCount; let i = this.pageLineCount;
if (this.keepLastToFirst) if (this.keepLastToFirst)
i--; i--;
i = (i > lines.length - 1 ? lines.length - 1 : i); i = (i > lines.length - 1 ? lines.length - 1 : i);
this.drawHelper.drawStatusBar(context, this.statusBarTop, this.statusBarHeight, this.statusBar = this.drawHelper.drawStatusBar(this.statusBarTop, this.statusBarHeight,
this.statusBarColor, lines[i].end, this.parsed.textLength, this.title); lines[i].end, this.parsed.textLength, this.title);
} }
} }
@@ -399,7 +414,7 @@ class TextPage extends Vue {
await sleep(60*1000); await sleep(60*1000);
if (this.book && this.parsed.textLength) { if (this.book && this.parsed.textLength) {
this.drawStatusBar(this.context); this.debouncedDrawStatusBar();
} }
this.timeRefreshing = false; this.timeRefreshing = false;
this.refreshTime(); this.refreshTime();
@@ -427,8 +442,10 @@ class TextPage extends Vue {
if (i >= 0 && this.linesDown.length > i) { if (i >= 0 && this.linesDown.length > i) {
this.bookPosPrepared = this.linesDown[i].begin; this.bookPosPrepared = this.linesDown[i].begin;
const ctx = (!this.activeCanvas ? this.context1 : this.context2); if (this.activeCanvas)
this.drawPage(ctx, this.bookPosPrepared, true); this.page2 = this.drawPage(this.bookPosPrepared, true);//наоборот
else
this.page1 = this.drawPage(this.bookPosPrepared, true);
this.pagePrepared = true; this.pagePrepared = true;
} }
@@ -606,30 +623,8 @@ class TextPage extends Vue {
} }
} }
checkPointInStatusBar(pointX, pointY) { onStatusBarClick() {
let titleBar = {x1: 0, y1: 0, x2: this.realWidth/2, y2: this.statusBarHeight + 1}; window.open(this.meta.url, '_blank');
if (!this.statusBarTop) {
titleBar.y1 += this.realHeight - this.statusBarHeight + 1;
titleBar.y2 += this.realHeight - this.statusBarHeight + 1;
}
if (pointX >= titleBar.x1 && pointX <= titleBar.x2 &&
pointY >= titleBar.y1 && pointY <= titleBar.y2) {
return true;
}
return false;
}
onMouseClick(event) {
if (this.showStatusBar && this.book) {
const pointX = event.pageX - this.canvas.offsetLeft;
const pointY = event.pageY - this.canvas.offsetTop;
if (this.checkPointInStatusBar(pointX, pointY)) {
window.open(this.meta.url, '_blank');
return false;
}
}
} }
handleClick(pointX, pointY) { handleClick(pointX, pointY) {
@@ -639,12 +634,6 @@ class TextPage extends Vue {
100: {30: 'PgUp', 100: 'PgDown'} 100: {30: 'PgUp', 100: 'PgDown'}
}; };
if (this.showStatusBar && this.book) {
if (this.checkPointInStatusBar(pointX, pointY)) {
return false;
}
}
const w = pointX/this.realWidth*100; const w = pointX/this.realWidth*100;
const h = pointY/this.realHeight*100; const h = pointY/this.realHeight*100;
@@ -695,9 +684,15 @@ class TextPage extends Vue {
position: relative; position: relative;
} }
.canvas { .layout {
margin: 0; margin: 0;
padding: 0; padding: 0;
position: absolute; position: absolute;
z-index: 10;
}
.events {
z-index: 20;
background-color: rgba(0,0,0,0);
} }
</style> </style>

View File

@@ -8,15 +8,9 @@ export default class BookParser {
this.w = 300;// px, ширина страницы this.w = 300;// px, ширина страницы
this.wordWrap = false;// перенос по слогам this.wordWrap = false;// перенос по слогам
//заглушка
this.measureText = (text, style) => {// eslint-disable-line no-unused-vars this.measureText = (text, style) => {// eslint-disable-line no-unused-vars
if (this.context) { return text.length*20;
this.context.save();
this.context.font = this.fontByStyle(style);
const w = this.context.measureText(text).width;
this.context.restore();
return w;
} else
return 0;
}; };
} }