Skip to content

Commit 38a9287

Browse files
committed
feat: remove supabase & cloud related actions
1 parent 99f4ad3 commit 38a9287

File tree

31 files changed

+52
-1343
lines changed

31 files changed

+52
-1343
lines changed

.env

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
11
NEXT_PUBLIC_GA_MEASUREMENT_ID=G-JKZEHMJBMH
2-
NEXT_PUBLIC_SUPABASE_URL=https://bxkgqurwqjmvrqekcbws.supabase.co
3-
NEXT_PUBLIC_SUPABASE_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImJ4a2dxdXJ3cWptdnJxZWtjYndzIiwicm9sZSI6ImFub24iLCJpYXQiOjE2OTA2NDU0MjUsImV4cCI6MjAwNjIyMTQyNX0.3nZ0yhuFjnI3yHbAL8S9UtK-Ny-6F5AylNHgo1tymTU

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Read our [Code of Conduct](./CODE_OF_CONDUCT.md) to keep our community approacha
77
In this guide you will get an overview of the contribution workflow from opening an issue, creating a PR, reviewing, and merging the PR.
88

99
## Getting Started
10-
JSON Crack is built with React, Reaflow for visualization, Mantine UI for components, Zustand for state management, and Supabase for backend integration. If you are not familiar with these technologies, we recommend you to read their documentation to get started. You can find the links to the respective documentations below:
10+
JSON Crack is built with React, Reaflow for visualization, Mantine UI for components, Zustand for state management. If you are not familiar with these technologies, we recommend you to read their documentation to get started. You can find the links to the respective documentations below:
1111

1212
* [React](https://reactjs.org/docs/getting-started.html)
1313
* [Reaflow](https://github.com/reaviz/reaflow)

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ JSON Crack is a free, open-source data visualization app capable of visualizing
5959

6060
- [Next.js](https://nextjs.org/?ref=jsoncrack.com)
6161
- [React.js](https://reactjs.org/?ref=jsoncrack.com)
62-
- [Supabase](https://supabase.com/?ref=jsoncrack.com)
6362
- [Reaflow](https://reaflow.dev/?ref=jsoncrack.com)
6463
- [Monaco Editor](https://github.com/suren-atoyan/monaco-react)
6564

default.conf

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,4 @@ server {
1414
location /docs {
1515
try_files $uri /docs.html;
1616
}
17-
18-
location /forgot-password {
19-
try_files $uri /forgot-password.html;
20-
}
21-
22-
location /sign-in {
23-
try_files $uri /sign-in.html;
24-
}
2517
}

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
},
99
"homepage": "https://jsoncrack.com",
1010
"bugs": {
11-
"url": "https://github.com/AykutSarac/jsoncrack.com/issues"
12-
},
11+
"url": "https://github.com/AykutSarac/jsoncrack.com/issues"
12+
},
1313
"scripts": {
1414
"dev": "next dev",
1515
"build": "next build",
@@ -25,7 +25,6 @@
2525
"@mantine/hooks": "^7.11.2",
2626
"@monaco-editor/react": "^4.6.0",
2727
"@sentry/nextjs": "^7.118.0",
28-
"@supabase/supabase-js": "^2.44.4",
2928
"@tanstack/react-query": "^4.36.1",
3029
"allotment": "^1.20.2",
3130
"axios": "^1.7.2",

pnpm-lock.yaml

Lines changed: 0 additions & 93 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/robots.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ User-agent: *
22
Allow: /
33

44
User-agent: *
5-
Disallow: /forgot-password
65
Disallow: /widget
76

87
Sitemap: https://jsoncrack.com/sitemap.txt

public/sitemap.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
https://jsoncrack.com
2-
https://jsoncrack.com/sign-in
3-
https://jsoncrack.com/sign-up
42
https://jsoncrack.com/editor
53
https://jsoncrack.com/docs
64
https://jsoncrack.com/widget

src/containers/Editor/components/BottomBar.tsx

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,12 @@ import {
99
VscError,
1010
VscFeedback,
1111
VscRunAll,
12-
VscSourceControl,
1312
VscSync,
1413
VscSyncIgnored,
1514
} from "react-icons/vsc";
1615
import useGraph from "src/containers/Editor/components/views/GraphView/stores/useGraph";
1716
import useConfig from "src/store/useConfig";
1817
import useFile from "src/store/useFile";
19-
import useModal from "src/store/useModal";
2018

2119
const StyledBottomBar = styled.div`
2220
position: relative;
@@ -88,12 +86,9 @@ export const BottomBar = () => {
8886
const error = useFile(state => state.error);
8987
const setContents = useFile(state => state.setContents);
9088
const nodeCount = useGraph(state => state.nodes.length);
91-
const fileName = useFile(state => state.fileData?.name);
9289
const toggleFullscreen = useGraph(state => state.toggleFullscreen);
9390
const fullscreen = useGraph(state => state.fullscreen);
9491

95-
const setVisible = useModal(state => state.setVisible);
96-
9792
const toggleEditor = () => {
9893
toggleFullscreen(!fullscreen);
9994
gaEvent("toggle_fullscreen");
@@ -109,12 +104,6 @@ export const BottomBar = () => {
109104
<StyledBottomBarItem onClick={toggleEditor}>
110105
<BiSolidDockLeft />
111106
</StyledBottomBarItem>
112-
{fileName && (
113-
<StyledBottomBarItem onClick={() => setVisible("cloud")(true)}>
114-
<VscSourceControl />
115-
{fileName}
116-
</StyledBottomBarItem>
117-
)}
118107
<StyledBottomBarItem>
119108
{error ? (
120109
<Popover width="auto" shadow="md" position="top" withArrow>

src/containers/Modals/AccountModal/index.tsx

Lines changed: 0 additions & 68 deletions
This file was deleted.

0 commit comments

Comments
 (0)