Spaces:
Sleeping
Sleeping
File size: 7,672 Bytes
9e8f898 5b5da0e a699cda 5b5da0e 9e8f898 8e887dc bdc7568 9e8f898 bdc7568 9e8f898 bdc7568 9e8f898 bdc7568 9e8f898 bdc7568 9e8f898 bdc7568 9e8f898 bdc7568 9e8f898 5b5da0e bd25310 5b5da0e 9e8f898 bd25310 5b5da0e 9e8f898 5b5da0e 9e8f898 5b5da0e 9e8f898 5b5da0e 9e8f898 5b5da0e 9e8f898 5b5da0e 9e8f898 5b5da0e 604c3c1 bd25310 604c3c1 bd25310 604c3c1 a699cda 5b5da0e 9e8f898 5b5da0e a699cda 5b5da0e 604c3c1 5b5da0e 9e8f898 5b5da0e bdc7568 9e8f898 5b5da0e 8e887dc 5b5da0e | 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 | import { useEffect, useRef, useState } from 'react';
import type { Session } from '../types';
import * as api from '../api';
import type { FileEntry } from '../api';
import Logo from './Logo';
import { FolderGlyph, FileGlyph, CloseGlyph, UpGlyph, UploadGlyph } from './icons';
const fmtSize = (n: number) => {
if (n < 1024) return `${n} B`;
if (n < 1024 * 1024) return `${(n / 1024).toFixed(0)} KB`;
return `${(n / 1024 / 1024).toFixed(1)} MB`;
};
const join = (a: string, b: string) => (a ? `${a}/${b}` : b);
const sortEntries = (es: FileEntry[]) =>
[...es].sort((a, b) => (a.dir === b.dir ? a.name.localeCompare(b.name) : a.dir ? -1 : 1));
const triggerDownload = (url: string, name: string) => {
const a = document.createElement('a');
a.href = url; a.download = name;
document.body.appendChild(a); a.click(); a.remove();
};
// ASCII-tree rails: one cell per ancestor (vertical line if that ancestor has
// more siblings below) plus the elbow cell for this row (├ normally, └ if last).
// `prefix[i]` = "draw a continuation line at ancestor column i".
function Rails({ prefix, isLast }: { prefix: boolean[]; isLast: boolean }) {
return (
<span className="rails" aria-hidden>
{prefix.map((cont, i) => <span key={i} className={`rail${cont ? ' v' : ''}`} />)}
<span className={`rail elbow${isLast ? ' last' : ''}`} />
</span>
);
}
const padFor = (prefix: boolean[]) => ({ paddingLeft: `${(prefix.length + 1) * 1.1}em` });
// Lazily-loaded contents of one directory; recurses through FolderNode.
function DirContents({ sessionId, path, prefix, onOpen }: {
sessionId: string; path: string; prefix: boolean[]; onOpen: (p: string) => void;
}) {
const [entries, setEntries] = useState<FileEntry[] | null>(null);
const [err, setErr] = useState(false);
useEffect(() => {
let alive = true;
api.listFiles(sessionId, path)
.then((r) => { if (alive) { setEntries(r.entries); setErr(false); } })
.catch(() => { if (alive) setErr(true); });
return () => { alive = false; };
}, [sessionId, path]);
if (err) return <div className="tree-msg" style={padFor(prefix)}>can't read folder</div>;
if (!entries) return <div className="tree-msg" style={padFor(prefix)}>…</div>;
if (entries.length === 0) return <div className="tree-msg" style={padFor(prefix)}>empty</div>;
const arr = sortEntries(entries);
return (
<>
{arr.map((e, i) => {
const isLast = i === arr.length - 1;
const p = join(path, e.name);
return e.dir ? (
<FolderNode key={e.name} sessionId={sessionId} path={p} name={e.name} prefix={prefix} isLast={isLast} onOpen={onOpen} />
) : (
<div
key={e.name}
className="tree-row file"
style={padFor(prefix)}
onDoubleClick={() => triggerDownload(api.downloadUrl(sessionId, p), e.name)}
title="Double-click to download"
>
<Rails prefix={prefix} isLast={isLast} />
<FileGlyph className="tw-ico" />
<span className="tw-name">{e.name}</span>
<span className="tw-size">{fmtSize(e.size)}</span>
</div>
);
})}
</>
);
}
// A folder row: single click toggles inline expand, double click opens it as the
// new tree root. A short timer disambiguates the two.
function FolderNode({ sessionId, path, name, prefix, isLast, onOpen }: {
sessionId: string; path: string; name: string; prefix: boolean[]; isLast: boolean; onOpen: (p: string) => void;
}) {
const [open, setOpen] = useState(false);
const timer = useRef<ReturnType<typeof setTimeout> | null>(null);
const onClick = () => {
if (timer.current) return;
timer.current = setTimeout(() => { timer.current = null; setOpen((o) => !o); }, 200);
};
const onDoubleClick = () => {
if (timer.current) { clearTimeout(timer.current); timer.current = null; }
onOpen(path);
};
return (
<>
<div className="tree-row folder" style={padFor(prefix)} onClick={onClick} onDoubleClick={onDoubleClick} title="Click to expand · double-click to open">
<Rails prefix={prefix} isLast={isLast} />
<FolderGlyph className="tw-ico" open={open} />
<span className="tw-name">{name}</span>
</div>
{open && <DirContents sessionId={sessionId} path={path} prefix={[...prefix, !isLast]} onOpen={onOpen} />}
</>
);
}
export default function FilesPane({
session, focused, zoom = 100, dragId, onDragActive, onFocus, onClose,
}: {
session: Session;
focused?: boolean;
zoom?: number;
dragId?: string;
onDragActive?: (dragging: boolean) => void;
onFocus?: () => void;
onClose: () => void;
}) {
const [root, setRoot] = useState('');
const [rootLabel, setRootLabel] = useState('workspace');
const [busy, setBusy] = useState(false);
const [dragOver, setDragOver] = useState(false);
const [reloadKey, setReloadKey] = useState(0);
useEffect(() => { api.listFiles(session.id, '').then((r) => setRootLabel(r.root)).catch(() => {}); }, [session.id]);
const upload = async (files: FileList | File[]) => {
setBusy(true);
for (const f of Array.from(files)) {
try { await api.uploadFile(session.id, root, f); } catch { /* skip */ }
}
setBusy(false);
setReloadKey((k) => k + 1);
};
const up = () => setRoot(root.includes('/') ? root.slice(0, root.lastIndexOf('/')) : '');
const crumbs = ['', ...root.split('/').filter(Boolean).map((_, i, arr) => arr.slice(0, i + 1).join('/'))];
return (
<div className={`slot${focused ? ' focused' : ''}`} onMouseDown={onFocus}>
{/* One compact bar: logo, navigation, upload, close — no title. */}
<div
className={`pane-head files-head${dragId ? ' draggable' : ''}`}
draggable={!!dragId}
onDragStart={dragId ? (e) => { e.dataTransfer.setData('text/plain', dragId); e.dataTransfer.effectAllowed = 'move'; onDragActive?.(true); } : undefined}
onDragEnd={dragId ? () => onDragActive?.(false) : undefined}
>
<Logo cli="files" size={16} tint="#d99a2b" />
<button className="mini-btn" title="Up" disabled={!root} onClick={up}><UpGlyph /></button>
<div className="crumbs">
{crumbs.map((c, i) => (
<span key={c || 'root'}>
{i > 0 && <span className="sep">/</span>}
<button className="crumb" onClick={() => setRoot(c)}>{i === 0 ? rootLabel : c.split('/').pop()}</button>
</span>
))}
</div>
<span className="spacer" />
<label className="mini-btn upload-btn" title="Upload files">
<UploadGlyph /> Upload
<input type="file" multiple hidden onChange={(e) => { if (e.target.files) upload(e.target.files); e.target.value = ''; }} />
</label>
<button className="mini-btn ph-close" title="Close" onClick={(e) => { e.stopPropagation(); onClose(); }}><CloseGlyph /></button>
</div>
<div
className={`files-body tree${dragOver ? ' drag' : ''}`}
style={{ fontSize: `${(13 * zoom) / 100}px` }}
onDragOver={(e) => { e.preventDefault(); setDragOver(true); }}
onDragLeave={() => setDragOver(false)}
onDrop={(e) => { e.preventDefault(); setDragOver(false); if (e.dataTransfer.files.length) upload(e.dataTransfer.files); }}
>
<DirContents key={`${root}:${reloadKey}`} sessionId={session.id} path={root} prefix={[]} onOpen={setRoot} />
{busy && <div className="tree-msg">Uploading…</div>}
</div>
<div className="files-hint">Click a folder to expand · double-click to open it · double-click a file to download</div>
</div>
);
}
|