Files
notesnook/apps/mobile/app/components/note-history/index.js
2022-08-31 07:26:27 +05:00

160 lines
4.7 KiB
JavaScript

/*
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/>.
*/
import React, { useCallback, useEffect, useState } from "react";
import { Text, View } from "react-native";
import { FlatList } from "react-native-gesture-handler";
import Icon from "react-native-vector-icons/MaterialCommunityIcons";
import { db } from "../../common/database";
import { presentSheet } from "../../services/event-manager";
import { useThemeStore } from "../../stores/use-theme-store";
import { openLinkInBrowser } from "../../utils/functions";
import { SIZE } from "../../utils/size";
import { timeConverter, timeSince } from "../../utils/time";
import DialogHeader from "../dialog/dialog-header";
import SheetProvider from "../sheet-provider";
import { PressableButton } from "../ui/pressable";
import Seperator from "../ui/seperator";
import Paragraph from "../ui/typography/paragraph";
import NotePreview from "./preview";
export default function NoteHistory({ note, fwdRef }) {
const [history, setHistory] = useState([]);
const [_loading, setLoading] = useState(true);
const colors = useThemeStore((state) => state.colors);
useEffect(() => {
(async () => {
setHistory([...(await db.noteHistory.get(note.id))]);
setLoading(false);
})();
}, [note.id]);
const preview = useCallback(async (item) => {
let content = await db.noteHistory.content(item.id);
presentSheet({
component: (
<NotePreview
session={{
...item,
session: getDate(item.dateCreated, item.dateModified)
}}
content={content}
/>
),
context: "note_history"
});
}, []);
const getDate = (start, end) => {
let _start = timeConverter(start);
let _end = timeConverter(end + 60000);
if (_start === _end) return _start;
let final = _end.lastIndexOf(",");
let part = _end.slice(0, final + 1);
if (_start.includes(part)) {
return _start + " —" + _end.replace(part, "");
}
return _start + " — " + _end;
};
const renderItem = useCallback(
({ item }) => (
<PressableButton
type="grayBg"
onPress={() => preview(item)}
customStyle={{
justifyContent: "space-between",
alignItems: "center",
paddingHorizontal: 12,
height: 45,
marginBottom: 10,
flexDirection: "row"
}}
>
<Paragraph>{getDate(item.dateCreated, item.dateModified)}</Paragraph>
<Paragraph color={colors.icon} size={SIZE.xs}>
{timeSince(item.dateModified)}
</Paragraph>
</PressableButton>
),
[colors.icon, preview]
);
return (
<View>
<SheetProvider context="note_history" />
<DialogHeader
title="Note history"
paragraph="Revert back to an older version of this note"
padding={12}
/>
<Seperator />
<FlatList
onMomentumScrollEnd={() => {
fwdRef?.current?.handleChildScrollEnd();
}}
style={{
paddingHorizontal: 12
}}
keyExtractor={(item) => item.id}
data={history}
ListEmptyComponent={
<View
style={{
width: "100%",
justifyContent: "center",
alignItems: "center",
height: 200
}}
>
<Icon name="history" size={60} color={colors.icon} />
<Paragraph color={colors.icon}>
No note history found on this device.
</Paragraph>
</View>
}
renderItem={renderItem}
/>
<Paragraph
size={SIZE.xs}
color={colors.icon}
style={{
alignSelf: "center"
}}
>
Note version history is local only.{" "}
<Text
onPress={() => {
openLinkInBrowser(
"https://docs.notesnook.com/versionhistory",
colors
);
}}
style={{ color: colors.accent, textDecorationLine: "underline" }}
>
Learn how this works.
</Text>
</Paragraph>
</View>
);
}