-
Notifications
You must be signed in to change notification settings - Fork 850
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
Notebooks selector app with manual GitHub Pages deploy #1679
Notebooks selector app with manual GitHub Pages deploy #1679
Conversation
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
|
||
useEffect(() => { | ||
setPage(1); | ||
}, [selectedTags, searchValue, sort, setPage]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why setPage
in dependencies?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
setPage
function is used inside this effect so it is considered as a dependency as well
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should notebooksService.getNotebooks
from the next effect be in dependencies as well?
@@ -1,9 +1,9 @@ | |||
// @ts-check | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider using json schema instead of manual validation
Ticket: CVS-119857
This PR introduces OpenVINO Notebooks selector app written with
TypeScript
,React
andvite
. Moreover, new GitHub Actions workflow is added for manual app deploy to repository GitHub Pages (through workflow dispatch via GitHub Actions UI).Note for reviewers: Files in
./selector/src/@spark-design
directory can be skipped during review - these files are from Spark Design open-source package and can be treated as a dependency.