graph: fixed centering issues in Chrome (and probably in general)
This commit is contained in:
parent
b2e0ead402
commit
2a7e5a6120
2 changed files with 8 additions and 7 deletions
|
@ -202,13 +202,11 @@
|
||||||
let tooltipCurrPoints: number | null = null;
|
let tooltipCurrPoints: number | null = null;
|
||||||
$: tooltipTextPos = hoveredTask != null ? [(hoveredTask.position ?? [0,0])[0], (hoveredTask.position ?? [0,0])[1] + 40] : [0,0];
|
$: tooltipTextPos = hoveredTask != null ? [(hoveredTask.position ?? [0,0])[0], (hoveredTask.position ?? [0,0])[1] + 40] : [0,0];
|
||||||
let tooltipBoxWidth = 0;
|
let tooltipBoxWidth = 0;
|
||||||
let tooltipBoxHeight = 0;
|
|
||||||
async function resizeTooltipBox() {
|
async function resizeTooltipBox() {
|
||||||
await tick();
|
await tick();
|
||||||
if (tooltipTextElement == null) return;
|
if (tooltipTextElement == null) return;
|
||||||
const bbox = tooltipTextElement.getBBox()
|
const bbox = tooltipTextElement.getBBox()
|
||||||
tooltipBoxWidth = bbox.width + 10 + 10;
|
tooltipBoxWidth = bbox.width + 10 + 10;
|
||||||
tooltipBoxHeight = bbox.height + 5 + 5;
|
|
||||||
}
|
}
|
||||||
$: {
|
$: {
|
||||||
tooltipMaxPoints = null;
|
tooltipMaxPoints = null;
|
||||||
|
@ -338,15 +336,16 @@
|
||||||
x={tooltipTextPos[0]}
|
x={tooltipTextPos[0]}
|
||||||
y={tooltipTextPos[1] - 15}
|
y={tooltipTextPos[1] - 15}
|
||||||
width={tooltipBoxWidth}
|
width={tooltipBoxWidth}
|
||||||
height={tooltipBoxHeight}
|
height={30}
|
||||||
rx="3">
|
rx="3">
|
||||||
</rect>
|
</rect>
|
||||||
<text
|
<text
|
||||||
bind:this={tooltipTextElement}
|
bind:this={tooltipTextElement}
|
||||||
x={tooltipTextPos[0] + tooltipBoxWidth / 2}
|
x={tooltipTextPos[0] + tooltipBoxWidth / 2}
|
||||||
y={tooltipTextPos[1] + 4}
|
y={tooltipTextPos[1]}
|
||||||
text-anchor="middle"
|
text-anchor="middle"
|
||||||
alignment-baseline="middle">
|
alignment-baseline="middle"
|
||||||
|
dominant-baseline="middle">
|
||||||
{hoveredTask.type == 'open-data' ? hoveredTask.taskReference : "text"} | {tooltipCurrPoints ?? '?'} bod{ "ů yyy"[tooltipCurrPoints ?? 0] ?? "ů" } z {tooltipMaxPoints ?? '?'}
|
{hoveredTask.type == 'open-data' ? hoveredTask.taskReference : "text"} | {tooltipCurrPoints ?? '?'} bod{ "ů yyy"[tooltipCurrPoints ?? 0] ?? "ů" } z {tooltipMaxPoints ?? '?'}
|
||||||
</text>
|
</text>
|
||||||
</g>
|
</g>
|
||||||
|
|
|
@ -112,9 +112,10 @@
|
||||||
<text
|
<text
|
||||||
bind:this={text_element}
|
bind:this={text_element}
|
||||||
x={cx}
|
x={cx}
|
||||||
y={cy + 5}
|
y={cy}
|
||||||
text-anchor="middle"
|
text-anchor="middle"
|
||||||
alignment-baseline="middle"
|
alignment-baseline="middle"
|
||||||
|
dominant-baseline="middle"
|
||||||
transform="translate({cx}, {cy}) rotate({task.rotationAngle ?? 0}) translate({-cx}, {-cy})">
|
transform="translate({cx}, {cy}) rotate({task.rotationAngle ?? 0}) translate({-cx}, {-cy})">
|
||||||
{task.title == null ? task.id : task.title}
|
{task.title == null ? task.id : task.title}
|
||||||
</text>
|
</text>
|
||||||
|
@ -133,8 +134,9 @@
|
||||||
<text
|
<text
|
||||||
bind:this={text_element}
|
bind:this={text_element}
|
||||||
x={cx}
|
x={cx}
|
||||||
y={cy + 5}
|
y={cy}
|
||||||
text-anchor="middle"
|
text-anchor="middle"
|
||||||
|
dominant-baseline="middle"
|
||||||
alignment-baseline="middle">
|
alignment-baseline="middle">
|
||||||
{task.title == null ? task.id : task.title}
|
{task.title == null ? task.id : task.title}
|
||||||
</text>
|
</text>
|
||||||
|
|
Reference in a new issue