1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
|
import { bbox, rbox, inside } from '../types/Box.js'
import { ctm, screenCTM } from '../types/Matrix.js'
import {
extend,
getClass,
makeInstance,
register,
root
} from '../utils/adopter.js'
import { globals } from '../utils/window.js'
import { point } from '../types/Point.js'
import { proportionalSize } from '../utils/utils.js'
import { reference } from '../modules/core/regex.js'
import Dom from './Dom.js'
import List from '../types/List.js'
import SVGNumber from '../types/SVGNumber.js'
export default class Element extends Dom {
constructor (node, attrs) {
super(node, attrs)
// initialize data object
this.dom = {}
// create circular reference
this.node.instance = this
if (node.hasAttribute('svgjs:data')) {
// pull svgjs data from the dom (getAttributeNS doesn't work in html5)
this.setData(JSON.parse(node.getAttribute('svgjs:data')) || {})
}
}
// Move element by its center
center (x, y) {
return this.cx(x).cy(y)
}
// Move by center over x-axis
cx (x) {
return x == null
? this.x() + this.width() / 2
: this.x(x - this.width() / 2)
}
// Move by center over y-axis
cy (y) {
return y == null
? this.y() + this.height() / 2
: this.y(y - this.height() / 2)
}
// Get defs
defs () {
const root = this.root()
return root && root.defs()
}
// Relative move over x and y axes
dmove (x, y) {
return this.dx(x).dy(y)
}
// Relative move over x axis
dx (x = 0) {
return this.x(new SVGNumber(x).plus(this.x()))
}
// Relative move over y axis
dy (y = 0) {
return this.y(new SVGNumber(y).plus(this.y()))
}
getEventHolder () {
return this
}
// Set height of element
height (height) {
return this.attr('height', height)
}
// Move element to given x and y values
move (x, y) {
return this.x(x).y(y)
}
// return array of all ancestors of given type up to the root svg
parents (until = this.root()) {
let selector = null
if (typeof until === 'string') {
selector = until
until = this.root()
} else {
until = makeInstance(until)
}
const parents = new List()
let parent = this
while (
(parent = parent.parent())
&& parent.node !== globals.document
&& parent.nodeName !== '#document-fragment') {
parents.push(parent)
if (parent.node === until.node) {
break
}
if (selector && parent.matches(selector)) {
break
}
}
return parents
}
// Get referenced element form attribute value
reference (attr) {
attr = this.attr(attr)
if (!attr) return null
const m = (attr + '').match(reference)
return m ? makeInstance(m[1]) : null
}
// Get parent document
root () {
const p = this.parent(getClass(root))
return p && p.root()
}
// set given data to the elements data property
setData (o) {
this.dom = o
return this
}
// Set element size to given width and height
size (width, height) {
const p = proportionalSize(this, width, height)
return this
.width(new SVGNumber(p.width))
.height(new SVGNumber(p.height))
}
// Set width of element
width (width) {
return this.attr('width', width)
}
// write svgjs data to the dom
writeDataToDom () {
// remove previously set data
this.node.removeAttribute('svgjs:data')
if (Object.keys(this.dom).length) {
this.node.setAttribute('svgjs:data', JSON.stringify(this.dom)) // see #428
}
return super.writeDataToDom()
}
// Move over x-axis
x (x) {
return this.attr('x', x)
}
// Move over y-axis
y (y) {
return this.attr('y', y)
}
}
extend(Element, {
bbox, rbox, inside, point, ctm, screenCTM
})
register(Element, 'Element')
|