-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
583 lines (543 loc) · 23.5 KB
/
index.html
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Editor HTML</title>
<style>
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: linear-gradient(356deg, #3d78d2, #994acc);
transition: background-color 0.3s ease, color 0.3s ease;
}
.container {
width: 90%;
max-width: 1200px;
height: 90vh;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
background-color: #cacaca;
border-radius: 8px;
transition: background-color 0.3s ease, color 0.3s ease;
position: relative;
}
.light-mode .container {
background-color: #cacaca;
}
.dark-mode .container {
background-color: #444;
}
.editor-container {
background: #cacaca;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
transition: background-color 0.3s ease, color 0.3s ease;
}
.light-mode .editor-container {
background: #cacaca;
}
.dark-mode .editor-container {
background: #444;
}
.editor-buttons button {
font-family: monospace;
margin-right: 10px;
margin-top: 10px;
margin-left: 10px;
padding: 10px 20px;
font-size: 16px;
background-color: #8b8b8b;
color: #fff;
border: inset;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.editor-buttons button:hover {
background-color: #11b5db;
}
.editor-toolbar {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: normal;
align-items: center;
margin-bottom: 10px;
}
.editor-toolbar select, .editor-toolbar input[type="color"], .editor-toolbar button {
margin-left: 10px;
margin-top: 10px;
padding: 5px;
font-size: 14px;
border: 1px solid #ccc;
border-radius: 5px;
margin-right: 5px;
cursor: pointer;
background-color: #f8f8f8;
transition: background-color 0.3s ease;
}
.editor-toolbar button {
background-color: #f8f8f8;
border: none;
display: flex;
align-items: center;
justify-content: center;
padding: 10px;
margin-right: 5px;
font-size: 16px;
transition: background-color 0.3s ease;
}
.editor-toolbar button img {
width: 20px;
height: 20px;
background-color: #f8f8f8;
border: none;
justify-content: center;
margin-right: 5px;
font-size: 16px;
transition: background-color 0.3s ease;
margin-bottom: 10px;
}
.editor-toolbar button:hover {
background-color: #dcdcdc;
}
.editor-toolbar button:active {
background-color: #ccc;
}
.editor {
flex: 1;
border: 1px solid #ccc;
border-radius: 5px;
padding: 10px;
background-color: #dedede;
overflow: auto;
transition: background-color 0.3s ease, color 0.3s ease;
position: relative;
min-height: 500px;
}
.light-mode .editor {
background-color: #dedede;
}
.dark-mode .editor {
background-color: #555;
color: #fff;
}
.editor[contenteditable="true"]:empty:before {
content: attr(data-placeholder);
color: #888;
position: absolute;
pointer-events: none;
}
.fullscreen {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #fff;
z-index: 9999;
display: flex;
flex-direction: column;
}
.fullscreen .editor-toolbar button {
background-color: #fff;
}
.hidden {
display: none;
}
#toggle-theme {
background-color: #fff;
color: #000;
padding: 10px 20px;
border-radius: 5px;
border: inset;
cursor: pointer;
transition: background-color 0.3s ease;
}
#toggle-theme.light-mode {
background-color: #bababa;
color: #000;
}
#toggle-theme.dark-mode {
background-color: #333;
color: #fff;
}
.label1 {
margin-top: 13px;
margin-left: 5px;
font-weight: bold;
font-size: 18px;
color: linear-gradient(to right, #FF0000, #FF7F00, #FFFF00, #00FF00, #0000FF, #4B0082, #FF00FF);
}
.label2 {
margin-top: 13px;
margin-left: 1px;
font-weight: bold;
font-size: 18px;
color: #000000;
background: white;
}
/* Estilos para o diálogo de imagem */
#image-dialog, #link-dialog {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #fff;
padding: 20px;
border: 1px solid #ccc;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
z-index: 10000;
color: black;
}
#image-dialog .dialog-content, #link-dialog .dialog-content {
display: flex;
flex-direction: column;
}
#image-dialog input, #link-dialog input {
margin-bottom: 10px;
padding: 5px;
font-size: 14px;
border: 1px solid #ccc;
border-radius: 5px;
}
#image-dialog button, #link-dialog button {
margin-top: 5px;
padding: 10px 20px;
font-size: 16px;
background-color: #398be5;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
</style>
</head>
<body>
<div class="container">
<div class="editor-container">
<div class="editor-buttons">
<button id="toggle-view"><img src="eye-fill.svg" alt="Visualização/Código" id="toggle-view-button"> Visualização/Código</button>
<button id="toggle-theme"><img src="moon-fill.svg" alt="Modo Noturno"> Modo Noturno</button>
<button id="toggle-fullscreen"><img src="aspect-ratio.svg" alt="Expandir Tela"> Expandir Tela</button>
<button id="toggle-browser-fullscreen"><img src="arrows-fullscreen.svg" alt="Tela Cheia (F11)"> Tela Cheia (F11)</button>
</div>
<div class="editor-toolbar">
<select id="font-family">
<option value="">Fonte</option>
<option value="Arial">Arial</option>
<option value="Courier New">Courier New</option>
<option value="Georgia">Georgia</option>
<option value="Times New Roman">Times New Roman</option>
<option value="Verdana">Verdana</option>
</select>
<select id="font-size" class="form-control">
<option value="12px">12px</option>
<option value="14px">14px</option>
<option value="16px">16px</option>
<option value="18px">18px</option>
<option value="20px">20px</option>
<option value="24px">24px</option>
<option value="28px">28px</option>
</select>
<label for="font-color" class="label1"><img src="palette-fill.svg" alt="Cor do Texto"></label>
<input type="color" id="font-color" class="btn btn-light" value="#000000" onchange="changeFontColor(this.value)">
<label for="bg-color" class="label2"><img src="highlighter.svg" alt="Cor do Fundo"></label>
<input type="color" id="bg-color" class="btn btn-light" value="#ffffff" onchange="changeBackgroundColor(this.value)">
<button onclick="formatText('bold')"><img src="type-bold.svg" alt="Negrito"></button>
<button onclick="formatText('italic')"><img src="type-italic.svg" alt="Itálico"></button>
<button onclick="formatText('underline')"><img src="type-underline.svg" alt="Sublinhado"></button>
<button onclick="formatText('justifyLeft')"><img src="text-left.svg" alt="Alinhar à Esquerda"></button>
<button onclick="formatText('justifyCenter')"><img src="text-center.svg" alt="Centralizar"></button>
<button onclick="formatText('justifyRight')"><img src="text-right.svg" alt="Alinhar à Direita"></button>
<button onclick="formatText('justifyFull')"><img src="justify.svg" alt="Justificar"></button>
<button onclick="formatText('insertOrderedList')"><img src="list-ol.svg" alt="Lista Ordenada"></button>
<button onclick="formatText('insertUnorderedList')"><img src="list-ul.svg" alt="Lista não Ordenada"></button>
<button id="insert-image"><img src="image.svg" alt="Inserir Imagem"></button>
<button id="create-link"><img src="link.svg" alt="Link"></button>
<button id="removeLink" class="btn btn-light" onclick="formatText('unlink')"><img src="unlink.svg" alt="Remover Link"></button>
<button id="print" onclick="printDocument()"><img src="printer.svg" alt="Imprimir"></button>
</div>
<div id="editor" class="editor" contenteditable="true" data-placeholder="Digite seu texto aqui...">
</div>
</div>
</div>
<!-- Diálogo de Imagem -->
<div id="image-dialog" class="hidden">
<div class="dialog-content">
<label for="image-url">URL da Imagem:</label>
<input type="text" id="image-url" placeholder="Insira a URL da imagem">
<label for="image-alt">Atributo Alt:</label>
<input type="text" id="image-alt" placeholder="Insira o texto alternativo">
<label for="image-width">Largura em %:</label>
<input type="text" id="image-width" placeholder="Insira a largura da imagem">
<label for="image-height">Altura em %:</label>
<input type="text" id="image-height" placeholder="Insira a altura da imagem">
<button id="save-image">Salvar</button>
<button id="cancel-image">Cancelar</button>
</div>
</div>
<!-- Diálogo de Link para implementações futuras :D -->
<div id="link-dialog" class="hidden">
<div class="dialog-content">
<label for="link-url">URL do Link:</label>
<input type="text" id="link-url" placeholder="Insira a URL do link">
<label for="link-new-tab">
<input type="checkbox" id="link-new-tab"> Abrir em nova aba
</label>
<button id="save-link">Salvar</button>
<button id="cancel-link">Cancelar</button>
</div>
</div>
<!-- Diálogo de inserir/editar imagem-->
<div id="image-dialog" class="hidden">
<div class="dialog-content">
<label for="image-url">URL da Imagem:</label>
<input type="text" id="image-url" placeholder="Insira a URL da imagem">
<label for="image-alt">Atributo Alt:</label>
<input type="text" id="image-alt" placeholder="Insira o texto alternativo">
<label for="image-width">Largura em %:</label>
<input type="text" id="image-width" placeholder="Insira a largura da imagem">
<label for="image-height">Altura em %:</label>
<input type="text" id="image-height" placeholder="Insira a altura da imagem">
<button id="save-image">Salvar</button>
<button id="cancel-image">Cancelar</button>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
const editor = document.getElementById('editor');
const storedContent = localStorage.getItem('editorContent');
const toggleViewButton = document.getElementById('toggle-view');
const fontFamilySelect = document.getElementById('font-family');
const fontSizeSelect = document.getElementById('font-size');
const toggleFullscreenButton = document.getElementById('toggle-fullscreen');
const toggleBrowserFullscreenButton = document.getElementById('toggle-browser-fullscreen');
const imageDialog = document.getElementById('image-dialog');
const imageUrlInput = document.getElementById('image-url');
const imageAltInput = document.getElementById('image-alt');
const imageWidthInput = document.getElementById('image-width');
const imageHeightInput = document.getElementById('image-height');
const saveImageButton = document.getElementById('save-image');
const cancelImageButton = document.getElementById('cancel-image');
const createLinkButton = document.getElementById('create-link');
const print = document.getElementById('print');
print.addEventListener('click', () => {
window.print();
});
let isHTMLView = false;
// HTML padrão
const defaultContent = `
<div class="header">
<img src="https://wdv.com.br/storage/2024/05/wdvblue_little.webp" alt="Logo da Empresa" style="width: 25%; height: 25%;">
</div>
<div class="hero">
<img src="https://wdv.com.br/storage/2024/05/websitecreation-scaled.webp" alt="Imagem de Destaque" style="width: 25%; height: 25%;">
</div>
<h1>Apresentamos Nossos Novos Produtos/Serviços</h1>
<p>Prezado(a) [Nome do Cliente],</p>
<p>Estamos entusiasmados em compartilhar com você nossas últimas novidades. Nossos produtos/serviços foram desenvolvidos para ajudar sua empresa a atingir novos níveis de sucesso e eficiência.</p>
<p>Confira abaixo os destaques dos nossos produtos/serviços:</p>
<ul>
<li><strong>Produto/Serviço 1:</strong> [Breve descrição do Produto/Serviço 1]</li>
<li><strong>Produto/Serviço 2:</strong> [Breve descrição do Produto/Serviço 2]</li>
<li><strong>Produto/Serviço 3:</strong> [Breve descrição do Produto/Serviço 3]</li>
</ul>
<p>Nossa equipe está à disposição para fornecer mais informações e esclarecer quaisquer dúvidas que você possa ter. Não hesite em entrar em contato conosco.</p>
<p>Estamos confiantes de que nossos produtos/serviços irão proporcionar benefícios significativos para a sua empresa.</p>
<p>Atenciosamente,<br>[Seu Nome]</p>
<div class="footer">
<img src="https://wdv.com.br/storage/2024/05/wdvblue_little.webp" alt="Logo da Empresa" style="width: 10%; height: 10%;">
<div class="contact-info">
<p><strong>Cargo:</strong> [Seu Cargo]</p>
<p><strong>Nome:</strong> [Seu Nome]</p>
<p><strong>Telefone:</strong> [Seu Telefone]</p>
<p><strong>Email:</strong> <a href="mailto:email@seusite.com.br">email@seusite.com.br</a></p>
<p><strong>Site:</strong> <a href="https://seusite.com.br">seusite.com.br</a></p>
</div>
</div>
`;
// Se houver conteúdo armazenado, use-o como ponto de partida
if (storedContent) {
editor.innerHTML = storedContent;
} else {
editor.innerHTML = defaultContent;
}
// Função para salvar o conteúdo do editor no localStorage
function saveEditorContent() {
const newContent = editor.innerHTML;
localStorage.setItem('editorContent', newContent);
}
// Exemplo de como chamar a função ao editar o conteúdo
editor.addEventListener('input', saveEditorContent);
// Função para alternar a visualização entre WYSIWYG e HTML
const viewIcon = toggleViewButton.querySelector('img'); // Seleciona o ícone dentro do botão
toggleViewButton.addEventListener('click', () => {
if (isHTMLView) {
editor.innerHTML = editor.textContent;
toggleViewButton.innerHTML = `<img src="eye-fill.svg" alt="Visualização"> Visualização/Código`;
} else {
editor.textContent = editor.innerHTML;
toggleViewButton.innerHTML = `<img src="code-slash.svg" alt="Código"> Código/Visualização`;
}
// Alterna o estado
isHTMLView = !isHTMLView;
});
// Função para alterar a fonte
fontFamilySelect.addEventListener('change', function() {
document.execCommand('fontName', false, fontFamilySelect.value);
});
// Função para alterar o tamanho da fonte
fontSizeSelect.addEventListener('change', function() {
document.execCommand('fontSize', false, '7'); // O valor '7' é arbitrário
const fontElements = editor.getElementsByTagName('font');
for (let i = 0; i < fontElements.length; i++) {
if (fontElements[i].size === '7') {
fontElements[i].removeAttribute('size');
fontElements[i].style.fontSize = fontSizeSelect.value;
}
}
});
// Função para aplicar formatação de texto
window.formatText = function(command) {
document.execCommand(command, false, null);
};
// Função para alterar a cor da fonte
window.changeFontColor = function(color) {
document.execCommand('foreColor', false, color);
};
// Função para alterar a cor do fundo
window.changeBackgroundColor = function(color) {
document.execCommand('hiliteColor', false, color);
};
// Função modo noturno
const toggleThemeButton = document.getElementById('toggle-theme');
const darkModeIcon = document.querySelector('#toggle-theme img');
let isDarkMode = false;
toggleThemeButton.addEventListener('click', () => {
if (isDarkMode) {
document.body.classList.remove('dark-mode');
document.body.classList.add('light-mode');
darkModeIcon.src = 'moon-fill.svg';
toggleThemeButton.innerHTML = `<img src="moon-fill.svg" alt="Modo Noturno"> Modo Noturno`;
} else {
document.body.classList.remove('light-mode');
document.body.classList.add('dark-mode');
darkModeIcon.src = 'sun.svg';
toggleThemeButton.innerHTML = `<img src="sun.svg" alt="Modo Light"> Modo Light `;
}
isDarkMode = !isDarkMode;
});
// Full Screen da área aproveitavel da tela
toggleFullscreenButton.addEventListener('click', () => {
const editorContainer = document.querySelector('.editor-container');
editorContainer.classList.toggle('fullscreen');
if (editorContainer.classList.contains('fullscreen')) {
toggleFullscreenButton.innerHTML = `<img src="aspect-ratio.svg" alt="Retrair Tela"> Retrair Tela`;
} else {
toggleFullscreenButton.innerHTML = `<img src="aspect-ratio.svg" alt="Expandir Tela"> Expandir Tela`;
}
});
// Função para criar links
createLinkButton.addEventListener('click', function() {
const url = prompt('Enter the link URL:', 'https://');
if (url) {
document.execCommand('createLink', false, url);
}
});
// Full Screen do navegador
toggleBrowserFullscreenButton.addEventListener('click', () => {
if (!document.fullscreenElement) {
document.documentElement.requestFullscreen();
toggleBrowserFullscreenButton.innerHTML = `<img src="arrows-fullscreen.svg" alt="Sair Do Modo Tela Cheia"> Sair Do Modo Tela Cheia (ESC)`;
} else if (document.exitFullscreen) {
document.exitFullscreen();
toggleBrowserFullscreenButton.innerHTML = `<img src="arrows-fullscreen.svg" alt="Tela Cheia (F11)"> Tela Cheia (F11)`;
}
});
// Função para obter a posição do cursor
function getCaretPosition() {
const selection = window.getSelection();
if (selection.rangeCount > 0) {
range = selection.getRangeAt(0);
}
}
// Salvar a posição do cursor ao editar o conteúdo
editor.addEventListener('input', getCaretPosition);
editor.addEventListener('click', getCaretPosition);
editor.addEventListener('keyup', getCaretPosition);
editor.addEventListener('dblclick', (e) => {
const target = e.target;
if (target.tagName === 'IMG') {
currentElement = target;
imageUrlInput.value = target.src;
imageAltInput.value = target.alt;
imageWidthInput.value = target.style.width;
imageHeightInput.value = target.style.height;
imageDialog.classList.remove('hidden');
} else if (target.tagName === 'A') {
currentElement = target;
linkUrlInput.value = target.href;
linkNewTabCheckbox.checked = target.target === '_blank';
linkDialog.classList.remove('hidden');
}
});
document.getElementById('insert-image').addEventListener('click', () => {
currentElement = null;
imageDialog.classList.remove('hidden');
});
saveImageButton.addEventListener('click', () => {
const url = imageUrlInput.value;
const alt = imageAltInput.value;
const width = imageWidthInput.value;
const height = imageHeightInput.value;
if (currentElement && currentElement.tagName === 'IMG') {
currentElement.src = url;
currentElement.alt = alt;
currentElement.style.width = width;
currentElement.style.height = height;
} else {
const img = document.createElement('img');
img.src = url;
img.alt = alt;
img.style.width = width.includes('%') ? width : `${width}px`;
img.style.height = height.includes('%') ? height : `${height}px`;
if (range) {
range.deleteContents();
range.insertNode(img);
} else {
editor.appendChild(img);
}
}
imageDialog.classList.add('hidden');
imageUrlInput.value = '';
imageAltInput.value = '';
imageWidthInput.value = '';
imageHeightInput.value = '';
currentElement = null;
});
cancelImageButton.addEventListener('click', () => {
imageDialog.classList.add('hidden');
imageUrlInput.value = '';
imageAltInput.value = '';
imageWidthInput.value = '';
imageHeightInput.value = '';
currentElement = null;
});
// Função para abrir o diálogo de edição de imagem
function openImageDialog() {
imageDialog.classList.remove('hidden');
}
});
</script>
</body>
</html>