Skip to content
Open
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
24 changes: 13 additions & 11 deletions apps/i15-1/src/AppProviders.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,19 @@ export function AppProviders({ api, theme, children }: Props) {
const config = useLoadPvwsConfig();
return (
<ThemeProvider theme={theme}>
<InstrumentSessionProvider sessionsList={["cm44163-3", "cm44163-4"]}>
<ReduxProvider store={store(config)}>
<QueryClientProvider client={new QueryClient()}>
<UserAuthProvider>
<BlueapiProvider api={api}>
<ApolloProvider client={client}>{children}</ApolloProvider>
</BlueapiProvider>
</UserAuthProvider>
</QueryClientProvider>
</ReduxProvider>
</InstrumentSessionProvider>
<ReduxProvider store={store(config)}>
<QueryClientProvider client={new QueryClient()}>
<UserAuthProvider>
<BlueapiProvider api={api}>
<ApolloProvider client={client}>
<InstrumentSessionProvider>
{children}
</InstrumentSessionProvider>
</ApolloProvider>
</BlueapiProvider>
</UserAuthProvider>
</QueryClientProvider>
</ReduxProvider>
</ThemeProvider>
);
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import type {
import type { ExperimentDefinition, Sample } from "../../../generated/queue";
import { useInstrumentSession, visitTextToVisit } from "@atlas/app-shell";


export type ExperimentDefinitionData = {
q_max: number;
frames: number;
Expand Down Expand Up @@ -76,11 +75,14 @@ export function ExperimentList() {
);
}

const visit = visitTextToVisit(instrumentSession);
const visit = visitTextToVisit(instrumentSession ?? "cm0-0");

const { data, loading, error } = useQuery(GET_EXPERIMENTS, {
skip: !visit,
variables: { proposal: visit?.proposalNumber ?? 0, session: visit?.number ?? 0 },
variables: {
proposal: visit?.proposalNumber ?? 0,
session: visit?.number ?? 0,
},
fetchPolicy: "cache-and-network",
context: { pathname: location.pathname },
});
Expand Down Expand Up @@ -162,9 +164,9 @@ export function ExperimentList() {
},
muiToolbarAlertBannerProps: error
? {
color: "error",
children: `Error: ${error.message}`,
}
color: "error",
children: `Error: ${error.message}`,
}
: undefined,
});

Expand Down
49 changes: 49 additions & 0 deletions apps/i15-1/src/components/getInstrumentSessionButton.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
import { useLazyQuery } from "@apollo/client/react";
import { getInstrumentSessionsQuery } from "../graphql/getInstrumentSessionsQuery.ts";
import type { TypedDocumentNode } from "@apollo/client";
import type {
InstrumentSessionQuery,
InstrumentSessionQueryVariables,
} from "../graphql/getInstrumentSessionsQuery.generated.ts";
import { useInstrumentSession } from "@atlas/app-shell";
import { Button } from "@mui/material";

export const InstrumentSessionButton = () => {
const { setInstrumentSession, setInstrumentSessionList } =
useInstrumentSession();

const GET_SESSIONS: TypedDocumentNode<
InstrumentSessionQuery,
InstrumentSessionQueryVariables
> = getInstrumentSessionsQuery;

const [fetchSessions] = useLazyQuery(GET_SESSIONS);

const handleButtonClick = async () => {
try {
const { data } = await fetchSessions({
variables: { instrumentKey: "I15-1" },
});

const edges = data?.instrumentByKey?.instrumentSessions?.edges;
if (edges && edges.length > 0) {
const sessionsList = edges.flatMap((edge) => {
const ref = edge?.node?.instrumentSessionReference;
return ref ? [ref.toLocaleLowerCase()] : [];
});
setInstrumentSessionList(sessionsList);
if (sessionsList.length == 1) {
setInstrumentSession(sessionsList[0]);
}
}
} catch (err) {
console.error("Failed to fetch sessions:", err);
}
};

return (
<Button variant="contained" onClick={handleButtonClick}>
Get Sessions
</Button>
);
};
10 changes: 10 additions & 0 deletions apps/i15-1/src/graphql/getInstrumentSessionsQuery.generated.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/** Internal type. DO NOT USE DIRECTLY. */
type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
/** Internal type. DO NOT USE DIRECTLY. */
export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
export type InstrumentSessionQueryVariables = Exact<{
instrumentKey: string;
}>;


export type InstrumentSessionQuery = { instrumentByKey: { __typename: 'Instrument', instrumentSessions: { __typename: 'InstrumentSessionConnection', edges: Array<{ __typename: 'InstrumentSessionEdge', node: { __typename: 'InstrumentSession', instrumentSessionReference: string | null } }> } } | null };
15 changes: 15 additions & 0 deletions apps/i15-1/src/graphql/getInstrumentSessionsQuery.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { gql } from "@apollo/client";

