Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stored Project ID in Global Store #23

Merged
merged 1 commit into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 11 additions & 9 deletions src/DataTable/TemplateTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,9 @@ export default function TemplateTable({ data }) {
<thead>
{table.getHeaderGroups().map((headerGroup) => (
<tr key={headerGroup.id}>
{headerGroup.headers.map((header) => (
{headerGroup.headers.map((header, idx) => (
<th
key={header.id}
key={idx}
className="thSorted"
onClick={header.column.getToggleSortingHandler()}
>
Expand All @@ -122,10 +122,10 @@ export default function TemplateTable({ data }) {
</thead>
{/* {console.log(table.getRowModel().rows[0]?.original?.uuid)} */}
{table.getRowModel().rows?.length ? (
table.getRowModel().rows.map((row) => (
table.getRowModel().rows.map((row, i) => (
<tbody>
<tr
key={RowsIcon.id}
key={i}
data-state={row.getIsSelected() && "selected"}
onClick={() => {
setRowSelection(row.id);
Expand All @@ -134,8 +134,8 @@ export default function TemplateTable({ data }) {
row.id == rowSelection ? "selected" : "nonSelected"
}
>
{row.getVisibleCells().map((cell) => (
<td key={cell.id}>
{row.getVisibleCells().map((cell, y) => (
<td key={y}>
{flexRender(
cell.column.columnDef.cell,
cell.getContext()
Expand All @@ -146,9 +146,11 @@ export default function TemplateTable({ data }) {
</tbody>
))
) : (
<p style={{ paddingLeft: "12px", color: "rgb(137 137 137)" }}>
Sorry, no search result
</p>
<tbody>
<tr style={{ paddingLeft: "12px", color: "rgb(137 137 137)" }}>
<td>Sorry, no search result</td>
</tr>
</tbody>
)}
</table>
</div>
Expand Down
1 change: 0 additions & 1 deletion src/DialogComp/CreateNewDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ const CreateNewDialog = () => {
const storageItemKey = "my-survey";

var survey_data = new Model(json).data;
console.log("Create: UUID", UUID);

return (
<Dialog.Root>
Expand Down
2 changes: 1 addition & 1 deletion src/MenuBar/LogoBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useSetUuid, useSetIsShosen } from "../store/store";
import { Link } from "react-router-dom";
import Button from "@/ui/Button";

export default function LogoBar({ startScreen, uuid }) {
export default function LogoBar({ startScreen, uuid, setProjectID }) {
const setUUID = useSetUuid();
const setIdShosen = useSetIsShosen();
const [projectName, setProjectName] = useState(() =>
Expand Down
5 changes: 2 additions & 3 deletions src/MenuBar/TopMenuBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "./Header.css";

import config from "../utils/config";

import { useIntermediateData, useUuid } from "../store/store";
import { useIntermediateData, useUuid, useProjectID } from "../store/store";

import { postRequestUUID, downloadFile } from "../lib/request";

Expand All @@ -17,11 +17,10 @@ export default function TopMenuBar() {

const uuid = useUuid();
const interData = useIntermediateData();
const projectID = useProjectID();

const apiUrl = config.apiUrl;

const projectID = localStorage.getItem("projectID");

const templateURL = `${apiUrl}/${uuid}?format=xlsx&project=${projectID}`;

const urlToCopy = import.meta.env.PROD
Expand Down
3 changes: 2 additions & 1 deletion src/StartScreenComp/StartScreenComp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import {
useSetShowStartScreen,
useSetUuid,
useUuid,
useProjectID,
} from "../store/store";

import { downloadFile } from "../lib/request";
Expand All @@ -36,12 +37,12 @@ export default function StartScreenComp({}) {
const UUID = useUuid();
const setUUID = useSetUuid();
const setStartScreen = useSetShowStartScreen();
const projectID = useProjectID();

const idShosen = useIsShosen();
const setIdShosen = useSetIsShosen();

const apiUrl = config.apiUrl;
const projectID = localStorage.getItem("projectID");

const templateURL = `${apiUrl}/${idShosen}?format=xlsx&project=${projectID}`;

Expand Down
19 changes: 16 additions & 3 deletions src/pages/HomePage.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
import React from "react";
import React, { useState } from "react";
import { useLocation } from "react-router-dom";
import StartScreenComp from "../StartScreenComp/StartScreenComp";
import TemplatePage from "./TemplatePage";
import WizardPage from "./WizardPage";

import { useSetUuid, useUuid } from "../store/store";
import { useSetUuid, useUuid, useProjectID } from "../store/store";

export default function HomePage() {
const setUUID = useSetUuid();
const UUID = useUuid();
const prID = useProjectID();

const [projectID, setProjectID] = useState(() =>
localStorage.getItem("projectID")
);

// console.log("Home", prID, localStorage.getItem("projectID"));

const location = useLocation();
const queryParams = new URLSearchParams(location.search);
Expand All @@ -20,7 +27,13 @@ export default function HomePage() {
return (
<>
{wizardParams && <WizardPage />}
{uuidParams || UUID ? <TemplatePage uuid={UUID} /> : null}
{uuidParams || UUID ? (
<TemplatePage
uuid={UUID}
setProjectID={setProjectID}
projectID={projectID}
/>
) : null}
{!uuidParams && !wizardParams && <StartScreenComp />}
</>
);
Expand Down
9 changes: 7 additions & 2 deletions src/pages/TemplatePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,20 @@ import SurveyComponent from "../SurveyComp/SurveyComp";

import "../App.css";

export default function TemplatePage({ uuid }) {
export default function TemplatePage({ uuid, setProjectID, projectID }) {
const params = useParams<{ templateId: string }>();

const [result, setResult] = useState(null);

return (
<div>
<div className="headerWrap">
<LogoBar startScreen={false} uuid={uuid} />
<LogoBar
startScreen={false}
uuid={uuid}
setProjectID={setProjectID}
projectID={projectID}
/>
<TopMenuBar />
</div>
<div className="mainWrap">
Expand Down
6 changes: 6 additions & 0 deletions src/store/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ const useStore = create((set) => ({
showStartScreen: true,
saveOnServer: false,
intermediateData: null,
project: localStorage.getItem("project"),
projectID: localStorage.getItem("projectID"),
setProjectID: (projectID) => set(() => ({ projectID: projectID })),
setUuid: (uuid) => set(() => ({ uuid: uuid })),
setIsShosen: (isShosen) => set(() => ({ isShosen: isShosen })),
setName: (name) => set(() => ({ name: name })),
Expand All @@ -22,6 +25,9 @@ const useStore = create((set) => ({
set((state) => ({ saveOnServer: !state.saveOnServer })),
}));

export const useProjectID = () => useStore((state) => state.projectID);
export const useSetProjectID = () => useStore((state) => state.setProjectID);

export const useIsShosen = () => useStore((state) => state.isShosen);
export const useSetIsShosen = () => useStore((state) => state.setIsShosen);

Expand Down
10 changes: 7 additions & 3 deletions src/ui/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,19 @@ import SearchIcon from "@/IconsComponents/SearchIcon";
import CloseIcon from "@/IconsComponents/CloseIcon";
import useSWR from "swr";
import { fetcher } from "@/lib/fetcher";
import { useSetProjectID } from "../store/store";

export default function Select({ url, setProjectName, projectName }) {
const [open, setOpen] = useState(false);
const [project, setProject] = useState(() => localStorage.getItem("project"));
const [projectID, setProjectID] = useState(() =>
localStorage.getItem("projectID")
);
// const [projectID, setProjectID] = useState(() =>
// localStorage.getItem("projectID")
// );
const [filtered, setFiltered] = useState([]);
const [search, setSearch] = useState("");

const setProjectID = useSetProjectID();

const { data, isLoading } = useSWR(url, fetcher, {
revalidateIfStale: false,
revalidateOnFocus: false,
Expand All @@ -33,6 +36,7 @@ export default function Select({ url, setProjectName, projectName }) {

const resetProject = () => {
setProjectName("");
setProjectID("");
localStorage.setItem("project", "");
localStorage.setItem("projectID", "");
localStorage.clear();
Expand Down
Loading