Files
notesnook/apps/mobile/app/screens/home/index.tsx

95 lines
3.2 KiB
TypeScript
Raw Normal View History

/*
This file is part of the Notesnook project (https://notesnook.com/)
2023-01-16 13:44:52 +05:00
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/>.
*/
2022-08-30 16:13:11 +05:00
2022-08-29 16:19:17 +05:00
import React from "react";
import { FloatingButton } from "../../components/container/floating-button";
import DelayLayout from "../../components/delay-layout";
2023-11-22 11:16:15 +05:00
import { Header } from "../../components/header";
import List from "../../components/list";
2023-12-16 14:58:32 +05:00
import SelectionHeader from "../../components/selection-header";
2022-08-29 16:19:17 +05:00
import { useNavigationFocus } from "../../hooks/use-navigation-focus";
import Navigation, { NavigationProps } from "../../services/navigation";
import SettingsService from "../../services/settings";
2023-11-22 11:16:15 +05:00
import useNavigationStore from "../../stores/use-navigation-store";
2023-12-16 14:58:32 +05:00
import { useNotes } from "../../stores/use-notes-store";
import { openEditor } from "../notes/common";
2024-01-24 18:58:14 +05:00
import LinkNote from "../../components/sheets/link-note";
2022-04-24 05:59:14 +05:00
export const Home = ({ navigation, route }: NavigationProps<"Notes">) => {
2023-12-16 14:58:32 +05:00
const [notes, loading] = useNotes();
2022-04-24 05:59:14 +05:00
const isFocused = useNavigationFocus(navigation, {
onFocus: (prev) => {
Navigation.routeNeedsUpdate(
route.name,
Navigation.routeUpdateFunctions[route.name]
);
2023-11-22 11:16:15 +05:00
useNavigationStore.getState().setFocusedRouteId(route.name);
2022-04-24 05:59:14 +05:00
return !prev?.current;
},
onBlur: () => false,
delay: SettingsService.get().homepage === route.name ? 1 : -1
});
2023-11-16 08:54:37 +05:00
2022-04-24 05:59:14 +05:00
return (
2023-11-22 11:16:15 +05:00
<>
2023-11-24 15:11:38 +05:00
<SelectionHeader id={route.name} items={notes} type="note" />
2023-11-22 11:16:15 +05:00
<Header
renderedInRoute={route.name}
title={route.name}
canGoBack={false}
hasSearch={true}
onSearch={() => {
Navigation.push("Search", {
placeholder: `Type a keyword to search in ${route.name?.toLowerCase()}`,
type: "note",
title: route.name,
route: route.name
});
2022-04-24 05:59:14 +05:00
}}
2023-11-22 11:16:15 +05:00
id={route.name}
onPressDefaultRightButton={openEditor}
2022-04-24 05:59:14 +05:00
/>
2023-12-16 11:30:41 +05:00
<DelayLayout wait={loading}>
2023-11-22 11:16:15 +05:00
<List
data={notes}
dataType="note"
renderedInRoute={route.name}
loading={loading || !isFocused}
headerTitle={route.name}
placeholder={{
title: route.name?.toLowerCase(),
paragraph: `You have not added any ${route.name.toLowerCase()} yet.`,
button: "Add your first note",
action: openEditor,
loading: "Loading your notes"
}}
/>
2024-01-24 18:58:14 +05:00
<FloatingButton
title="Create a new note"
onPress={() => {
LinkNote.present();
}}
/>
2023-11-22 11:16:15 +05:00
</DelayLayout>
</>
2022-04-24 05:59:14 +05:00
);
};
export default Home;