all repos — snow-editor @ 13d855e25e8510a57608b0ce77f62cbeed372d0e

small and cozy markdown, and orgmode editor

src/pages/SharedEditPage.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
import { useCallback, useEffect, useRef, useState } from 'react';
import { useParams } from 'react-router-dom';
import EditorLayout from '../components/EditorLayout.jsx';
import ReadOnlyBanner from '../components/ReadOnlyBanner.jsx';
import SaveStatus from '../components/SaveStatus.jsx';
import StatusBadge from '../components/StatusBadge.jsx';
import VersionHistory from '../components/VersionHistory.jsx';
import { useEditLock } from '../hooks/useEditLock.js';
import { useNoIndex } from '../hooks/useNoIndex.js';
import { useServerAutosave } from '../hooks/useServerAutosave.js';
import {
  ApiError,
  fetchEditDocument,
  friendlyErrorMessage,
} from '../lib/api.js';
import { downloadDocument } from '../lib/download.js';
import { parseOrgDocument } from '../lib/org/parseDocument.js';
import { STR } from '../lib/strings.js';
import LinkErrorPage from './LinkErrorPage.jsx';

export default function SharedEditPage() {
  useNoIndex();
  const { token } = useParams();
  const [doc, setDoc] = useState(null);
  const [title, setTitle] = useState('');
  const [content, setContent] = useState('');
  const [mode, setMode] = useState('markdown');
  const [loadError, setLoadError] = useState(null);
  const [loading, setLoading] = useState(true);
  const [lockLost, setLockLost] = useState(false);
  const editorRef = useRef(null);
  const titleEditedRef = useRef(false);

  const { lockState, acquire, release, hasLock, lockToken, clientId } =
    useEditLock(token, !!doc && !loadError);

  const canEdit = hasLock && !lockLost;

  const { saveStatus, saveNow } = useServerAutosave({
    editToken: token,
    clientId,
    lockToken,
    enabled: canEdit,
    title,
    mode,
    content,
  });

  useEffect(() => {
    if (mode !== 'org' || titleEditedRef.current) return;
    const { title: orgTitle } = parseOrgDocument(content);
    if (
      orgTitle &&
      (title === STR.UNTITLED_DOCUMENT || title.trim() === '')
    ) {
      setTitle(orgTitle);
    }
  }, [content, mode, title]);

  useEffect(() => {
    let cancelled = false;

    (async () => {
      setLoading(true);
      setLoadError(null);
      titleEditedRef.current = false;
      try {
        const data = await fetchEditDocument(token);
        if (cancelled) return;
        setDoc(data);
        setTitle(data.title);
        setContent(data.content);
        setMode(data.mode);
      } catch (err) {
        if (!cancelled) setLoadError(err);
      } finally {
        if (!cancelled) setLoading(false);
      }
    })();

    return () => {
      cancelled = true;
    };
  }, [token]);

  const lockRequestedRef = useRef(false);

  useEffect(() => {
    lockRequestedRef.current = false;
  }, [token]);

  useEffect(() => {
    if (!doc || loadError || lockRequestedRef.current) return;
    lockRequestedRef.current = true;
    acquire().catch(() => {});
  }, [doc, loadError, acquire]);

  // Track whether we ever held the lock: autosave reports "no_permission"
  // while the lock is still being acquired, which must not count as "lost".
  const hadLockRef = useRef(false);

  useEffect(() => {
    if (hasLock) hadLockRef.current = true;
  }, [hasLock]);

  useEffect(() => {
    if (lockState.status === 'lost') {
      setLockLost(true);
    }
    if (saveStatus === 'no_permission' && hadLockRef.current) {
      setLockLost(true);
    }
  }, [lockState.status, saveStatus]);

  const handleSaveServer = useCallback(async () => {
    const ok = await saveNow();
    if (!ok) setLockLost(true);
  }, [saveNow]);

  const handleRelease = useCallback(async () => {
    await release();
    setLockLost(true);
  }, [release]);

  const handleDownload = useCallback(() => {
    downloadDocument(content, mode, title);
  }, [content, mode, title]);

  const handleVersionRestored = useCallback(
    (data) => {
      setTitle(data.title);
      setMode(data.mode);
      setContent(data.content);
      saveNow();
    },
    [saveNow],
  );

  if (loading) {
    return (
      <div className="app">
        <p className="page-loading">{STR.LOADING_DOCUMENT}</p>
      </div>
    );
  }

  if (loadError instanceof ApiError) {
    if (loadError.status === 410) {
      return (
        <LinkErrorPage
          title={STR.LINK_EXPIRED_TITLE}
          message={STR.LINK_EXPIRED_EDIT}
        />
      );
    }
    if (loadError.status === 404) {
      return (
        <LinkErrorPage
          title={STR.DOCUMENT_NOT_FOUND_TITLE}
          message={friendlyErrorMessage(loadError)}
        />
      );
    }
  }

  if (loadError || !doc) {
    return (
      <LinkErrorPage
        title={STR.LOAD_ERROR_TITLE}
        message={friendlyErrorMessage(loadError)}
      />
    );
  }

  const saveLabel = mode === 'org' ? STR.DOWNLOAD_ORG : STR.DOWNLOAD_MD;
  const readOnly =
    !canEdit || lockState.status === 'blocked' || lockState.status === 'acquiring';

  return (
    <div className="app">
      <header className="app-header">
        <div className="app-header-text">
          <div className="app-header-top">
            <input
              className="doc-title-input"
              value={title}
              onChange={(e) => {
                titleEditedRef.current = true;
                setTitle(e.target.value);
              }}
              readOnly={readOnly}
              aria-label="Document title"
            />
            <StatusBadge variant="shared">{STR.BADGE_SHARED}</StatusBadge>
            {canEdit ? (
              <StatusBadge variant="editing">{STR.BADGE_EDITING}</StatusBadge>
            ) : (
              <StatusBadge variant="readonly">{STR.BADGE_READONLY}</StatusBadge>
            )}
          </div>
          <p className="app-subtitle">
            {canEdit ? STR.SHARED_EDIT : STR.SHARED_VIEW}
          </p>
        </div>
        <div className="toolbar">
          {canEdit && (
            <>
              <button type="button" className="btn" onClick={handleSaveServer}>
                {STR.SAVE_TO_SERVER}
              </button>
              <VersionHistory
                editToken={token}
                clientId={clientId}
                lockToken={lockToken}
                onRestored={handleVersionRestored}
              />
              <button type="button" className="btn btn-ghost" onClick={handleRelease}>
                {STR.RELEASE_EDIT_LOCK}
              </button>
            </>
          )}
          <button type="button" className="btn" onClick={handleDownload}>
            {saveLabel}
          </button>
          <SaveStatus status={saveStatus} />
        </div>
      </header>

      {lockState.status === 'blocked' && (
        <ReadOnlyBanner
          message={STR.LOCKED_BY_OTHER}
          lockExpiresAt={lockState.blockedExpiresAt}
        />
      )}

      {lockLost && (
        <ReadOnlyBanner variant="warning" message={STR.LOCK_LOST} />
      )}

      <EditorLayout
        mode={mode}
        content={content}
        onContentChange={canEdit ? setContent : undefined}
        readOnly={readOnly}
        editorRef={editorRef}
        showEditor
      />

      <footer className="app-footer">
        <p className="app-meta">{STR.FOOTER_SHARED}</p>
      </footer>
    </div>
  );
}