Skip to content

Commit 5a1edb7

Browse files
committed
folder structure
1 parent 2432f2c commit 5a1edb7

File tree

15 files changed

+69
-50
lines changed

15 files changed

+69
-50
lines changed

.vscode/settings.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,8 @@
2828
"*.{css,sass,scss}.d.ts": true
2929
},
3030
"editor.formatOnSave": true,
31-
"editor.defaultFormatter": "esbenp.prettier-vscode"
31+
"editor.defaultFormatter": "esbenp.prettier-vscode",
32+
"[typescript]": {
33+
"editor.defaultFormatter": "esbenp.prettier-vscode"
34+
}
3235
}

src/renderer/App.tsx

+2-36
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,12 @@
1-
import { Container } from '@chakra-ui/react';
2-
import { useState } from 'react';
3-
41
import { MemoryRouter as Router, Routes, Route } from 'react-router-dom';
52
import './App.css';
6-
import List from './components/List';
7-
import Searchbar from './components/Searchbar';
8-
import SearchEngineModal from './components/Settings/SearchEngineModal';
9-
import { SearchContextProvider } from './context/SearchContext';
10-
import { TabContextProvider } from './context/TabContext';
11-
import ShortcutKeys from './hooks/shortcut/ShortcutKeys';
12-
import useHotkeys from './hooks/shortcut/useHotkeys';
13-
14-
const Hello = () => {
15-
//Shorcut: Window Move
16-
useHotkeys(`${ShortcutKeys.CTRL}+${ShortcutKeys.LeftArrow}`, () => {
17-
window.electron.ipcRenderer.sendMessage('window-move', 'topLeft');
18-
});
19-
20-
useHotkeys(`${ShortcutKeys.CTRL}+${ShortcutKeys.RightArrow}`, () => {
21-
window.electron.ipcRenderer.sendMessage('window-move', 'topRight');
22-
});
23-
24-
return (
25-
<div id="container">
26-
<SearchContextProvider>
27-
<Container centerContent paddingTop="10px">
28-
<TabContextProvider>
29-
<Searchbar />
30-
<List />
31-
<SearchEngineModal />
32-
</TabContextProvider>
33-
</Container>
34-
</SearchContextProvider>
35-
</div>
36-
);
37-
};
3+
import { BrowserPage } from './views/Browser';
384

395
export default function App() {
406
return (
417
<Router>
428
<Routes>
43-
<Route path="/" element={<Hello />} />
9+
<Route path="/" element={<BrowserPage />} />
4410
</Routes>
4511
</Router>
4612
);

src/renderer/components/BrowserCollapse.tsx src/renderer/components/BrowserCollapse/BrowserCollapse.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ import { FindInPageContext } from 'renderer/context/FindInPageContext';
1414
import { TabContext } from 'renderer/context/TabContext';
1515
import ShortcutKeys from 'renderer/hooks/shortcut/ShortcutKeys';
1616
import useHotkeys from 'renderer/hooks/shortcut/useHotkeys';
17-
import { SearchContext } from '../context/SearchContext';
18-
import FindInPage from './FindInPage/FindInPage';
19-
import Webview from './Webview';
17+
import { SearchContext } from '../../context/SearchContext';
18+
import FindInPage from '../FindInPage/FindInPage';
19+
import Webview from '../Webview/Webview';
2020

2121
type BrowserCollapseTypes = {
2222
name: string;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import BrowserCollapse from "./BrowserCollapse";
2+
export {BrowserCollapse};

src/renderer/components/FindInPage/FindInPage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import { AiOutlineClose, AiOutlineLeft, AiOutlineRight } from 'react-icons/ai';
2525
import { FindInPageContext } from 'renderer/context/FindInPageContext';
2626
import { TabContext } from 'renderer/context/TabContext';
2727
import useWebviewReady from 'renderer/hooks/webview/useWebviewReady';
28-
import { WebViewOverride } from '../BrowserCollapse';
28+
import { WebViewOverride } from '../BrowserCollapse/BrowserCollapse';
2929

3030
type FindInPageProps = {
3131
children: ReactNode;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import FindInPage from './FindInPage';
2+
export { FindInPage };

src/renderer/components/Searchbar.tsx src/renderer/components/Searchbar/Searchbar.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import { useCallback, useContext, useEffect, useState } from 'react';
1111
import { FcGoogle } from 'react-icons/fc';
1212
import { SiDuckduckgo } from 'react-icons/si';
1313
import { FaYandexInternational } from 'react-icons/fa';
14-
import '../App.css';
15-
import { SearchContext } from '../context/SearchContext';
16-
import { TabContext } from '../context/TabContext';
14+
import '../../App.css';
15+
import { SearchContext } from '../../context/SearchContext';
16+
import { TabContext } from '../../context/TabContext';
1717

1818
const Searchbar = () => {
1919
const { onChange, search, searchEngine } = useContext(SearchContext);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import Searchbar from './Searchbar';
2+
export { Searchbar };
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import SearchEngineModal from './SearchEngineModal';
2+
export { SearchEngineModal };

src/renderer/components/List.tsx src/renderer/components/TabList/TabList.tsx

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ import { useContext } from 'react';
33
import { FindInPageProvider } from 'renderer/context/FindInPageContext';
44
import ShortcutKeys from 'renderer/hooks/shortcut/ShortcutKeys';
55
import useHotkeys from 'renderer/hooks/shortcut/useHotkeys';
6-
import { SearchContext } from '../context/SearchContext';
7-
import { TabContext } from '../context/TabContext';
8-
import BrowserCollapse from './BrowserCollapse';
9-
import FindInPage from './FindInPage/FindInPage';
6+
import { SearchContext } from '../../context/SearchContext';
7+
import { TabContext } from '../../context/TabContext';
8+
import BrowserCollapse from '../BrowserCollapse/BrowserCollapse';
9+
import FindInPage from '../FindInPage/FindInPage';
1010

11-
const List = () => {
11+
const TabList = () => {
1212
const { tabs, setTabs } = useContext(SearchContext);
1313

1414
const { currentTabIndex, setTabIndex } = useContext(TabContext);
@@ -66,4 +66,4 @@ const List = () => {
6666
);
6767
};
6868

69-
export default List;
69+
export default TabList;
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import TabList from './TabList';
2+
export { TabList };
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import Webview from './Webview';
2+
export { Webview };
+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
import { Container } from '@chakra-ui/react';
2+
import '../../App.css';
3+
import List from '../../components/TabList/TabList';
4+
import Searchbar from '../../components/Searchbar/Searchbar';
5+
import SearchEngineModal from '../../components/Settings/SearchEngineModal';
6+
import { SearchContextProvider } from '../../context/SearchContext';
7+
import { TabContextProvider } from '../../context/TabContext';
8+
import ShortcutKeys from '../../hooks/shortcut/ShortcutKeys';
9+
import useHotkeys from '../../hooks/shortcut/useHotkeys';
10+
11+
const BrowserPage = () => {
12+
//Shorcut: Window Move
13+
useHotkeys(`${ShortcutKeys.CTRL}+${ShortcutKeys.LeftArrow}`, () => {
14+
window.electron.ipcRenderer.sendMessage('window-move', 'topLeft');
15+
});
16+
17+
useHotkeys(`${ShortcutKeys.CTRL}+${ShortcutKeys.RightArrow}`, () => {
18+
window.electron.ipcRenderer.sendMessage('window-move', 'topRight');
19+
});
20+
21+
return (
22+
<div id="container">
23+
<SearchContextProvider>
24+
<Container centerContent paddingTop="10px">
25+
<TabContextProvider>
26+
<Searchbar />
27+
<List />
28+
<SearchEngineModal />
29+
</TabContextProvider>
30+
</Container>
31+
</SearchContextProvider>
32+
</div>
33+
);
34+
};
35+
36+
export default BrowserPage;

src/renderer/views/Browser/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import BrowserPage from "./BrowserPage";
2+
export {BrowserPage};

0 commit comments

Comments
 (0)