-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reloading model when engine params have new values
- Loading branch information
Showing
6 changed files
with
131 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
import React, { useEffect, useState } from 'react' | ||
|
||
import { useActiveModel } from '@/hooks/useActiveModel' | ||
|
||
export default function ModelReload() { | ||
const { stateModel } = useActiveModel() | ||
const [loader, setLoader] = useState(0) | ||
|
||
// This is fake loader please fix this when we have realtime percentage when load model | ||
useEffect(() => { | ||
if (stateModel.loading) { | ||
if (loader === 24) { | ||
setTimeout(() => { | ||
setLoader(loader + 1) | ||
}, 250) | ||
} else if (loader === 50) { | ||
setTimeout(() => { | ||
setLoader(loader + 1) | ||
}, 250) | ||
} else if (loader === 78) { | ||
setTimeout(() => { | ||
setLoader(loader + 1) | ||
}, 250) | ||
} else if (loader === 99) { | ||
setLoader(99) | ||
} else { | ||
setLoader(loader + 1) | ||
} | ||
} else { | ||
setLoader(0) | ||
} | ||
}, [stateModel.loading, loader]) | ||
|
||
if (!stateModel.loading) return null | ||
|
||
return ( | ||
<div className=" mb-1 mt-2 py-2 text-center"> | ||
<div className="relative inline-block overflow-hidden rounded-lg border border-neutral-50 bg-blue-50 px-4 py-2 font-semibold text-blue-600 shadow-lg"> | ||
<div | ||
className="absolute left-0 top-0 h-full bg-blue-200" | ||
style={{ width: `${loader}%` }} | ||
/> | ||
<span className="relative z-10"> | ||
Reloading model {stateModel.model} | ||
</span> | ||
</div> | ||
</div> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters