mirror of
https://github.com/streetwriters/notesnook.git
synced 2026-07-12 13:31:21 +02:00
137 lines
3.9 KiB
TypeScript
137 lines
3.9 KiB
TypeScript
/*
|
|
This file is part of the Notesnook project (https://notesnook.com/)
|
|
|
|
Copyright (C) 2023 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 { useThemeColors } from "@notesnook/theme";
|
|
import React, { useEffect, useRef, useState } from "react";
|
|
import { View } from "react-native";
|
|
import { ProgressBarComponent } from "../../components/ui/svg/lazy";
|
|
import useGlobalSafeAreaInsets from "../../hooks/use-global-safe-area-insets";
|
|
import { useAttachmentStore } from "../../stores/use-attachment-store";
|
|
import { useEditorStore } from "../../stores/use-editor-store";
|
|
|
|
export const ProgressBar = () => {
|
|
const { colors } = useThemeColors();
|
|
const currentlyEditingNote = useEditorStore(
|
|
(state) => state.currentEditingNote
|
|
);
|
|
const downloading = useAttachmentStore((state) => state.downloading);
|
|
|
|
const loading = currentlyEditingNote
|
|
? downloading?.[currentlyEditingNote]
|
|
: undefined;
|
|
|
|
const attachmentProgress = useAttachmentStore((state) => state.progress);
|
|
const [progress, setProgress] = useState(0);
|
|
const [visible, setVisible] = useState(false);
|
|
const timer = useRef<NodeJS.Timeout>();
|
|
const insets = useGlobalSafeAreaInsets();
|
|
const [width, setWidth] = useState(400);
|
|
|
|
const groupProgressInfo = useRef<{
|
|
[name: string]: {
|
|
total: number;
|
|
current: number;
|
|
};
|
|
}>({});
|
|
|
|
const currentItemProgress = loading?.filename
|
|
? attachmentProgress?.[loading?.filename]
|
|
: undefined;
|
|
|
|
useEffect(() => {
|
|
if (loading) {
|
|
console.log(loading);
|
|
if (
|
|
loading.current === loading.total &&
|
|
typeof loading.success === "boolean"
|
|
) {
|
|
clear();
|
|
return;
|
|
}
|
|
setVisible(true);
|
|
if (!loading.filename) return;
|
|
|
|
if (!groupProgressInfo.current[loading.filename]) {
|
|
groupProgressInfo.current[loading.filename] = {
|
|
total: 1,
|
|
current: 0
|
|
};
|
|
}
|
|
|
|
const itemProgressCurrent = groupProgressInfo.current[loading.filename];
|
|
|
|
const itemTotalSize =
|
|
currentItemProgress?.total || itemProgressCurrent.total;
|
|
|
|
const itemCurrentProgress =
|
|
currentItemProgress?.recieved ||
|
|
currentItemProgress?.sent ||
|
|
itemProgressCurrent.current;
|
|
|
|
groupProgressInfo.current[loading.filename] = {
|
|
current: itemCurrentProgress,
|
|
total: itemTotalSize
|
|
};
|
|
|
|
const itemProgressPercent = itemCurrentProgress / itemTotalSize;
|
|
|
|
setProgress(
|
|
((loading.current || 0) + itemProgressPercent) / (loading.total || 1)
|
|
);
|
|
} else {
|
|
clear();
|
|
}
|
|
}, [currentItemProgress, loading]);
|
|
|
|
const clear = () => {
|
|
clearTimeout(timer.current);
|
|
timer.current = undefined;
|
|
timer.current = setTimeout(() => {
|
|
setProgress(1);
|
|
setTimeout(() => {
|
|
setVisible(false);
|
|
setProgress(0);
|
|
groupProgressInfo.current = {};
|
|
}, 1000);
|
|
}, 0);
|
|
};
|
|
|
|
return (
|
|
<View
|
|
style={{
|
|
justifyContent: "center",
|
|
position: "absolute",
|
|
zIndex: visible ? 1 : -1,
|
|
marginTop: insets.top + 45,
|
|
width: "100%"
|
|
}}
|
|
onLayout={(event) => setWidth(event.nativeEvent.layout.width)}
|
|
>
|
|
<ProgressBarComponent
|
|
progress={progress}
|
|
color={colors.primary.accent}
|
|
borderWidth={0}
|
|
borderRadius={0}
|
|
height={2}
|
|
width={width || 400}
|
|
/>
|
|
</View>
|
|
);
|
|
};
|