diff --git a/src/components/services/Interactive.js b/src/components/services/Interactive.js index 00d59d047c120c0bb308624a82490291b799bec1..8f4517485c48f8e81b140743fcb24506bb57672f 100644 --- a/src/components/services/Interactive.js +++ b/src/components/services/Interactive.js @@ -5,7 +5,7 @@ import { GlobalContext } from "../../contexts/GlobalContext"; export default function Interactive() { - const { jhubURL, setJhubURL, jnotebookURL, setJnotebookURL, batchsystemsURL, setBatchsystemsURL, list_of_jnotebooks, setList_of_jnotebooks, list_of_jhubs, setList_of_jhubs} = useContext(IDAContext); + const { idaSystemURL, setIdaSystemURL, jnotebookURL, setJnotebookURL, batchsystemsURL, setBatchsystemsURL, list_of_jnotebooks, setList_of_jnotebooks, list_of_idaSystems, setList_of_idaSystems} = useContext(IDAContext); const { api_host } = useContext(GlobalContext); let list_of_batchsystems = [ @@ -13,7 +13,7 @@ export default function Interactive() { {"name" : "CTA DIRAC", "url" : "https://ccdcta-web.in2p3.fr/DIRAC/"}, ] - if ((!list_of_jnotebooks) || (!list_of_jhubs) || (!list_of_batchsystems)) { + if ((!list_of_jnotebooks) || (!list_of_idaSystems) || (!list_of_batchsystems)) { return null } @@ -24,7 +24,7 @@ export default function Interactive() { (event) => setJnotebookURL(list_of_jnotebooks.find((item) => item.name === event.target.value).url) }> <Form.Label> - <h3>Select ESCAPE ESFRI Jupyter Workflows (Notebooks)</h3> + <h3>Select an analysis workflow (Jupyter Notebook)</h3> </Form.Label> <Form.Control className="mt-1" as="select"> {list_of_jnotebooks.map((option) => <option>{option.name}</option>)} @@ -33,18 +33,18 @@ export default function Interactive() { </Form> <Form className="mt-5"> <Form.Group controlId="jhub" onChange={ - (event) => setJhubURL(list_of_jhubs.find((item) => item.name === event.target.value).url) + (event) => setIdaSystemURL(list_of_idaSystems.find((item) => item.name === event.target.value).url) }> <Form.Label> - <h3>Select ESCAPE JupyterHub Services</h3> + <h3>Select an analysis service</h3> </Form.Label> <Form.Control className="mt-1" as="select"> - {list_of_jhubs.map((option) => <option>{option.name}</option>)} + {list_of_idaSystems.map((option) => <option>{option.name}</option>)} </Form.Control> </Form.Group> </Form> - - <Button href={api_host + "ida/deploy?facility=" + jhubURL + "&workflow=" + jnotebookURL} target="_blank">Deploy</Button> + + <Button href={api_host + "ida/deploy?facility=" + idaSystemURL + "&workflow=" + jnotebookURL} target="_blank">Deploy</Button> </Container> ); diff --git a/src/contexts/IDAContext.js b/src/contexts/IDAContext.js index 357e90fe7a3300dc6a4fbd6c5bf7712b75dab9e4..2e5174ce2d8645666037441be752be7b8042b320 100644 --- a/src/contexts/IDAContext.js +++ b/src/contexts/IDAContext.js @@ -1,7 +1,5 @@ import React, { createContext, useState, useEffect, useContext } from "react"; -import { Alert } from "react-bootstrap"; import axios from "axios"; -import getCookie from "../utils/getCookie"; import { GlobalContext } from "./GlobalContext"; @@ -9,11 +7,11 @@ export const IDAContext = createContext(); export function IDAContextProvider({ children }) { const { api_host } = useContext(GlobalContext); - const [jhubURL, setJhubURL] = useState("https://srcdev.skatelescope.org/escape"); - const [jnotebookURL, setJnotebookURL] = useState("https://github.com/AMIGA-IAA/hcg-16/master"); - const [batchsystemsURL, setBatchsystemsURL] = useState("https://dirac.egi.eu"); + const [idaSystemURL, setIdaSystemURL] = useState(); + const [jnotebookURL, setJnotebookURL] = useState(); + const [batchsystemsURL, setBatchsystemsURL] = useState(); const [list_of_jnotebooks, setList_of_jnotebooks] = useState(); - const [list_of_jhubs, setList_of_jhubs] = useState(); + const [list_of_idaSystems, setList_of_idaSystems] = useState(); // Fetch Notebooks useEffect(() => { @@ -21,6 +19,7 @@ export function IDAContextProvider({ children }) { .get(api_host + "ida/workflows/search") .then((response) => { setList_of_jnotebooks(response.data.results); + setJnotebookURL(response.data.results[0].url); }); }, [api_host]); @@ -30,7 +29,8 @@ export function IDAContextProvider({ children }) { axios .get(api_host + "ida/facilities/search") .then((response) => { - setList_of_jhubs(response.data.results); + setList_of_idaSystems(response.data.results); + setIdaSystemURL(response.data.results[0].url); }); }, [api_host]); @@ -38,16 +38,16 @@ export function IDAContextProvider({ children }) { return ( <IDAContext.Provider value={{ - jhubURL, - setJhubURL, + idaSystemURL, + setIdaSystemURL, jnotebookURL, setJnotebookURL, batchsystemsURL, setBatchsystemsURL, list_of_jnotebooks, setList_of_jnotebooks, - list_of_jhubs, - setList_of_jhubs + list_of_idaSystems, + setList_of_idaSystems }} > {children}