forked from React-Group/interstellar_ai
29 lines
692 B
JavaScript
29 lines
692 B
JavaScript
|
import axios from "axios";
|
||
|
|
||
|
let shouldRun = false
|
||
|
onmessage = (event) => {
|
||
|
if (event.data === "start") {
|
||
|
shouldRun = true
|
||
|
fetchData()
|
||
|
} else if (event.date === "terminate") {
|
||
|
shouldRun = false
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const fetchData = () => {
|
||
|
if (!shouldRun) return
|
||
|
|
||
|
const apiURL = "http://localhost:5000/interstellar/api/ai_get"
|
||
|
|
||
|
axios.get(apiURL)
|
||
|
.then(response => {
|
||
|
const data = response.data.response
|
||
|
postMessage(data)
|
||
|
setTimeout(fetchData,500)
|
||
|
})
|
||
|
.catch(error => {
|
||
|
console.log('Error fetching data:', error);
|
||
|
postMessage({error:"failed fetching data"})
|
||
|
|
||
|
})
|
||
|
}
|