all repos — snow-editor @ 13d855e25e8510a57608b0ce77f62cbeed372d0e

small and cozy markdown, and orgmode editor

src/pages/LocalEditorPage.jsx (view raw)

 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
import { useCallback, useEffect, useRef, useState } from 'react';
import DraftsMenu from '../components/DraftsMenu.jsx';
import IconButton from '../components/IconButton.jsx';
import ShareModal from '../components/ShareModal.jsx';
import StatusBadge from '../components/StatusBadge.jsx';
import EditorLayout from '../components/EditorLayout.jsx';
import {
  ClearIcon,
  DownloadIcon,
  ShareIcon,
  UploadIcon,
} from '../components/icons/index.js';
import { deriveTitle } from '../lib/deriveTitle.js';
import { downloadDocument } from '../lib/download.js';
import {
  createDraft,
  deleteDraft,
  ensureDraftsInitialized,
  listDrafts,
  loadDraftContent,
  saveDraft,
  setCurrentDraftId,
} from '../lib/drafts.js';
import { MODES, persistMode } from '../lib/editorConstants.js';
import { ensureMarkedLoaded } from '../lib/previewHtml.js';
import { STR } from '../lib/strings.js';

const STORAGE_DEBOUNCE_MS = 500;
// Injected by Vite from package.json — single source of truth for the version.
const APP_VERSION = typeof __APP_VERSION__ !== 'undefined' ? __APP_VERSION__ : 'dev';
const CREATOR_NAME = 'Pablo Murad';
const CREATOR_EMAIL = 'pablomurad@pm.me';

function getFileExtension(filename) {
  const parts = filename.toLowerCase().split('.');
  if (parts.length < 2) return 'txt';
  return parts[parts.length - 1];
}

