-
Notifications
You must be signed in to change notification settings - Fork 0
/
notes.html
169 lines (140 loc) · 5.62 KB
/
notes.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MiNotion - Rich Text</title>
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Quill.js CSS -->
<link href="https://cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet">
<style>
#editor {
min-height: 400px;
}
#noteTitle {
color: #333; /* Título escuro para contraste */
background-color: transparent;
border: none;
outline: none;
}
#noteTitle::placeholder {
color: #888; /* Placeholder com cor clara */
}
#editor .ql-editor {
color: #000; /* Torna o texto preto para o fundo branco do editor */
}
</style>
</head>
<body class="bg-gray-900 text-gray-200 h-screen flex ">
<!-- Sidebar -->
<!-- Sidebar -->
<div class="w-1/4 bg-gray-800 p-4 flex flex-col">
<h2 class="text-lg font-bold mb-4">MiNotion</h2>
<ul id="noteList" class="flex-grow overflow-y-auto mb-4">
<!-- Lista de Notas será gerada dinamicamente -->
</ul>
<div class="flex flex-col space-y-2">
<button id="newNoteBtn" class="bg-gray-700 text-white px-4 py-2 rounded-md hover:bg-gray-600">Nova Nota</button>
<button id="deleteBtn" class="bg-red-800 text-white px-4 py-2 rounded-md hover:bg-red-700">Apagar Nota</button>
<button id="saveBtn" class="bg-gray-700 text-white px-4 py-2 rounded-md hover:bg-gray-700">Salvar Nota</button>
</div>
</div>
<!-- Main Content -->
<div class="w-3/4 bg-gray-100 p-6">
<input id="noteTitle" class="w-full text-2xl font-bold mb-4 p-2 bg-gray-100 text-gray-800 border-none" spellcheck="false" placeholder="Título da Nota" />
<div id="editor" class="bg-white p-4 rounded-md shadow-md" spellcheck="false"></div>
</div>
<!-- Quill.js -->
<script src="https://cdn.quilljs.com/1.3.6/quill.js"></script>
<script>
var quill = new Quill('#editor', {
theme: 'snow',
placeholder: 'Escreva sua nota aqui...',
modules: {
toolbar: [
[{ header: [1, 2, false] }],
['bold', 'italic', 'underline'],
[{ list: 'ordered' }, { list: 'bullet' }],
['link', 'blockquote', 'code-block'],
['clean']
]
}
});
let currentNoteId = null;
// Carrega as notas e gera a lista na barra lateral
function loadNotes() {
const notes = JSON.parse(localStorage.getItem('notes')) || {};
const noteList = document.getElementById('noteList');
noteList.innerHTML = '';
for (let id in notes) {
const li = document.createElement('li');
li.className = 'p-2 cursor-pointer hover:bg-gray-700 rounded-md';
li.textContent = notes[id].title;
li.addEventListener('click', () => loadNote(id));
noteList.appendChild(li);
}
}
// Carregar nota selecionada
function loadNote(id) {
const notes = JSON.parse(localStorage.getItem('notes')) || {};
if (notes[id]) {
quill.root.innerHTML = notes[id].content;
document.getElementById('noteTitle').value = notes[id].title;
currentNoteId = id;
}
}
// Salvar nota no localStorage
function saveNote() {
const title = document.getElementById('noteTitle').value.trim();
if (!title) {
alert('O título da nota não pode ser vazio.');
return;
}
const content = quill.root.innerHTML;
const notes = JSON.parse(localStorage.getItem('notes')) || {};
if (!currentNoteId) {
// Gera um ID único para a nova nota
currentNoteId = `note-${Date.now()}`;
}
// Atualiza ou cria a nota no objeto
notes[currentNoteId] = {
title: title,
content: content
};
localStorage.setItem('notes', JSON.stringify(notes));
// Log para verificar se está salvando corretamente
console.log('Nota salva:', notes);
console.log('Nota salva com sucesso!');
loadNotes(); // Atualiza a lista de notas
}
// Apagar nota
function deleteNote() {
if (!currentNoteId) {
alert('Selecione uma nota para apagar.');
return;
}
const notes = JSON.parse(localStorage.getItem('notes')) || {};
delete notes[currentNoteId]; // Remove a nota
localStorage.setItem('notes', JSON.stringify(notes));
quill.root.innerHTML = ''; // Limpa o editor
document.getElementById('noteTitle').value = ''; // Limpa o título
currentNoteId = null; // Reseta o ID da nota atual
alert('Nota apagada com sucesso!');
loadNotes(); // Atualiza a lista de notas
}
// Nova nota
function newNote() {
quill.root.innerHTML = ''; // Limpa o editor
document.getElementById('noteTitle').value = ''; // Limpa o título
currentNoteId = null; // Reseta o ID da nota atual
}
// Eventos dos botões
document.getElementById('saveBtn').addEventListener('click', saveNote);
document.getElementById('deleteBtn').addEventListener('click', deleteNote);
document.getElementById('newNoteBtn').addEventListener('click', newNote);
// Carrega as notas ao carregar a página
window.onload = loadNotes;
</script>
</body>
</html>