-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
807 lines (721 loc) · 24.6 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
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
<!DOCTYPE html>
<html lang="he" dir="rtl">
<head>
<meta charset="UTF-8">
<title>עורך הספרים לאוצריא</title>
<style>
/* איפוס ועיצוב בסיסי */
* {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
font-family: "Segoe UI", Arial, Tahoma, Geneva, Verdana, sans-serif;
background-color: #f2f2f2;
}
/* תפריט עליון (fixed), כך שתמיד יהיה מעל (לא יגלול יחד עם הטקסט).
גובה: 50px */
.top-bar {
position: fixed;
top: 0;
right: 0;
left: 0;
height: 50px;
background: #1976d2;
color: #fff;
display: flex;
align-items: center;
justify-content: space-between; /* שמאל/ימין */
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
z-index: 9999;
padding: 0 8px;
}
/* בלוק אמצעי - כפתורי עיצוב */
.top-bar-middle {
display: flex;
align-items: center;
gap: 8px;
margin-left: 8px;
margin-right: 8px;
}
/* בלוק שמאלי - כפתור טעינת קובץ */
.top-bar-left {
display: flex;
align-items: center;
gap: 8px;
margin-left: 8px;
margin-right: 8px;
}
/* בלוק ימני - כפתור שם קובץ, רענן, שמירה */
.top-bar-right {
display: flex;
align-items: center;
gap: 8px;
margin-right: 8px;
margin-left: 8px;
}
/* כפתורים */
button,
.file-label {
display: inline-flex;
align-items: center;
justify-content: center;
border: none;
border-radius: 16px;
padding: 6px 12px;
background: #1565c0;
color: #fff;
cursor: pointer;
font-size: 0.9rem;
transition: background 0.3s ease;
text-decoration: none;
}
button:hover,
.file-label:hover {
background: #0d47a1;
}
/* כפתורים מיוחדים */
.save-button {
background: #388e3c; /* ירוק Material */
}
.save-button:hover {
background: #2e7d32;
}
.refresh-button {
background: #5d4037; /* חום */
}
.refresh-button:hover {
background: #4e342e;
}
/* תווית שם הקובץ */
.file-name-display {
font-weight: bold;
color: #ffeb3b; /* צהבהב */
margin-left: 4px;
}
/* מסתירים input[type=file], מציגים רק label (—> בוטל בשינוי החדש) */
/* חלונית כותרות בצד ימין (fixed) - לא תזוז בגלילה */
.side-panel {
position: fixed;
top: 4rem; /* מתחת ל-top-bar שגובהו 3rem */
right: 0.8rem;
bottom: 1rem;
width: 19vw; /* שימוש ביחידה יחסית לרוחב המסך */
background: #fff;
box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.1);
overflow-y: auto;
padding: 0.8rem;
z-index: 10;
border-radius: 8px;
/* בשיטה הזו, נניח שהידית תבוא אחרי זה */
margin-inline-end: 0.5rem;
margin-left: 12px;
color: black;
}
.side-panel::-webkit-scrollbar {
width: 8px; /* רוחב פס הגלילה */
direction: rtl; /* כיוון פס הגלילה */
}
.side-panel::-webkit-scrollbar-thumb {
background-color: #b6b4b4; /* צבע הפס */
border-radius: 4px;
min-height: 35px; /* גובה מינימלי של פס הגלילה */
}
.side-panel::-webkit-scrollbar-thumb:hover {
background-color: #555; /* צבע הפס כשעוברים מעליו */
}
.side-panel h2 {
font-size: 1rem;
margin: 8px 0;
}
.outline-list {
list-style-type: none;
margin: 0;
padding: 0;
}
.outline-list li {
margin-bottom: 6px;
cursor: pointer;
color: #1976d2;
word-wrap: break-word;
}
.outline-list li:hover {
text-decoration: underline;
}
/* ידית גרירה - resizer (מהקוד הראשון) */
#resizer {
position: fixed;
top: 50px;
bottom: 1rem;
width: 1.5rem; /* ידית 0.5rem */
right: calc(22vw - 1.5rem);
cursor: col-resize;
z-index: 9998;
background: transparent;
display: flex;
align-items: center;
justify-content: center;
border-radius: 4px;
}
/* עיצוב הסימן */
#resizer::before {
content: "⋮"; /* שלוש נקודות אנכיות */
font-size: 30px;
color: rgba(0, 0, 0, 0.6); /* צבע עדין */
text-align: center;
}
/* אזור התוכן (Scrollable) -
נקבע כ-FIXED כך שהטקסט יגלול בתוכו באופן עצמאי,
בעוד ה-top-bar וה-side-panel נשארים מעליו. */
.main-container {
position: fixed;
top: 4rem; /* מתחת ל-top-bar שגובהו 3rem */
right: calc(20vw + 0.5rem);
left: 0.8rem;
z-index: 50;
bottom: 1rem; /* רווח קטן בתחתית */
overflow-y: auto; /* גלילה עצמאית לתוכן */
background: #fff;
box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.1);
padding: 1rem;
min-height: 80vh;
border-radius: 8px;
margin-right: 12px;
}
.main-container::-webkit-scrollbar {
width: 8px; /* רוחב פס הגלילה */
direction: rtl; /* כיוון פס הגלילה */
}
.main-container::-webkit-scrollbar-thumb {
background-color: #b6b4b4; /* צבע הפס */
border-radius: 4px;
min-height: 35px; /* גובה מינימלי של פס הגלילה */
}
.main-container::-webkit-scrollbar-thumb:hover {
background-color: #555; /* צבע הפס כשעוברים מעליו */
}
#editor {
min-height: 70vh;
outline: none;
cursor: text;
width: 100%;
direction: rtl; /* כתיבה מימין לשמאל */
text-align: right;
white-space: pre-line; /* \n => ירידת שורה */
display: block;
color: black;
}
/* מניעת מרווחים סביב כותרות */
#editor h1, #editor h2, #editor h3, #editor h4, #editor h5, #editor h6 {
margin: 0;
padding: 0;
}
.tooltip-container {
position: relative;
display: inline-block;
}
.tooltip {
visibility: hidden;
background-color: rgba(0, 0, 0, 0.644);
color: #fff;
text-align: center;
border-radius: 5px;
padding: 5px;
position: absolute;
z-index: 99;
top: 160%; /* Position above the button */
left: 50%;
transform: translateX(-50%);
opacity: 0;
transition: opacity 0.9s;
font-size: 12px;
}
.tooltip-container:hover .tooltip {
visibility: visible;
opacity: 1;
}
</style>
</head>
<body>
<!-- תפריט עליון (Fixed) -->
<div class="top-bar">
<!-- צד שמאל: כפתור פתיחת קובץ (הוחלף), שם קובץ -->
<div class="top-bar-left">
<!-- הוחלף: במקום label+input => כפתור File System Access -->
<button class="file-label" id="openFileButton">פתח קובץ</button>
<span id="fileNameSpan" class="file-name-display"></span>
</div>
<!-- צד אמצע: כפתורי עיצוב -->
<div class="top-bar-middle">
<div class="tooltip-container">
<button onclick="toggleHeading(1)">H1</button>
<div class="tooltip">הגדרת כותרת רמה 1</div>
</div>
<div class="tooltip-container">
<button onclick="toggleHeading(2)">H2</button>
<div class="tooltip">הגדרת כותרת רמה 2</div>
</div>
<button onclick="toggleHeading(3)">H3</button>
<button onclick="toggleHeading(4)">H4</button>
<button onclick="toggleHeading(5)">H5</button>
<button onclick="toggleHeading(6)">H6</button>
<button onclick="toggleBold()">הדגש</button>
<button onclick="toggleItalic()">נטוי</button>
<button onclick="toggleBig()">גדול</button>
<button onclick="toggleSmall()">קטן</button>
</div>
<!-- צד ימין: כפתור רענון (שונה), שמירה -->
<div class="top-bar-right">
<!-- במקום “אפס עריכה” => “טען מחדש” (File System Access) -->
<div class="tooltip-container">
<button class="refresh-button" id="reloadFileButton" disabled>טען מחדש</button>
<div class="tooltip">טען מחדש את התוכן מהקובץ</div>
</div>
<div class="tooltip-container">
<button class="save-button" onclick="saveFile()">שמירה</button>
<div class="tooltip">שומר עותק באותו שם בתיקיית ההורדות</div>
</div>
</div>
</div>
<!-- חלונית כותרות בצד ימין (Fixed) -->
<div class="side-panel" id="sidePanel">
<h2>כותרות במסמך</h2>
<ul class="outline-list" id="outlineList"></ul>
</div>
<!-- ידית גרירה (תוספת) -->
<div id="resizer"></div>
<!-- אזור התוכן, גולל באופן עצמאי (Fixed) -->
<div class="main-container" id="mainContainer">
<div class="editor-container">
<div
id="editor"
contenteditable="true"
onkeydown="handleEnter(event)"
<p>טען קובץ, והתחל לערוך אותו!!!</p>
</div>
</div>
</div>
<script>
/* תוספת: ידית גרירה - (מהקוד הראשון) */
const sidePanel = document.getElementById("sidePanel");
const resizer = document.getElementById("resizer");
const mainCont = document.getElementById("mainContainer");
let dragging = false;
let startX = 0;
let startWidth = 0;
resizer.addEventListener("mousedown", function(e) {
e.preventDefault();
dragging = true;
startX = e.clientX;
startWidth = sidePanel.offsetWidth;
document.addEventListener("mousemove", mouseMoveHandler);
document.addEventListener("mouseup", mouseUpHandler);
});
function mouseMoveHandler(e) {
if (!dragging) return;
const dx = e.clientX - startX;
let newWidth = startWidth - dx;
if (newWidth < 160) newWidth = 160;
const maxPix = window.innerWidth * 0.4;
if (newWidth > maxPix) newWidth = maxPix;
sidePanel.style.width = newWidth + "px";
/* הידית עצמה */
resizer.style.right = (newWidth - 4) + "px";
/* mainContainer */
mainCont.style.right = (newWidth + 8) + "px";
}
function mouseUpHandler(e) {
dragging = false;
document.removeEventListener("mousemove", mouseMoveHandler);
document.removeEventListener("mouseup", mouseUpHandler);
}
/**
* הוספת משתנים/פונקציות ל-File System Access
* הוסר השימוש ב-input[type=file].
*/
let fileHandle = null;
let fileContentCache = "";
/** 1) מניעת <div> או <br> ב-Enter: רק \n */
function handleEnter(e) {
if (e.key === "Enter") {
e.preventDefault();
const sel = window.getSelection();
if (!sel.rangeCount) return;
const range = sel.getRangeAt(0);
const newLine = document.createTextNode("\n");
range.insertNode(newLine);
range.setStartAfter(newLine);
range.setEndAfter(newLine);
sel.removeAllRanges();
sel.addRange(range);
}
}
/** 2) הדגשה/ נטוי/ גדול/ קטן - בלי מצבי כפילות */
function toggleBold() { toggleSize('b'); updateOutline(); }
function toggleItalic() { toggleSize('i'); updateOutline(); }
function toggleBig() { toggleSize('big'); updateOutline(); }
function toggleSmall() { toggleSize('small'); updateOutline(); }
/** 3) לוגיקה כללית לכל תגי b,i,big,small: */
function toggleSize(tagRequested) {
const sel = window.getSelection();
if (!sel.rangeCount) return;
removeSelectionSpaces(sel);
const range = sel.getRangeAt(0);
// חיפוש התג העוטף
const parent = findWrappingTag(range);
if (!parent) {
// אין תג => עוטפים רגיל
wrapSelection(range, tagRequested);
updateOutline();
return;
}
// אם כבר עטוף באותו תג => נבדוק האם מדובר בכל הטקסט?
const oldTag = parent.tagName.toLowerCase();
if (oldTag === tagRequested) {
if (selectionIsFullParent(range, parent)) {
unwrapNode(parent);
} else {
const newHtml = partialUnwrap(range, parent);
parent.outerHTML = newHtml;
}
updateOutline();
return;
}
// אם התג הקיים שונה מהמבוקש
if (selectionIsFullParent(range, parent)) {
parent.outerHTML = replaceTag(parent.outerHTML, oldTag, tagRequested);
} else {
const newHtml = handlePartialSplit(range, tagRequested, parent);
parent.outerHTML = newHtml;
}
updateOutline();
}
/** פונקציה בסיסית לעטיפת טווח בתג מסוים */
function wrapSelection(range, tagName) {
const selectedContents = range.extractContents();
const newElement = document.createElement(tagName);
newElement.appendChild(selectedContents);
range.insertNode(newElement);
}
/** בודק האם הבחירה חופפת ל-100% מהטקסט של parent */
function selectionIsFullParent(range, parent) {
const selectedText = range.toString();
const parentText = parent.textContent;
return selectedText.trim() === parentText.trim();
}
/** partialUnwrap - מוציא רק את החלק המסומן מתוך parent */
function partialUnwrap(range, parent) {
const fullText = parent.textContent;
const startOffset = getOffsetInParent(range, parent, true);
const endOffset = getOffsetInParent(range, parent, false);
const oldTag = parent.tagName.toLowerCase();
if (startOffset === -1 || endOffset === -1) {
return escapeHtml(fullText);
}
const beforePart = fullText.slice(0, startOffset);
const selected = fullText.slice(startOffset, endOffset);
const afterPart = fullText.slice(endOffset);
let resultHTML = "";
if (beforePart.trim()) {
resultHTML += `<${oldTag}>${escapeHtml(beforePart)}</${oldTag}>`;
}
resultHTML += escapeHtml(selected);
if (afterPart.trim()) {
resultHTML += `<${oldTag}>${escapeHtml(afterPart)}</${oldTag}>`;
}
return resultHTML;
}
/** החלפת תג (למשל <b> => <i>) במלואו */
function replaceTag(html, oldTag, newTag) {
const openRegex = new RegExp(`<${oldTag}(\\b[^>]*)>`, 'gi');
const closeRegex = new RegExp(`</${oldTag}>`, 'gi');
return html
.replace(openRegex, `<${newTag}$1>`)
.replace(closeRegex, `</${newTag}>`);
}
/** פיצול של הטקסט שבתוך parent, כך שהקטע הנבחר יהפוך לתג newTag */
function handlePartialSplit(range, newTag, parent) {
const fullText = parent.textContent || "";
const startOffset = getOffsetInParent(range, parent, true);
const endOffset = getOffsetInParent(range, parent, false);
if (startOffset === -1 || endOffset === -1) {
return `<${newTag}>${escapeHtml(range.toString())}</${newTag}>`;
}
const beforePart = fullText.slice(0, startOffset);
const selected = fullText.slice(startOffset, endOffset);
const afterPart = fullText.slice(endOffset);
const oldTag = parent.tagName.toLowerCase();
let resultHTML = "";
if (beforePart.trim().length) {
resultHTML += `<${oldTag}>${escapeHtml(beforePart)}</${oldTag}>`;
}
if (selected.trim().length) {
resultHTML += `<${newTag}>${escapeHtml(selected)}</${newTag}>`;
} else {
resultHTML += `<${newTag}></${newTag}>`;
}
if (afterPart.trim().length) {
resultHTML += `<${oldTag}>${escapeHtml(afterPart)}</${oldTag}>`;
}
return resultHTML;
}
/** מחפש את התג העוטף (b,i,big,small) */
function findWrappingTag(range) {
let node = range.commonAncestorContainer;
while (node && node !== document.body) {
if (node.nodeType === 1) {
const tag = node.tagName && node.tagName.toLowerCase();
if (['b','i','big','small'].includes(tag)) {
return node;
}
}
node = node.parentNode;
}
return null;
}
/** מסיר את התג הנתון, משאיר את התוכן */
function unwrapNode(node) {
const parent = node.parentNode;
while (node.firstChild) {
parent.insertBefore(node.firstChild, node);
}
parent.removeChild(node);
}
/** מוצא את המיקום (Offset) בתוך הטקסט של ההורה */
function getOffsetInParent(range, parent, isStart) {
const walker = document.createTreeWalker(parent, NodeFilter.SHOW_TEXT, null);
let currentOffset = 0;
let found = -1;
while (walker.nextNode()) {
const textNode = walker.currentNode;
const textLen = textNode.nodeValue.length;
if (range[isStart ? 'startContainer' : 'endContainer'] === textNode) {
const offsetInNode = isStart ? range.startOffset : range.endOffset;
found = currentOffset + offsetInNode;
break;
}
currentOffset += textLen;
}
return found;
}
/** המרה בסיסית של תווים מיוחדים ל-HTML Entities */
function escapeHtml(str) {
return str
.replace(/&/g, '&')
.replace(/</g, '<')
.replace(/>/g, '>')
.replace(/"/g, '"')
.replace(/'/g, ''');
}
/** 4) הסרת כל <b>/<i>/<big>/<small> ממחרוזת */
function removeAllSizeTags(html) {
return html
.replace(/<\s*(?:b|i|big|small)\s*>/gi, "")
.replace(/<\s*\/\s*(?:b|i|big|small)\s*>/gi, "");
}
/** הסרת רווחים מובילים/סוגרים מהבחירה */
function removeSelectionSpaces(sel) {
if (!sel.rangeCount) return;
const range = sel.getRangeAt(0);
trimSelectionStart(range, sel);
trimSelectionEnd(range, sel);
}
function trimSelectionStart(range, sel) {
const startNode = range.startContainer;
const offset = range.startOffset;
if (startNode.nodeType === Node.TEXT_NODE) {
const textVal = startNode.nodeValue;
let i = offset;
while (i < textVal.length && textVal[i] === " ") i++;
if (i > offset) {
range.setStart(startNode, i);
sel.removeAllRanges();
sel.addRange(range);
}
}
}
function trimSelectionEnd(range, sel) {
const endNode = range.endContainer;
let offset = range.endOffset;
if (endNode.nodeType === Node.TEXT_NODE) {
const textVal = endNode.nodeValue;
let i = offset - 1;
while (i >= 0 && textVal[i] === " ") i--;
const newEnd = i + 1;
if (newEnd < offset) {
range.setEnd(endNode, newEnd);
sel.removeAllRanges();
sel.addRange(range);
}
}
}
/** 5) כותרות */
function toggleHeading(level) {
const sel = window.getSelection();
if (!sel.rangeCount) return;
const range = sel.getRangeAt(0);
const extracted = range.collapsed ? null : range.extractContents();
const container = document.createElement('div');
if (extracted) container.appendChild(extracted);
let inner = container.innerHTML.trim();
const openTag = `<h${level}>`;
const closeTag = `</h${level}>`;
addNewlineBefore(range);
// אם כבר עטוף => הסר
if (inner.startsWith(openTag) && inner.endsWith(closeTag)) {
inner = inner.slice(openTag.length, inner.length - closeTag.length);
const frag = document.createRange().createContextualFragment(inner);
range.insertNode(frag);
} else {
// אחרת עוטפים
const headingElem = document.createElement(`h${level}`);
headingElem.innerHTML = inner;
range.insertNode(headingElem);
}
range.setStartAfter(range.endContainer);
range.setEndAfter(range.endContainer);
sel.removeAllRanges();
sel.addRange(range);
updateOutline();
}
/** מוסיף \n לפני הכותרת, אם אין */
function addNewlineBefore(range) {
const textNode = range.startContainer;
if (textNode && textNode.nodeType === 3) {
if (!textNode.nodeValue.endsWith("\n")) {
const newLine = document.createTextNode("\n");
range.insertNode(newLine);
range.setStartAfter(newLine);
range.setEndAfter(newLine);
const sel = window.getSelection();
sel.removeAllRanges();
sel.addRange(range);
}
} else {
const newLine = document.createTextNode("\n");
range.insertNode(newLine);
range.setStartAfter(newLine);
range.setEndAfter(newLine);
const sel = window.getSelection();
sel.removeAllRanges();
sel.addRange(range);
}
}
/** 6) עדכון חלונית כותרות (צד ימין) */
function updateOutline() {
const editor = document.getElementById("editor");
const outlineList = document.getElementById("outlineList");
outlineList.innerHTML = "";
const headings = editor.querySelectorAll("h1, h2, h3, h4, h5, h6");
headings.forEach((heading) => {
const headingText = heading.textContent.trim() || heading.tagName + " ריקה";
const li = document.createElement("li");
li.textContent = headingText;
const level = parseInt(heading.tagName.substring(1), 10);
const indent = (level - 1) * 20;
li.style.marginRight = indent + "px";
li.onclick = () => {
heading.scrollIntoView({ behavior: "smooth", block: "start" });
};
outlineList.appendChild(li);
});
}
/** (הוסר קוד טעינת קובץ דרך input[type=file]) */
/** 8) לקרוא מהקובץ (File System Access) */
async function readFile() {
if (!fileHandle) return;
const file = await fileHandle.getFile();
const content = await file.text();
fileContentCache = content;
document.getElementById("editor").innerHTML = fileContentCache;
updateOutline();
}
/** אירוע פתיחת קובץ - File System Access */
document.getElementById("openFileButton").addEventListener("click", async () => {
try {
[fileHandle] = await window.showOpenFilePicker();
// הצגת שם הקובץ
const file = await fileHandle.getFile();
document.getElementById("fileNameSpan").textContent = file.name;
await readFile(); // טוען את התוכן לעורך
document.getElementById("reloadFileButton").disabled = false;
} catch (error) {
console.error("Error opening file:", error);
}
});
/** אירוע טען מחדש - File System Access */
document.getElementById("reloadFileButton").addEventListener("click", async () => {
try {
await readFile();
} catch (error) {
console.error("Error reading file:", error);
}
});
/**
* 9) prettifyHTML לצורכי שמירה וכו’
*/
function prettifyHTML(html) {
// כותרות
html = html.replace(/<h([1-6])>/g, '\n<h$1>');
html = html.replace(/<\/h([1-6])>/g, '</h$1>\n');
// <br> => \n
html = html.replace(/<br[^>]*>/gi, '\n');
// => \n
html = html.replace(/ /gi, '\n');
// < => <
html = html.replace(/</gi, '<');
// <div> =>
html = html.replace(/<div>/gi, '');
// </div> =>
html = html.replace(/<\/div>/gi, '\n');
// </div><div> =>
html = html.replace(/<\/div><div>/gi, '');
// > => >
html = html.replace(/>/gi, '>');
// מחיקת צמדים <big><small>...</small></big> ...
let prev;
do {
prev = html;
html = html.replace(/<big><small>([\s\S]*?)<\/small><\/big>/gi, '$1');
html = html.replace(/<small><big>([\s\S]*?)<\/big><\/small>/gi, '$1');
} while (html !== prev);
// מחיקת תגים ריקים (b,i,big,small)
do {
prev = html;
html = html.replace(/<(b|i|big|small)\s*>\s*<\/\1>/gi, '');
} while (html !== prev);
// צמצום שורות ריקות
html = html.replace(/\n\s*\n+/g, '\n');
return html.trim();
}
/** 10) שמירה (export) */
function saveFile() {
if (!fileHandle) {
alert("לא נטען קובץ. אנא פתח קובץ קודם.");
return;
}
let editorContent = document.getElementById('editor').innerHTML;
editorContent = prettifyHTML(editorContent);
const blob = new Blob([editorContent], { type: "text/plain;charset=utf-8" });
const link = document.createElement("a");
// כדי לשמור באותו שם כמו הקובץ שנפתח:
link.download = fileHandle.name;
link.href = window.URL.createObjectURL(blob);
link.click();
}
/* בעת עליית הדף */
document.addEventListener('DOMContentLoaded', () => {
updateOutline();
});
/* מיקום הסימן של ה-resizer במרכז */
window.addEventListener("resize", () => {
const sidePanelWidth = sidePanel.offsetWidth;
resizer.style.right = (sidePanelWidth - 2) + "px";
mainCont.style.right = (sidePanelWidth + 10) + "px";
});
</script>
</body>
</html>