Browse Source

board: disabled zoom for now (it's buggy) and cleaned up some stuff.

master
Gisle Aune 5 years ago
parent
commit
339e0a8a8b
  1. 28
      package-lock.json
  2. 25
      src/board/board.js

28
package-lock.json

@ -1773,14 +1773,12 @@
"balanced-match": { "balanced-match": {
"version": "1.0.0", "version": "1.0.0",
"bundled": true, "bundled": true,
"dev": true,
"optional": true
"dev": true
}, },
"brace-expansion": { "brace-expansion": {
"version": "1.1.11", "version": "1.1.11",
"bundled": true, "bundled": true,
"dev": true, "dev": true,
"optional": true,
"requires": { "requires": {
"balanced-match": "^1.0.0", "balanced-match": "^1.0.0",
"concat-map": "0.0.1" "concat-map": "0.0.1"
@ -1795,20 +1793,17 @@
"code-point-at": { "code-point-at": {
"version": "1.1.0", "version": "1.1.0",
"bundled": true, "bundled": true,
"dev": true,
"optional": true
"dev": true
}, },
"concat-map": { "concat-map": {
"version": "0.0.1", "version": "0.0.1",
"bundled": true, "bundled": true,
"dev": true,
"optional": true
"dev": true
}, },
"console-control-strings": { "console-control-strings": {
"version": "1.1.0", "version": "1.1.0",
"bundled": true, "bundled": true,
"dev": true,
"optional": true
"dev": true
}, },
"core-util-is": { "core-util-is": {
"version": "1.0.2", "version": "1.0.2",
@ -1925,8 +1920,7 @@
"inherits": { "inherits": {
"version": "2.0.3", "version": "2.0.3",
"bundled": true, "bundled": true,
"dev": true,
"optional": true
"dev": true
}, },
"ini": { "ini": {
"version": "1.3.5", "version": "1.3.5",
@ -1938,7 +1932,6 @@
"version": "1.0.0", "version": "1.0.0",
"bundled": true, "bundled": true,
"dev": true, "dev": true,
"optional": true,
"requires": { "requires": {
"number-is-nan": "^1.0.0" "number-is-nan": "^1.0.0"
} }
@ -1953,7 +1946,6 @@
"version": "3.0.4", "version": "3.0.4",
"bundled": true, "bundled": true,
"dev": true, "dev": true,
"optional": true,
"requires": { "requires": {
"brace-expansion": "^1.1.7" "brace-expansion": "^1.1.7"
} }
@ -1961,14 +1953,12 @@
"minimist": { "minimist": {
"version": "0.0.8", "version": "0.0.8",
"bundled": true, "bundled": true,
"dev": true,
"optional": true
"dev": true
}, },
"minipass": { "minipass": {
"version": "2.2.4", "version": "2.2.4",
"bundled": true, "bundled": true,
"dev": true, "dev": true,
"optional": true,
"requires": { "requires": {
"safe-buffer": "^5.1.1", "safe-buffer": "^5.1.1",
"yallist": "^3.0.0" "yallist": "^3.0.0"
@ -1987,7 +1977,6 @@
"version": "0.5.1", "version": "0.5.1",
"bundled": true, "bundled": true,
"dev": true, "dev": true,
"optional": true,
"requires": { "requires": {
"minimist": "0.0.8" "minimist": "0.0.8"
} }
@ -2068,8 +2057,7 @@
"number-is-nan": { "number-is-nan": {
"version": "1.0.1", "version": "1.0.1",
"bundled": true, "bundled": true,
"dev": true,
"optional": true
"dev": true
}, },
"object-assign": { "object-assign": {
"version": "4.1.1", "version": "4.1.1",
@ -2081,7 +2069,6 @@
"version": "1.4.0", "version": "1.4.0",
"bundled": true, "bundled": true,
"dev": true, "dev": true,
"optional": true,
"requires": { "requires": {
"wrappy": "1" "wrappy": "1"
} }
@ -2203,7 +2190,6 @@
"version": "1.0.2", "version": "1.0.2",
"bundled": true, "bundled": true,
"dev": true, "dev": true,
"optional": true,
"requires": { "requires": {
"code-point-at": "^1.0.0", "code-point-at": "^1.0.0",
"is-fullwidth-code-point": "^1.0.0", "is-fullwidth-code-point": "^1.0.0",

25
src/board/board.js

@ -4,13 +4,13 @@ fabric.perfLimitSizeTotal = 134217728;
fabric.maxCacheSideLimit = 65536; fabric.maxCacheSideLimit = 65536;
export default class Board { export default class Board {
constructor(id) {
constructor(id, {grid} = {grid: {}}) {
this.id = id; this.id = id;
this.state = {a: 32};
this.state = {};
this.containerElement = document.getElementById(id); this.containerElement = document.getElementById(id);
if (this.containerElement == null) { if (this.containerElement == null) {
throw new Error(`Container ${this.id} not found`)
throw new Error(`Container "${this.id}" not found`)
} }
this.canvasElement = document.createElement("canvas"); this.canvasElement = document.createElement("canvas");
@ -22,6 +22,7 @@ export default class Board {
this.canvas.add(this.gridGroup); this.canvas.add(this.gridGroup);
this.gridOptions = { this.gridOptions = {
...(grid || {}),
enabled: true, enabled: true,
size: 64, size: 64,
hightlightInterval: 8, hightlightInterval: 8,
@ -59,19 +60,19 @@ export default class Board {
const wCount = Math.ceil((this.canvas.getWidth() / this.canvas.getZoom()) / size) + (hightlightInterval * 2); const wCount = Math.ceil((this.canvas.getWidth() / this.canvas.getZoom()) / size) + (hightlightInterval * 2);
const hCount = Math.ceil((this.canvas.getHeight() / this.canvas.getZoom()) / size) + (hightlightInterval * 2); const hCount = Math.ceil((this.canvas.getHeight() / this.canvas.getZoom()) / size) + (hightlightInterval * 2);
const width2 = wCount * (size);
const height2 = hCount * (size);
const width = wCount * (size);
const height = hCount * (size);
this.gridGroup.set("left", 0); this.gridGroup.set("left", 0);
this.gridGroup.set("top", 0); this.gridGroup.set("top", 0);
this.gridGroup.set("width", width2);
this.gridGroup.set("height", height2);
this.gridGroup.set("width", width);
this.gridGroup.set("height", height);
this.gridGroup.set("selectable", false); this.gridGroup.set("selectable", false);
this.gridGroup.set("hoverCursor", "default"); this.gridGroup.set("hoverCursor", "default");
for (let i = 0; i <= wCount; ++i) { for (let i = 0; i <= wCount; ++i) {
let x = i * size; let x = i * size;
let line = new fabric.Line([x, 0, x, height2], {stroke: lineColor, strokeWidth: 2, selectable: false});
let line = new fabric.Line([x, 0, x, height], {stroke: lineColor, strokeWidth: 2, selectable: false});
if (i % hightlightInterval == 0) { if (i % hightlightInterval == 0) {
line.set("stroke", highlightColor); line.set("stroke", highlightColor);
@ -82,7 +83,7 @@ export default class Board {
for (let i = 0; i <= hCount; ++i) { for (let i = 0; i <= hCount; ++i) {
let y = i * size; let y = i * size;
let line = new fabric.Line([0, y, width2, y], {stroke: lineColor, strokeWidth: 2, selectable: false});
let line = new fabric.Line([0, y, width, y], {stroke: lineColor, strokeWidth: 2, selectable: false});
if (i % hightlightInterval == 0) { if (i % hightlightInterval == 0) {
line.set("stroke", highlightColor); line.set("stroke", highlightColor);
@ -101,14 +102,14 @@ export default class Board {
this.gridGroup.set("left", x - xOffset); this.gridGroup.set("left", x - xOffset);
this.gridGroup.set("top", y - yOffset); this.gridGroup.set("top", y - yOffset);
this.gridGroup.setCoords(); this.gridGroup.setCoords();
console.log(this.gridGroup);
} }
setupPanning() { setupPanning() {
const parent = this; const parent = this;
this.canvas.on('mouse:wheel', ({e}) => { this.canvas.on('mouse:wheel', ({e}) => {
return; // TODO: Fix bugs with the grid when zoomed in/out.
if (e.shiftKey === false) { if (e.shiftKey === false) {
return; return;
} }
@ -129,7 +130,7 @@ export default class Board {
e.preventDefault(); e.preventDefault();
e.stopPropagation(); e.stopPropagation();
})
});
this.canvas.on('mouse:down', function(opt) { this.canvas.on('mouse:down', function(opt) {
var evt = opt.e; var evt = opt.e;

Loading…
Cancel
Save