export const getInstrumentSessionsQuery = gql`
query InstrumentSession($instrumentKey: String!) {
instrumentByKey(key: $instrumentKey) {
instrumentSessions(filterBy: { state: { eq: IN_PROGRESS } }) {
edges {
node {
instrumentSessionReference
}
}
}
}
}
`;
20 changes: 20 additions & 0 deletions apps/i15-1/src/mocks/handlers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,22 @@ const fakeContainersForInstrument: {
},
};

const fakeInstrumentSession = {
data: {
instrumentByKey: {
instrumentSessions: {
edges: [
{
node: {
instrumentSessionReference: "CM44163-4",
},
},
],
},
},
},
};

function setWorkerState(new_state: string) {
workerStatus.status = new_state;
}
Expand Down Expand Up @@ -753,6 +769,10 @@ export const handlers = [
}
}

if (body.operationName === "InstrumentSession") {
return HttpResponse.json(fakeInstrumentSession);
}

return HttpResponse.json(fakeExperiments);
}),

Expand Down
3 changes: 3 additions & 0 deletions apps/i15-1/src/routes/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@ import PrecisionManufacturingIcon from "@mui/icons-material/PrecisionManufacturi
import QueueIcon from "@mui/icons-material/Queue";
import { useUserAuth } from "../context/userAuth/useUserAuth.ts";
import { User } from "@diamondlightsource/sci-react-ui";
import { InstrumentSessionButton } from "../components/getInstrumentSessionButton.tsx";

function Dashboard() {
const user = useUserAuth();

const handleLogIn = () => window.location.assign("/oauth2/sign_in");
const handleLogOut = () => window.location.assign("/oauth2/sign_out");

return (
<>
<Container maxWidth="sm" sx={{ mb: 4 }}>
Expand All @@ -26,6 +28,7 @@ function Dashboard() {
: { fedid: user.person }
}
/>
<InstrumentSessionButton />
<Stack direction={"row"} spacing={5}>
<Button
component={Link}
Expand Down
4 changes: 2 additions & 2 deletions apps/i15-1/src/routes/Robot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,12 @@ function RobotControl() {
<RunPlanButton
name="robot_load"
params={formData}
instrumentSession={instrumentSession}
instrumentSession={instrumentSession ?? "cm0-0"}
buttonText="Load Sample"
/>
<RunPlanButton
name="robot_unload"
instrumentSession={instrumentSession}
instrumentSession={instrumentSession ?? "cm0-0"}
buttonText="Unload Sample"
/>
</Stack>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ import { useState, useEffect, useContext, type ReactNode } from "react";
import { createContext } from "react";

export const ID_STORAGE_KEY = "instrument-session-id";
export const LIST_STORAGE_KEY = "instrument-session-list";

export type InstrumentSessionContextType = {
instrumentSession: string;
instrumentSession: string | null;
setInstrumentSession: (session: string) => void;
sessionsList: string[];
instrumentSessionList: string[] | null;
setInstrumentSessionList: (list: string[]) => void;
};

export const InstrumentSessionContext = createContext<
Expand All @@ -15,37 +17,51 @@ export const InstrumentSessionContext = createContext<

export const InstrumentSessionProvider = ({
children,
sessionsList = ["cm123-4", "cm567-8"],
sessionsList = null,
}: {
children: ReactNode;
sessionsList?: string[];
sessionsList?: string[] | null;
}) => {
const [instrumentSession, setInstrumentSession] = useState<string>(() => {
try {
const rawItem = localStorage.getItem(ID_STORAGE_KEY);
if (!rawItem) {
return sessionsList[0];
const [instrumentSessionList, setInstrumentSessionList] = useState<
string[] | null
>(sessionsList);

useEffect(() => {
localStorage.setItem(
LIST_STORAGE_KEY,
JSON.stringify(instrumentSessionList),
);
}, [instrumentSessionList]);

const [instrumentSession, setInstrumentSession] = useState<string | null>(
() => {
try {
const rawItem = localStorage.getItem(ID_STORAGE_KEY);
if (!rawItem) {
return sessionsList ? sessionsList[0] : null;
}
return JSON.parse(rawItem);
} catch (error) {
console.error(
"Failed to load instrument session from localStorage:",
error,
);
return sessionsList ? sessionsList[0] : null;
}
return JSON.parse(rawItem);
} catch (error) {
console.error(
"Failed to load instrument session from localStorage:",
error,
);
return sessionsList[0];
}
});
},
);

useEffect(() => {
localStorage.setItem(ID_STORAGE_KEY, instrumentSession);
localStorage.setItem(ID_STORAGE_KEY, JSON.stringify(instrumentSession));
}, [instrumentSession]);

return (
<InstrumentSessionContext.Provider
value={{
instrumentSession,
setInstrumentSession,
sessionsList,
instrumentSessionList,
setInstrumentSessionList,
}}
>
{children}
Expand Down
Loading
Loading