1
0
Fork 0

chore: Prettier run

This commit is contained in:
Joost De Cock 2022-09-14 15:04:24 +02:00
parent ef5e792d6b
commit a953f1692b
86 changed files with 284 additions and 397 deletions

View file

@ -560,9 +560,8 @@ Pattern.prototype.pack = function () {
// First, create all stacks
this.stacks = {}
for (const [name, part] of Object.entries(this.parts)) {
const stackName = (typeof part.stack === 'function')
? part.stack(this.settings, name)
: part.stack
const stackName =
typeof part.stack === 'function' ? part.stack(this.settings, name) : part.stack
if (typeof this.stacks[stackName] === 'undefined')
this.stacks[stackName] = this.__createStackWithContext(stackName)
this.stacks[stackName].addPart(part)

View file

@ -94,7 +94,10 @@ Stack.prototype.home = function () {
if (this.topLeft.x === this.anchor.x && this.topLeft.y === this.anchor.y) return this
else {
this.attr('transform', `translate(${this.anchor.x - this.topLeft.x}, ${this.anchor.y - this.topLeft.y})`)
this.attr(
'transform',
`translate(${this.anchor.x - this.topLeft.x}, ${this.anchor.y - this.topLeft.y})`
)
this.layout.move.x = this.anchor.x - this.topLeft.x
this.layout.move.y = this.anchor.y - this.topLeft.y
}
@ -103,7 +106,7 @@ Stack.prototype.home = function () {
}
/** Finds the anchor to align parts in this stack */
Stack.prototype.getAnchor = function() {
Stack.prototype.getAnchor = function () {
let anchorPoint = true
let gridAnchorPoint = true
const parts = this.getPartList()
@ -115,7 +118,7 @@ Stack.prototype.getAnchor = function() {
if (anchorPoint) return parts[0].points.anchor
if (gridAnchorPoint) return parts[0].points.gridAnchor
return new Point(0,0)
return new Point(0, 0)
}
/** Adds an attribute. This is here to make this call chainable in assignment */
@ -136,5 +139,4 @@ Stack.prototype.generateTransform = function (transforms) {
}
}
export default Stack