-
Notifications
You must be signed in to change notification settings - Fork 822
/
pastebox.js
151 lines (130 loc) · 4.87 KB
/
pastebox.js
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
// Copyright (c) 2014-21 Walter Bender
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the The GNU Affero General Public
// License as published by the Free Software Foundation; either
// version 3 of the License, or (at your option) any later version.
//
// You should have received a copy of the GNU Affero General Public
// License along with this library; if not, write to the Free Software
// Foundation, 51 Franklin Street, Suite 500 Boston, MA 02110-1335 USA
const PASTEBOX =
'<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="280" height="55"> <rect width="280" height="55" x="0" y="-3.5762787e-06" style="fill:#f0f0f0;fill-opacity:1;fill-rule:nonzero;stroke:none" /> <g transform="translate(225,0)" style="fill:#000000;display:block"> <path d="m 27.557,5.053 c -12.43,0 -22.5,10.076 -22.5,22.497 0,12.432 10.07,22.503 22.5,22.503 12.431,0 22.5,-10.071 22.5,-22.503 0,-12.421 -10.07,-22.497 -22.5,-22.497 z m 10.199,28.159 c 1.254,1.256 1.257,3.291 0,4.545 -0.628,0.629 -1.451,0.943 -2.274,0.943 -0.822,0 -1.644,-0.314 -2.27,-0.94 l -5.76,-5.761 -5.76,5.761 c -0.627,0.626 -1.449,0.94 -2.271,0.94 -0.823,0 -1.647,-0.314 -2.275,-0.943 -1.254,-1.254 -1.254,-3.289 0.004,-4.545 l 5.758,-5.758 -5.758,-5.758 c -1.258,-1.254 -1.258,-3.292 -0.004,-4.546 1.255,-1.254 3.292,-1.259 4.546,0 l 5.76,5.759 5.76,-5.759 c 1.252,-1.259 3.288,-1.254 4.544,0 1.257,1.254 1.254,3.292 0,4.546 l -5.758,5.758 5.758,5.758 z" style="fill:#000000;display:inline" /> </g></svg>';
// A pop up for pasting from the browser clipboard
/* global docById, createjs */
/*
Global locations
js/utils/utils.js
_
js/activity.js
createjs
*/
/* exported PasteBox */
class PasteBox {
/**
* @constructor
*/
constructor(activity) {
this.activity = activity;
this._container = null;
this.save = null;
this.close = null;
this._scale = 1;
}
/**
* @public
* @returns {void}
*/
hide() {
if (this._container != null) {
this._container.visible = false;
this.activity.refreshCanvas();
// paste.visible = false;
docById("paste").value = "";
docById("paste").style.visibility = "hidden";
}
}
/**
* @public
* @param {number} scale
* @param {number} x coordinate
* @param {number} y coordinate
*/
createBox(scale, x, y) {
if (this._container == null) {
this._scale = scale;
this._container = new createjs.Container();
this.activity.stage.addChild(this._container);
this._container.x = x;
this._container.y = y;
const __processBackground = (that, name, bitmap) => {
that._container.addChild(bitmap);
that._loadClearContainerHandler();
that._container.visible = true;
that.activity.refreshCanvas();
};
this._makeBoxBitmap(PASTEBOX, "box", __processBackground, null);
}
}
/**
* @public
* @returns {void}
*/
show() {
this._container.visible = true;
this.activity.refreshCanvas();
// this._paste.visibile = true;
docById("paste").style.visibility = "visible";
}
/**
* @public
* @returns {Object}
*/
getPos() {
return [this._container.x, this._container.y];
}
/**
* @private
* @returns {void}
*/
_loadClearContainerHandler() {
const hitArea = new createjs.Shape();
this.bounds = this._container.getBounds();
hitArea.graphics
.beginFill("#FFF")
.drawRect(this.bounds.x, this.bounds.y, this.bounds.width, this.bounds.height);
hitArea.x = 0;
hitArea.y = 0;
this._container.hitArea = hitArea;
let locked = false;
this._container.on("click", (event) => {
// We need a lock to "debouce" the click.
if (locked) {
// console.debug("debouncing click");
return;
}
locked = true;
setTimeout(() => {
locked = false;
}, 500);
const x = event.stageX / this._scale - this._container.x;
const y = event.stageY / this._scale - this._container.y;
if (x > 125 && y < 55) {
this.hide();
}
});
}
/**
* @deprecated
*/
_makeBoxBitmap(data, name, callback, extras) {
// Async creation of bitmap from SVG data
// Works with Chrome, Safari, Firefox (untested on IE)
const img = new Image();
img.onload = () => {
const bitmap = new createjs.Bitmap(img);
callback(this, name, bitmap, extras);
};
img.src = "data:image/svg+xml;base64," + window.btoa(base64Encode(data));
}
}