Files
notesnook/apps/mobile/app/components/attachments/index.js

214 lines
6.5 KiB
JavaScript
Raw Normal View History

2022-08-30 16:13:11 +05:00
/* This file is part of the Notesnook project (https://notesnook.com/)
*
* Copyright (C) 2022 Streetwriters (Private) Limited
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2022-08-29 16:19:17 +05:00
import React, { useEffect, useRef, useState } from "react";
import { View } from "react-native";
import { FlatList } from "react-native-gesture-handler";
import Icon from "react-native-vector-icons/MaterialCommunityIcons";
2022-08-29 16:19:17 +05:00
import { db } from "../../common/database";
import filesystem from "../../common/filesystem";
import {
eSubscribeEvent,
eUnSubscribeEvent
} from "../../services/event-manager";
import { useThemeStore } from "../../stores/use-theme-store";
import {
eCloseAttachmentDialog,
eOpenAttachmentsDialog
} from "../../utils/events";
import { SIZE } from "../../utils/size";
import DialogHeader from "../dialog/dialog-header";
import { Toast } from "../toast";
import Input from "../ui/input";
import Seperator from "../ui/seperator";
import SheetWrapper from "../ui/sheet";
import Paragraph from "../ui/typography/paragraph";
import { AttachmentItem } from "./attachment-item";
2021-09-29 12:56:07 +05:00
export const AttachmentDialog = () => {
const colors = useThemeStore((state) => state.colors);
2021-09-29 12:56:07 +05:00
const [visible, setVisible] = useState(false);
const [note, setNote] = useState(null);
const actionSheetRef = useRef();
2021-10-01 12:03:25 +05:00
const [attachments, setAttachments] = useState([]);
2022-03-07 15:19:07 +05:00
const attachmentSearchValue = useRef();
const searchTimer = useRef();
2022-03-09 16:35:35 +05:00
const [loading, setLoading] = useState(false);
2021-09-29 12:56:07 +05:00
useEffect(() => {
2021-10-01 12:03:25 +05:00
eSubscribeEvent(eOpenAttachmentsDialog, open);
eSubscribeEvent(eCloseAttachmentDialog, close);
2021-09-29 12:56:07 +05:00
return () => {
2021-10-01 12:03:25 +05:00
eUnSubscribeEvent(eOpenAttachmentsDialog, open);
eUnSubscribeEvent(eCloseAttachmentDialog, close);
2021-09-29 12:56:07 +05:00
};
2021-10-01 12:03:25 +05:00
}, [visible]);
2021-09-29 12:56:07 +05:00
const open = (data) => {
2022-03-07 15:19:07 +05:00
if (data?.id) {
setNote(data);
let _attachments = db.attachments.ofNote(data.id, "all");
2022-03-07 15:19:07 +05:00
setAttachments(_attachments);
} else {
setAttachments([...db.attachments.all]);
}
2021-09-29 12:56:07 +05:00
setVisible(true);
};
useEffect(() => {
if (visible) {
actionSheetRef.current?.show();
}
}, [visible]);
const close = () => {
actionSheetRef.current?.hide();
2021-10-01 12:03:25 +05:00
setVisible(false);
2021-09-29 12:56:07 +05:00
};
const onChangeText = (text) => {
2022-03-07 15:19:07 +05:00
attachmentSearchValue.current = text;
console.log(attachmentSearchValue.current?.length);
if (
!attachmentSearchValue.current ||
attachmentSearchValue.current === ""
) {
console.log("resetting all");
2022-03-07 15:19:07 +05:00
setAttachments([...db.attachments.all]);
}
console.log(attachments.length);
clearTimeout(searchTimer.current);
searchTimer.current = setTimeout(() => {
let results = db.lookup.attachments(
db.attachments.all,
attachmentSearchValue.current
);
console.log("results", results.length, attachments.length);
2022-03-07 15:19:07 +05:00
if (results.length === 0) return;
setAttachments(results);
}, 300);
};
const renderItem = ({ item }) => (
2022-03-07 15:19:07 +05:00
<AttachmentItem setAttachments={setAttachments} attachment={item} />
);
2021-10-01 12:03:25 +05:00
return !visible ? null : (
2021-12-25 11:16:33 +05:00
<SheetWrapper
2021-09-29 12:56:07 +05:00
centered={false}
fwdRef={actionSheetRef}
onClose={async () => {
setVisible(false);
2022-01-22 12:57:05 +05:00
}}
>
2022-03-07 15:19:07 +05:00
<Toast context="local" />
2021-09-29 12:56:07 +05:00
<View
style={{
width: "100%",
alignSelf: "center",
2021-10-01 12:03:25 +05:00
paddingHorizontal: 12
2022-01-22 12:57:05 +05:00
}}
>
2022-03-07 15:19:07 +05:00
<DialogHeader
title={note ? "Attachments" : "Manage attachments"}
2022-03-07 15:19:07 +05:00
paragraph="Tap on an attachment to view properties"
button={{
title: "Check all",
type: "grayAccent",
2022-03-09 16:35:35 +05:00
loading: loading,
2022-03-07 15:19:07 +05:00
onPress: async () => {
2022-03-09 16:35:35 +05:00
setLoading(true);
2022-03-07 15:19:07 +05:00
for (let attachment of attachments) {
let result = await filesystem.checkAttachment(
attachment.metadata.hash
);
2022-03-07 15:19:07 +05:00
if (result.failed) {
db.attachments.markAsFailed(
attachment.metadata.hash,
result.failed
);
} else {
db.attachments.markAsFailed(attachment.id, null);
2022-03-07 15:19:07 +05:00
}
setAttachments([...db.attachments.all]);
2022-03-07 15:19:07 +05:00
}
2022-03-09 16:35:35 +05:00
setLoading(false);
2022-03-07 15:19:07 +05:00
}
}}
/>
<Seperator />
{!note ? (
<Input
placeholder="Filter attachments by filename, type or hash"
onChangeText={onChangeText}
onSubmit={() => {
onChangeText(attachmentSearchValue.current);
}}
/>
) : null}
2021-10-01 12:03:25 +05:00
<FlatList
2021-09-29 12:56:07 +05:00
nestedScrollEnabled
overScrollMode="never"
scrollToOverflowEnabled={false}
keyboardDismissMode="none"
keyboardShouldPersistTaps="always"
onMomentumScrollEnd={() => {
actionSheetRef.current?.handleChildScrollEnd();
2021-10-01 12:03:25 +05:00
}}
ListEmptyComponent={
<View
style={{
height: 150,
justifyContent: "center",
alignItems: "center"
2022-01-22 12:57:05 +05:00
}}
>
2021-10-01 12:03:25 +05:00
<Icon name="attachment" size={60} color={colors.icon} />
<Paragraph>
{note ? "No attachments on this note" : "No attachments"}
</Paragraph>
2021-10-01 12:03:25 +05:00
</View>
}
2022-03-07 15:19:07 +05:00
ListFooterComponent={
<View
style={{
height: 350
}}
/>
}
2021-10-01 12:03:25 +05:00
data={attachments}
keyExtractor={(item) => item.id}
2022-03-07 15:19:07 +05:00
renderItem={renderItem}
2021-10-01 12:03:25 +05:00
/>
<Paragraph
color={colors.icon}
size={SIZE.xs}
style={{
textAlign: "center",
2021-10-01 12:03:25 +05:00
marginTop: 10
2022-01-22 12:57:05 +05:00
}}
>
2021-10-01 12:03:25 +05:00
<Icon name="shield-key-outline" size={SIZE.xs} color={colors.icon} />
{" "}All attachments are end-to-end encrypted.
2021-10-01 12:03:25 +05:00
</Paragraph>
2021-09-29 12:56:07 +05:00
</View>
2021-12-25 11:16:33 +05:00
</SheetWrapper>
2021-09-29 12:56:07 +05:00
);
};