export default function LocalEditorPage() {
  const [draft, setDraft] = useState(() => ensureDraftsInitialized());
  const [storageWarning, setStorageWarning] = useState(false);
  const [shareOpen, setShareOpen] = useState(false);
  const fileInputRef = useRef(null);
  const editorRef = useRef(null);

  const { id: draftId, mode, content } = draft;

  useEffect(() => {
    const timer = window.setTimeout(() => {
      const saved = saveDraft(draftId, { mode, content });
      setStorageWarning(!saved);
    }, STORAGE_DEBOUNCE_MS);

    return () => window.clearTimeout(timer);
  }, [draftId, mode, content]);

  const saveLabel = mode === MODES.ORG ? 'Save .org' : 'Save .md';

  const prefetchMarkdown = useCallback(() => {
    ensureMarkedLoaded();
  }, []);

  const setContent = useCallback((nextContent) => {
    setDraft((current) => ({ ...current, content: nextContent }));
  }, []);

  const handleModeChange = useCallback(
    (nextMode) => {
      if (nextMode === mode) return;
      persistMode(nextMode);
      setDraft((current) => {
        saveDraft(current.id, { mode: nextMode, content: current.content });
        return { ...current, mode: nextMode };
      });
      setStorageWarning(false);
      if (nextMode === MODES.MARKDOWN) prefetchMarkdown();
      editorRef.current?.focus();
    },
    [mode, prefetchMarkdown],
  );

  const flushCurrentDraft = useCallback(() => {
    saveDraft(draftId, { mode, content });
  }, [draftId, mode, content]);

  const handleSelectDraft = useCallback(
    (id) => {
      flushCurrentDraft();
      const entry = listDrafts().find((item) => item.id === id);
      if (!entry) return;
      setCurrentDraftId(id);
      persistMode(entry.mode);
      setDraft({
        id,
        mode: entry.mode === MODES.ORG ? MODES.ORG : MODES.MARKDOWN,
        content: loadDraftContent(id),
      });
      setStorageWarning(false);
      editorRef.current?.focus();
    },
    [flushCurrentDraft],
  );

  const handleCreateDraft = useCallback(() => {
    flushCurrentDraft();
    const created = createDraft(mode, '');
    setDraft(created);
    setStorageWarning(false);
    editorRef.current?.focus();
  }, [flushCurrentDraft, mode]);

  const handleDeleteDraft = useCallback(
    (id) => {
      deleteDraft(id);
      if (id !== draftId) return;
      const next = ensureDraftsInitialized();
      persistMode(next.mode);
      setDraft(next);
    },
    [draftId],
  );

  const handleSave = useCallback(() => {
    downloadDocument(content, mode, deriveTitle(content, mode));
  }, [content, mode]);

  const handleImport = useCallback(
    (event) => {
      const file = event.target.files?.[0];
      if (!file) return;

      const ext = getFileExtension(file.name);
      let targetMode = mode;
      if (ext === 'org') targetMode = MODES.ORG;
      else if (ext === 'md' || ext === 'markdown') targetMode = MODES.MARKDOWN;

      const reader = new FileReader();
      reader.onload = () => {
        const result = reader.result;
        if (typeof result !== 'string') return;

        // Imports land in a fresh draft so the current one is never clobbered.
        flushCurrentDraft();
        const created = createDraft(targetMode, result);
        persistMode(targetMode);
        setDraft(created);
        setStorageWarning(false);
        if (targetMode === MODES.MARKDOWN) prefetchMarkdown();
      };
      reader.readAsText(file);
      event.target.value = '';
    },
    [mode, flushCurrentDraft, prefetchMarkdown],
  );

  const handleClear = useCallback(() => {
    if (content.trim()) {
      const confirmed = window.confirm(
        'Clear the editor and start a blank document? Current content will be replaced.',
      );
      if (!confirmed) return;
    }

    setDraft((current) => {
      saveDraft(current.id, { mode: current.mode, content: '' });
      return { ...current, content: '' };
    });
    setStorageWarning(false);
    editorRef.current?.focus();
  }, [content]);

  return (
    <div className="app">
      <header className="app-header">
        <div className="app-header-text">
          <div className="app-header-top">
            <h1 className="app-title">Snow Editor</h1>
            <StatusBadge variant="online">{STR.BADGE_ONLINE}</StatusBadge>
          </div>
          <p className="app-subtitle">Write calmly. See the result live.</p>
          <div className="mode-switch" role="group" aria-label="Editor mode">
            <button
              type="button"
              className={`mode-switch__btn${mode === MODES.MARKDOWN ? ' is-active' : ''}`}
              aria-pressed={mode === MODES.MARKDOWN}
              onClick={() => handleModeChange(MODES.MARKDOWN)}
              onMouseEnter={prefetchMarkdown}
              onFocus={prefetchMarkdown}
            >
              Markdown
            </button>
            <button
              type="button"
              className={`mode-switch__btn${mode === MODES.ORG ? ' is-active' : ''}`}
              aria-pressed={mode === MODES.ORG}
              onClick={() => handleModeChange(MODES.ORG)}
            >
              Org-mode
            </button>
          </div>
        </div>
        <div className="toolbar" role="toolbar" aria-label="Editor actions">
          <DraftsMenu
            currentDraftId={draftId}
            onListDrafts={listDrafts}
            onSelectDraft={handleSelectDraft}
            onCreateDraft={handleCreateDraft}
            onDeleteDraft={handleDeleteDraft}
          />
          <IconButton
            icon={<ShareIcon />}
            label={STR.SHARE}
            onClick={() => setShareOpen(true)}
          />
          <IconButton
            icon={<DownloadIcon />}
            label={mode === MODES.ORG ? 'Save as Org-mode file' : 'Save as Markdown file'}
            onClick={handleSave}
          />
          <IconButton
            icon={<UploadIcon />}
            label="Import file"
            onClick={() => fileInputRef.current?.click()}
          />
          <input
            ref={fileInputRef}
            id="file-import"
            type="file"
            accept=".md,.markdown,.org,.txt,text/markdown,text/plain"
            className="file-input-hidden"
            onChange={handleImport}
            aria-label="Choose file to import"
          />
          <IconButton
            icon={<ClearIcon />}
            variant="ghost"
            label="Clear editor and start blank document"
            onClick={handleClear}
          />
        </div>
      </header>

      <EditorLayout
        mode={mode}
        content={content}
        onContentChange={setContent}
        editorRef={editorRef}
      />

      <footer className="app-footer">
        {storageWarning && (
          <p className="app-storage-warning" role="status">
            Draft too large to save in browser storage; export with {saveLabel}.
          </p>
        )}
        <p className="app-meta">
          Snow Editor v{APP_VERSION} · {CREATOR_NAME} ·{' '}
          <a href={`mailto:${CREATOR_EMAIL}`}>{CREATOR_EMAIL}</a>
        </p>
      </footer>

      {shareOpen && (
        <ShareModal
          open
          onClose={() => setShareOpen(false)}
          title={deriveTitle(content, mode)}
          mode={mode}
          content={content}
        />
      )}
    </div>
  );
}