Merge pull request #510 from vivganes/patch-502

add ability to paste image from clipboard
This commit is contained in:
Kieran 2023-04-13 18:02:15 +01:00 committed by GitHub
commit c3c1e02ad8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
18 changed files with 58 additions and 18 deletions

View File

@ -27,6 +27,8 @@ import type { RootState } from "State/Store";
import { LNURL } from "LNURL";
import messages from "./messages";
import { ClipboardEventHandler, useState } from "react";
import Spinner from "Icons/Spinner";
interface NotePreviewProps {
note: TaggedRawEvent;
@ -58,6 +60,7 @@ export function NoteCreator() {
const zapForward = useSelector((s: RootState) => s.noteCreator.zapForward);
const sensitive = useSelector((s: RootState) => s.noteCreator.sensitive);
const pollOptions = useSelector((s: RootState) => s.noteCreator.pollOptions);
const [uploadInProgress, setUploadInProgress] = useState(false);
const dispatch = useDispatch();
async function sendNote() {
@ -99,6 +102,19 @@ export function NoteCreator() {
async function attachFile() {
try {
const file = await openFile();
if (file) {
uploadFile(file);
}
} catch (error: unknown) {
if (error instanceof Error) {
dispatch(setError(error?.message));
}
}
}
async function uploadFile(file: File | Blob) {
setUploadInProgress(true);
try {
if (file) {
const rx = await uploader.upload(file, file.name);
if (rx.url) {
@ -111,6 +127,8 @@ export function NoteCreator() {
if (error instanceof Error) {
dispatch(setError(error?.message));
}
} finally {
setUploadInProgress(false);
}
}
@ -205,6 +223,25 @@ export function NoteCreator() {
}
}
const handlePaste: ClipboardEventHandler<HTMLDivElement> = evt => {
if (evt.clipboardData) {
const clipboardItems = evt.clipboardData.items;
const items: DataTransferItem[] = Array.from(clipboardItems).filter(function (item: DataTransferItem) {
// Filter the image items only
return /^image\//.test(item.type);
});
if (items.length === 0) {
return;
}
const item = items[0];
const blob = item.getAsFile();
if (blob) {
uploadFile(blob);
}
}
};
return (
<>
{show && (
@ -212,7 +249,9 @@ export function NoteCreator() {
{replyTo && <NotePreview note={replyTo} />}
{preview && getPreviewNote()}
{!preview && (
<div className={`flex note-creator${replyTo ? " note-reply" : ""}${pollOptions ? " poll" : ""}`}>
<div
onPaste={handlePaste}
className={`flex note-creator${replyTo ? " note-reply" : ""}${pollOptions ? " poll" : ""}`}>
<div className="flex f-col f-grow">
<Textarea
autoFocus
@ -242,6 +281,7 @@ export function NoteCreator() {
</div>
)}
<div className="note-creator-actions">
{uploadInProgress && <Spinner />}
<button className="secondary" type="button" onClick={() => dispatch(setShowAdvanced(!showAdvanced))}>
<FormattedMessage defaultMessage="Advanced" />
</button>

View File

@ -338,4 +338,4 @@
"zjJZBd": "انت جاهز!",
"zonsdq": "فشل تحميل خدمة LNURL",
"zvCDao": "تظهر تلقائيا أحدث الملاحظات"
}
}

View File

@ -338,4 +338,4 @@
"zjJZBd": "You're ready!",
"zonsdq": "Failed to load LNURL service",
"zvCDao": "Automatically show latest notes"
}
}

View File

@ -338,4 +338,4 @@
"zjJZBd": "Sie sind bereit!",
"zonsdq": "Fehler beim Laden des LNURL-Dienstes",
"zvCDao": "Neueste Beiträge automatisch anzeigen"
}
}

View File

@ -343,4 +343,4 @@
"zjJZBd": "You're ready!",
"zonsdq": "Failed to load LNURL service",
"zvCDao": "Automatically show latest notes"
}
}

View File

@ -338,4 +338,4 @@
"zjJZBd": "Estás listo!",
"zonsdq": "Error al contactar con el servicio LNURL",
"zvCDao": "Mostrar notas nuevas automáticamente"
}
}

View File

@ -338,4 +338,4 @@
"zjJZBd": "Tu es prêt!",
"zonsdq": "Échec du chargement du service LNURL",
"zvCDao": "Afficher automatiquement les dernières notes"
}
}

View File

@ -338,4 +338,4 @@
"zjJZBd": "Spremni ste!",
"zonsdq": "Neuspješno učitavanje LNURL usluge",
"zvCDao": "Automatski prikaži najnovije bilješke"
}
}

View File

@ -338,4 +338,4 @@
"zjJZBd": "Készen vagy!",
"zonsdq": "Az LNURL szolgáltatás betöltése nem sikerült",
"zvCDao": "Automatikusan a legfrissebb bejegyzéseket mutassa"
}
}

View File

@ -338,4 +338,4 @@
"zjJZBd": "Anda siap!",
"zonsdq": "Gagal memuat layanan LNURL",
"zvCDao": "Tampilkan catatan terbaru secara otomatis"
}
}

View File

@ -338,4 +338,4 @@
"zjJZBd": "Sei pronto!",
"zonsdq": "Caricamento del servizio LNURL fallito",
"zvCDao": "Visualizza automaticamente le ultime note"
}
}

View File

@ -338,4 +338,4 @@
"zjJZBd": "準備完了!",
"zonsdq": "LNURLサービスの読み込みに失敗しました",
"zvCDao": "最新の記事を自動で表示する"
}
}

View File

@ -338,4 +338,4 @@
"zjJZBd": "You're ready!",
"zonsdq": "Failed to load LNURL service",
"zvCDao": "Automatically show latest notes"
}
}

View File

@ -338,4 +338,4 @@
"zjJZBd": "You're ready!",
"zonsdq": "Failed to load LNURL service",
"zvCDao": "Automatically show latest notes"
}
}

View File

@ -338,4 +338,4 @@
"zjJZBd": "Готово!",
"zonsdq": "Не удалось загрузить службу LNURL",
"zvCDao": "Автоматически показывать новые заметки"
}
}

View File

@ -338,4 +338,4 @@
"zjJZBd": "Du är redo!",
"zonsdq": "Det gick inte att ladda LNURL-tjänsten",
"zvCDao": "Visa automatiskt de senaste anteckningarna"
}
}

View File

@ -338,4 +338,4 @@
"zjJZBd": "你已准备就绪!",
"zonsdq": "加载 LNURL 服务失败",
"zvCDao": "自动显示最新便条"
}
}

View File

@ -338,4 +338,4 @@
"zjJZBd": "你已經準備就緒!",
"zonsdq": "加載 LNURL 服務失敗",
"zvCDao": "自動顯示最新便條"
}
}