Skip to content

Commit

Permalink
fix widget height
Browse files Browse the repository at this point in the history
  • Loading branch information
AykutSarac committed Jan 24, 2023
1 parent c9dea03 commit 732208e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 9 deletions.
7 changes: 3 additions & 4 deletions src/components/Graph/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ interface GraphProps {
setSelectedNode: (node: [string, string][]) => void;
}

const StyledEditorWrapper = styled.div<{ isWidget: boolean }>`
const StyledEditorWrapper = styled.div`
position: absolute;
width: 100%;
height: ${({ isWidget }) => (isWidget ? "100vh" : "calc(100vh - 36px)")};
height: calc(100vh - 36px);
background: ${({ theme }) => theme.BACKGROUND_SECONDARY};
background-image: ${({ theme }) =>
`radial-gradient(#505050 0.5px, ${theme.BACKGROUND_SECONDARY} 0.5px)`};
Expand Down Expand Up @@ -98,15 +98,14 @@ const GraphComponent = ({ isWidget = false, openModal, setSelectedNode }: GraphP
if (input) input.blur();
}, []);


if (nodes.length > 8_000) return <ErrorView />;

if (nodes.length > 1_000 && !isWidget) {
if (!isPremium()) return <PremiumView />;
}

return (
<StyledEditorWrapper isWidget={isWidget} onContextMenu={e => e.preventDefault()}>
<StyledEditorWrapper onContextMenu={e => e.preventDefault()}>
<Loading message="Painting graph..." loading={loading} />
<TransformWrapper
maxScale={2}
Expand Down
2 changes: 1 addition & 1 deletion src/store/useGraph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Graph } from "src/components/Graph";
import { getChildrenEdges } from "src/utils/getChildrenEdges";
import { getOutgoers } from "src/utils/getOutgoers";
import { parser } from "src/utils/core/jsonParser";
import create from "zustand";
import { create } from "zustand";
import useJson from "./useJson";

const initialStates = {
Expand Down
2 changes: 1 addition & 1 deletion src/store/useJson.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { defaultJson } from "src/constants/data";
import { saveJson as saveJsonDB } from "src/services/db/json";
import useGraph from "src/store/useGraph";
import { Json } from "src/typings/altogic";
import create from "zustand";
import { create } from "zustand";

interface JsonActions {
setJson: (json: string) => void;
Expand Down
2 changes: 1 addition & 1 deletion src/store/useModal.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import create from "zustand";
import { create } from "zustand";
import useUser from "./useUser";

interface ModalActions {
Expand Down
2 changes: 1 addition & 1 deletion src/store/useStored.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import create from "zustand";
import { create } from "zustand";
import { persist } from "zustand/middleware";
import useGraph from "./useGraph";

Expand Down
2 changes: 1 addition & 1 deletion src/store/useUser.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import toast from "react-hot-toast";
import { altogic } from "src/api/altogic";
import { AltogicAuth, User } from "src/typings/altogic";
import create from "zustand";
import { create } from "zustand";
import useModal from "./useModal";

interface UserActions {
Expand Down

0 comments on commit 732208e

Please sign in to comment.