forked from BasicPrimitives/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestText.html
More file actions
195 lines (170 loc) · 8.04 KB
/
TestText.html
File metadata and controls
195 lines (170 loc) · 8.04 KB
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!DOCTYPE html>
<html>
<head>
<title>JavaScript Control Patents Inheritance Diagram Demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="../../css/primitives.css" media="screen" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="../../primitives.js"></script>
<script type="text/javascript" src="../../javascriptsamples.js"></script>
<script type="text/javascript" src="../../interactivetests.js"></script>
<link href="./css/styles.css" media="screen" rel="stylesheet" type="text/css" />
<script type="text/javascript">
var control;
var parents = {};
var children = {};
var timer = null;
var { Point, Size, Rect } = primitives;
var { ValueType, Render, PanelConfig, ColorConfig, SizeConfig, CheckBoxConfig, RadioBoxConfig, RangeConfig, DropDownBoxConfig, CaptionConfig, DropDownBoxConfig } = javascriptsamples;
var { Shape, createGraphics, PlacementType, Colors, LineType } = interactivetests;
var optionsRender = new Render([
new PanelConfig("Family Diagram Specific Options", [
new RadioBoxConfig("orientation", primitives.TextOrientationType.RotateRight, "Orientation", primitives.TextOrientationType, ValueType.Integer, onUpdate),
new RadioBoxConfig("verticalAlignment", primitives.VerticalAlignmentType.Middle, "Vertical Alignment", primitives.VerticalAlignmentType, ValueType.Integer, onUpdate),
new RadioBoxConfig("horizontalAlignment", primitives.HorizontalAlignmentType.Center, "Horizontal Alignment", primitives.HorizontalAlignmentType, ValueType.Integer, onUpdate),
new ColorConfig("fontColor", primitives.Colors.Black, "Font Color", false, onUpdate),
new DropDownBoxConfig("fontSize", 12, "Font Size", [10, 12, 14, 16, 18, 20, 24, 28, 32], ValueType.Integer, onUpdate),
new RadioBoxConfig("fontWeight", "normal", "Font Weight", ["normal", "bold"], ValueType.String, onUpdate),
new RadioBoxConfig("fontStyle", "normal", "Font Style", ["normal", "italic"], ValueType.String, onUpdate),
new DropDownBoxConfig("fontFamily", "Arial", "Font Style", ["Arial", "Verdana", "Times New Roman", "Serif", "Courier"], ValueType.String, onUpdate)
])
], {
orientation: primitives.TextOrientationType.RotateLeft,
verticalAlignment: primitives.VerticalAlignmentType.Middle,
horizontalAlignment: primitives.HorizontalAlignmentType.Center,
fontColor: primitives.Colors.Red,
fontSize: 28,
fontWeight: "normal",
fontStyle: "normal",
fontFamily: "Arial"
});
var graphics;
document.addEventListener('DOMContentLoaded', function () {
optionsRender.render(document.getElementById("westpanel"));
graphics = createGraphics(document.getElementById("placeholder"));
onUpdate();
window.addEventListener('resize', function (event) {
onWindowResize();
});
});
var position = new Rect(100, 100, 200, 300);
var dragStartPoint;
var resizeStartPoint;
var topLeftStartPoint;
var bottomRightStartPoint;
function allowDrop(event) {
event.preventDefault();
}
function drag(event) {
dragStartPoint = { x: event.clientX, y: event.clientY };
topLeftStartPoint = new Point(position);
event.dataTransfer.setData("name", event.target.id);
}
function dragresize(event) {
resizeStartPoint = { x: event.clientX, y: event.clientY };
bottomRightStartPoint = new Point(position.right(), position.bottom());
event.dataTransfer.setData("name", event.target.id);
}
function drop(event) {
event.preventDefault();
var endPoint = new Point(event.clientX, event.clientY);
var name = event.dataTransfer.getData("name");
switch(name) {
case "rect":
position.x = topLeftStartPoint.x + endPoint.x - dragStartPoint.x;
position.y = topLeftStartPoint.y + endPoint.y - dragStartPoint.y;
break;
case "resizer":
var bottomRight = new Point(bottomRightStartPoint.x + endPoint.x - resizeStartPoint.x, bottomRightStartPoint.y + endPoint.y - resizeStartPoint.y);
var topLeft = new Point(position);
position = new Rect(topLeft, bottomRight);
break;
}
onUpdate()
}
function LabelTemplate() {
var _template = ["div", {"border-style": "solid", "border-color": "black", "border-width": "1px"}];
function template() {
return _template;
}
function getHashCode() {
return "LabelTemplate";
}
function render(event, data) {
data.element.innerHTML = "";
var div = document.createElement("div");
div.style.borderWidth = "1px";
div.style.borderColor = "black";
div.style.borderStyle = "dotted";
div.style.width = "100%";
div.style.height = "100%";
div.appendChild(document.createTextNode(data.label));
data.element.appendChild(div);
}
return {
template: template,
getHashCode: getHashCode,
render: render
};
};
function onUpdate() {
var rect = document.getElementById("rect");
rect.style.left = position.x + "px";
rect.style.top = position.y + "px";
rect.style.width = position.width + "px";
rect.style.height = position.height + "px";
var rect = document.getElementById("centerpanel");
var width = rect.offsetWidth;
var height = rect.offsetHeight;
var options = optionsRender.getValues();
var attr = {
"fontSize": options.fontSize + "px",
"fontFamily": options.fontFamily,
"fontStyle": options.fontStyle,
"fontWeight": options.fontWeight,
"fontColor": options.fontColor
};
graphics.begin();
graphics.activate("placeholder");
graphics.resize("placeholder", width, height);
graphics.text(position.x, position.y, position.width, position.height, "Graphics text\nSecond line\n3d Line", options.orientation, options.horizontalAlignment, options.verticalAlignment, attr);
graphics.end();
}
function onWindowResize() {
if (timer == null) {
timer = window.setTimeout(function () {
onUpdate();
window.clearTimeout(timer);
timer = null;
}, 300);
}
}
</script>
</head>
<body>
<div class="container-fluid">
<div class="row">
<nav id="sidebarMenu" class="col-md-4 col-lg-2 d-md-block bg-light sidebar collapse" style="position: fixed; top: 0; bottom: 0px; overflow-y: auto; float: none;">
<div class="position-sticky pt-3">
<div id="westpanel" class="flex-column">
</div>
</div>
</nav>
<main class="col-md-8 ms-sm-auto col-lg-10 px-md-4">
<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom">
<h1 class="h2">Text Test</h1>
</div>
<div id="centerpanel" class="mediaPlaceholder my-2 w-100" ondrop="drop(event)" ondragover="allowDrop(event)" style="border-style: dotted; border-width: 1px;">
<div id="placeholder" style="overflow: hidden; position: relative; width: 100%; height: 100%;">
<div id="rect" style="position: absolute; z-index: 100; top: 300px; left: 300px; width: 200px; height: 100px; border-width: 1px; border-style: dotted;" draggable="true" ondragstart="drag(event)">Drag & Resize Rect
<div id="resizer" style="position: absolute; right: 0px; bottom: 0px; width: 16px; height: 8px; border-width: 1px; border-style: dotted;" draggable="true" ondragstart="dragresize(event)"></div>
</div>
</div>
</div>
<div id="southpanel" class="alert alert-primary" style="min-height: 60px;" role="alert">
</div>
</main>
</div>
</div>
</body>
</html>