Spaces:
Running
Running
File size: 8,262 Bytes
d7508be |
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 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 |
class Whiteboard {
constructor() {
this.canvas = document.getElementById('whiteboard');
this.ctx = this.canvas.getContext('2d');
this.isDrawing = false;
this.history = new History();
this.tools = new DrawingTools(this.canvas, this.ctx);
this.pages = new Pages();
this.setupCanvas();
this.setupEventListeners();
this.setupBrushPreview();
this.setupToolbarToggle();
}
setupCanvas() {
const resize = () => {
this.canvas.width = window.innerWidth;
this.canvas.height = window.innerHeight;
this.setupDrawingStyle();
// Restore the current page
const pageContent = this.pages.getPageContent();
if (pageContent) {
this.ctx.putImageData(pageContent, 0, 0); // Use the drawing content from the current page
}
};
window.addEventListener('resize', resize);
resize();
}
setupToolbarToggle() {
const toolbar = document.querySelector('.bottom-toolbar');
const toggleBtn = document.getElementById('toggleToolbar');
toggleBtn.addEventListener('click', () => {
toolbar.classList.toggle('hidden');
});
}
setupBrushPreview() {
this.brushPreview = document.getElementById('brushPreview');
this.canvas.addEventListener('mousemove', (e) => {
const { x, y } = getMousePos(this.canvas, e);
this.updateBrushPreview(x, y);
});
this.canvas.addEventListener('mouseenter', () => {
this.brushPreview.style.display = 'block';
});
this.canvas.addEventListener('mouseleave', () => {
this.brushPreview.style.display = 'none';
});
}
updateBrushPreview(x, y) {
const size = this.tools.brushSize;
this.brushPreview.style.width = size + 'px';
this.brushPreview.style.height = size + 'px';
this.brushPreview.style.left = (x - size/2) + 'px';
this.brushPreview.style.top = (y - size/2) + 'px';
this.brushPreview.style.borderColor = this.tools.isEraser ? '#000' : this.tools.color;
}
setupDrawingStyle() {
this.ctx.lineCap = 'round';
this.ctx.lineJoin = 'round';
this.ctx.font = '24px Arial';
this.tools.applyToolSettings();
}
setupEventListeners() {
// Mouse events
this.canvas.addEventListener('mousedown', this.startDrawing.bind(this));
this.canvas.addEventListener('mousemove', this.draw.bind(this));
this.canvas.addEventListener('mouseup', this.stopDrawing.bind(this));
this.canvas.addEventListener('mouseout', this.stopDrawing.bind(this));
// Touch events
this.canvas.addEventListener('touchstart', this.handleTouch.bind(this));
this.canvas.addEventListener('touchmove', this.handleTouch.bind(this));
this.canvas.addEventListener('touchend', this.handleTouchEnd.bind(this));
// Button events
document.getElementById('aiBtn').addEventListener('click', this.processDrawing.bind(this));
document.getElementById('submitBtn').addEventListener('click', this.generatePDF.bind(this));
document.getElementById('clearBtn').addEventListener('click', this.clearCanvas.bind(this));
document.getElementById('undoBtn').addEventListener('click', this.undo.bind(this));
document.getElementById('redoBtn').addEventListener('click', this.redo.bind(this));
// Keyboard shortcuts
document.addEventListener('keydown', (e) => {
if (e.ctrlKey || e.metaKey) {
if (e.key === 'z') {
e.preventDefault();
this.undo();
} else if (e.key === 'y') {
e.preventDefault();
this.redo();
}
}
});
}
handleTouch(e) {
e.preventDefault();
const touch = e.touches[0];
const eventType = e.type === 'touchstart' ? 'mousedown' : 'mousemove';
const mouseEvent = new MouseEvent(eventType, {
clientX: touch.clientX,
clientY: touch.clientY
});
this.canvas.dispatchEvent(mouseEvent);
}
handleTouchEnd(e) {
e.preventDefault();
const mouseEvent = new MouseEvent('mouseup', {});
this.canvas.dispatchEvent(mouseEvent);
}
startDrawing(e) {
this.isDrawing = true;
const { x, y } = getMousePos(this.canvas, e);
this.tools.applyToolSettings();
this.ctx.beginPath();
this.ctx.moveTo(x, y);
}
draw(e) {
if (!this.isDrawing) return;
const { x, y } = getMousePos(this.canvas, e);
this.ctx.lineTo(x, y);
this.ctx.stroke();
}
stopDrawing() {
if (this.isDrawing) {
this.isDrawing = false;
this.saveState();
}
}
saveState() {
const imageData = this.ctx.getImageData(0, 0, this.canvas.width, this.canvas.height);
this.history.push(new DrawingState(imageData));
this.pages.setPageContent(this.history.states);
}
undo() {
const state = this.history.undo();
if (state) {
this.ctx.putImageData(state.imageData, 0, 0);
this.pages.setPageContent(this.history.states);
}
}
redo() {
const state = this.history.redo();
if (state) {
this.ctx.putImageData(state.imageData, 0, 0);
this.pages.setPageContent(this.history.states);
}
}
clearCanvas() {
this.ctx.clearRect(0, 0, this.canvas.width, this.canvas.height);
this.saveState();
}
processDrawing() {
const tempCanvas = document.createElement('canvas');
const tempContext = tempCanvas.getContext('2d');
tempCanvas.width = this.canvas.width;
tempCanvas.height = this.canvas.height;
tempContext.fillStyle = 'white';
tempContext.fillRect(0, 0, tempCanvas.width, tempCanvas.height);
tempContext.drawImage(this.canvas, 0, 0);
const imageData = tempCanvas.toDataURL('image/png');
console.log('Processing drawing with AI...');
console.log(imageData.substring(0, 100) + '...');
fetch('/whitebai', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
image: imageData
})
})
.then(response => response.json())
.then(data => {
document.getElementById('result').innerText = data.message;
})
.catch(error => {
console.error('Error:', error);
});
}
async generatePDF() {
const pages = this.pages.getAllPages();
for (let i = 0; i < pages.length; i++) {
const pageContent = pages[i];
const tempCanvas = document.createElement('canvas');
tempCanvas.width = this.canvas.width;
tempCanvas.height = this.canvas.height;
const tempCtx = tempCanvas.getContext('2d');
tempCtx.fillStyle = 'white';
tempCtx.fillRect(0, 0, tempCanvas.width, tempCanvas.height);
if (pageContent && pageContent.drawing) {
const imageData = pageContent.drawing;
if (imageData) {
try {
tempCtx.putImageData(imageData, 0, 0);
console.log("Image applied to canvas for page " + i);
} catch (error) {
console.log("Error putting image data on page " + i, error);
}
} else {
console.log("No image data for page " + i);
}
}
const imgData = tempCanvas.toDataURL('image/png');
console.log(`Base64 data for page ${i}:`, imgData);
}
}
writeText(text, x = 20, y = 40) {
this.setupDrawingStyle();
this.ctx.fillStyle = this.tools.color;
this.ctx.fillText(text.toString(), x, y);
this.saveState();
}
}
const whiteboard = new Whiteboard();
const canvas = document.getElementById('whiteboard');
document.addEventListener('keydown', function(event) {
if (event.ctrlKey && event.key === 's') {
event.preventDefault();
const tempCanvas = document.createElement('canvas');
const tempContext = tempCanvas.getContext('2d');
tempCanvas.width = canvas.width;
tempCanvas.height = canvas.height;
tempContext.fillStyle = 'white';
tempContext.fillRect(0, 0, tempCanvas.width, tempCanvas.height);
tempContext.drawImage(canvas, 0, 0);
const imageData = tempCanvas.toDataURL("image/png");
const link = document.createElement('a');
link.href = imageData;
link.download = 'canvas-image.png';
link.click();
console.log("Canvas saved as image with white background!");
}
}); |