mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-16 19:57:52 +01:00
- Added a new widget on android that allows you to put a note on your home screen. - Added a new widget on android that allows you to see upcoming reminders on home screen - Fixed new note widget freezing
199 lines
5.8 KiB
TypeScript
199 lines
5.8 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 } from "react";
|
|
import { View } from "react-native";
|
|
import { eSendEvent, eSubscribeEvent } from "../../../services/event-manager";
|
|
import { SIZE } from "../../../utils/size";
|
|
import { Dialog } from "../../dialog";
|
|
import BaseDialog from "../../dialog/base-dialog";
|
|
import DialogContainer from "../../dialog/dialog-container";
|
|
import { Button } from "../../ui/button";
|
|
import { ProgressBarComponent } from "../../ui/svg/lazy";
|
|
import Heading from "../../ui/typography/heading";
|
|
import Paragraph from "../../ui/typography/paragraph";
|
|
|
|
export type ProgressOptions = {
|
|
progress?: string;
|
|
cancelCallback?: () => void;
|
|
title?: string;
|
|
paragraph?: string;
|
|
fillBackground?: boolean;
|
|
canHideProgress?: boolean;
|
|
};
|
|
|
|
export const PROGRESS_EVENTS = {
|
|
start: "startProgress",
|
|
end: "endProgress",
|
|
update: "updateProgress"
|
|
};
|
|
|
|
export default function Progress() {
|
|
const { colors } = useThemeColors();
|
|
const [progress, setProgress] = React.useState<string | undefined>();
|
|
const [visible, setVisible] = React.useState(false);
|
|
const cancelCallback = React.useRef<() => void>();
|
|
const [data, setData] = React.useState<{
|
|
title?: string;
|
|
paragraph?: string;
|
|
fillBackground?: boolean;
|
|
canHideProgress?: boolean;
|
|
}>();
|
|
|
|
useEffect(() => {
|
|
const events = [
|
|
eSubscribeEvent(PROGRESS_EVENTS.start, (options: ProgressOptions) => {
|
|
setProgress(options.progress);
|
|
cancelCallback.current = options.cancelCallback;
|
|
|
|
setData({
|
|
title: options.title,
|
|
paragraph: options.paragraph,
|
|
fillBackground: options.fillBackground,
|
|
canHideProgress: options.canHideProgress
|
|
});
|
|
setVisible(true);
|
|
}),
|
|
eSubscribeEvent(PROGRESS_EVENTS.end, () => {
|
|
setProgress(undefined);
|
|
setVisible(false);
|
|
setData(undefined);
|
|
cancelCallback.current?.();
|
|
cancelCallback.current = undefined;
|
|
}),
|
|
eSubscribeEvent(PROGRESS_EVENTS.update, (options: ProgressOptions) => {
|
|
setProgress(options.progress);
|
|
if (options.cancelCallback) {
|
|
cancelCallback.current = options.cancelCallback;
|
|
}
|
|
|
|
const data: ProgressOptions = {};
|
|
if (options.title) data.title = options.title;
|
|
if (options.paragraph) data.paragraph = options.paragraph;
|
|
if (options.fillBackground)
|
|
data.fillBackground = options.fillBackground;
|
|
|
|
setData((current) => {
|
|
return {
|
|
...current,
|
|
...data
|
|
};
|
|
});
|
|
})
|
|
];
|
|
return () => {
|
|
events.forEach((event) => event?.unsubscribe());
|
|
cancelCallback.current = undefined;
|
|
};
|
|
}, []);
|
|
|
|
return !visible ? null : (
|
|
<BaseDialog
|
|
background={data?.fillBackground ? colors.primary.background : undefined}
|
|
visible
|
|
>
|
|
<DialogContainer
|
|
style={{
|
|
paddingHorizontal: 12,
|
|
paddingBottom: 10
|
|
}}
|
|
noBorder={data?.fillBackground ? true : false}
|
|
>
|
|
<Dialog context="local" />
|
|
<View
|
|
style={{
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
paddingHorizontal: 12,
|
|
gap: 10,
|
|
paddingBottom: 20
|
|
}}
|
|
>
|
|
<Heading
|
|
style={{
|
|
textAlign: "center"
|
|
}}
|
|
color={colors.primary.paragraph}
|
|
size={SIZE.lg}
|
|
>
|
|
{data?.title}
|
|
</Heading>
|
|
<Paragraph
|
|
style={{
|
|
textAlign: "center"
|
|
}}
|
|
color={colors.secondary.paragraph}
|
|
>
|
|
{progress ? progress : data?.paragraph}
|
|
</Paragraph>
|
|
|
|
<View
|
|
style={{
|
|
flexDirection: "row",
|
|
width: 100,
|
|
paddingVertical: 12
|
|
}}
|
|
>
|
|
<ProgressBarComponent
|
|
height={5}
|
|
width={100}
|
|
animated={true}
|
|
useNativeDriver
|
|
indeterminate
|
|
indeterminateAnimationDuration={2000}
|
|
unfilledColor={colors.secondary.background}
|
|
color={colors.primary.accent}
|
|
borderWidth={0}
|
|
/>
|
|
</View>
|
|
|
|
{!data?.canHideProgress ? null : (
|
|
<Button
|
|
title={cancelCallback.current ? "Cancel" : "Hide"}
|
|
type="secondaryAccented"
|
|
onPress={() => {
|
|
if (cancelCallback.current) {
|
|
cancelCallback.current?.();
|
|
}
|
|
setVisible(false);
|
|
setProgress(undefined);
|
|
setData(undefined);
|
|
}}
|
|
width="100%"
|
|
/>
|
|
)}
|
|
</View>
|
|
</DialogContainer>
|
|
</BaseDialog>
|
|
);
|
|
}
|
|
|
|
export function startProgress(options: ProgressOptions) {
|
|
eSendEvent(PROGRESS_EVENTS.start, options);
|
|
}
|
|
|
|
export function endProgress() {
|
|
eSendEvent(PROGRESS_EVENTS.end);
|
|
}
|
|
|
|
export function updateProgress(options: ProgressOptions) {
|
|
eSendEvent(PROGRESS_EVENTS.update, options);
|
|
}
|