-
Notifications
You must be signed in to change notification settings - Fork 1
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
Release v1.0.3 #134
Release v1.0.3 #134
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -14,8 +14,9 @@ import { useMapper } from '~/components/utils'; | |||||||||||||||||||||||||||||||||
import { registryHost } from '~/lib/configs/base-url.cjs'; | ||||||||||||||||||||||||||||||||||
import { BottomNavigation } from '~/console/components/commons'; | ||||||||||||||||||||||||||||||||||
import { useOutletContext } from '@remix-run/react'; | ||||||||||||||||||||||||||||||||||
import { IAppContext } from '~/console/routes/_main+/$account+/$project+/$environment+/app+/$app+/_layout'; | ||||||||||||||||||||||||||||||||||
import { useLog } from '~/root/lib/client/hooks/use-log'; | ||||||||||||||||||||||||||||||||||
import { plans } from './datas'; | ||||||||||||||||||||||||||||||||||
import { IProjectContext } from '../../_layout'; | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
const valueRender = ({ | ||||||||||||||||||||||||||||||||||
label, | ||||||||||||||||||||||||||||||||||
|
@@ -49,7 +50,7 @@ const AppCompute = () => { | |||||||||||||||||||||||||||||||||
getImageTag, | ||||||||||||||||||||||||||||||||||
} = useAppState(); | ||||||||||||||||||||||||||||||||||
const api = useConsoleApi(); | ||||||||||||||||||||||||||||||||||
const { cluster } = useOutletContext<IAppContext>(); | ||||||||||||||||||||||||||||||||||
const { cluster } = useOutletContext<IProjectContext>(); | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
const { | ||||||||||||||||||||||||||||||||||
data, | ||||||||||||||||||||||||||||||||||
|
@@ -64,9 +65,19 @@ const AppCompute = () => { | |||||||||||||||||||||||||||||||||
isLoading: nodepoolLoading, | ||||||||||||||||||||||||||||||||||
error: nodepoolLoadingError, | ||||||||||||||||||||||||||||||||||
} = useCustomSwr('/nodepools', async () => { | ||||||||||||||||||||||||||||||||||
return api.listNodePools({ clusterName: parseName(cluster) }); | ||||||||||||||||||||||||||||||||||
return api.listNodePools({ | ||||||||||||||||||||||||||||||||||
clusterName: parseName(cluster), | ||||||||||||||||||||||||||||||||||
pagination: { | ||||||||||||||||||||||||||||||||||
first: 100, | ||||||||||||||||||||||||||||||||||
orderBy: 'updateTime', | ||||||||||||||||||||||||||||||||||
sortDirection: 'DESC', | ||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||
Comment on lines
+68
to
+75
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. suggestion (performance): Adding pagination with a 'first' limit of 100 and sorting by 'updateTime' DESC is a good practice for handling potentially large datasets. This ensures the UI remains responsive and the data presented is the most relevant. However, consider if 100 is the optimal number based on the average use case and UI design.
Suggested change
|
||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
useLog(nodepoolData); | ||||||||||||||||||||||||||||||||||
useLog(nodepoolLoadingError); | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
const { values, errors, handleChange, isLoading, submit } = useForm({ | ||||||||||||||||||||||||||||||||||
initialValues: { | ||||||||||||||||||||||||||||||||||
imageUrl: app.spec.containers[activeContIndex]?.image || '', | ||||||||||||||||||||||||||||||||||
|
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.
suggestion (code_refinement): Changing from console.trace to console.log reduces the verbosity of the logging, making it cleaner for debugging purposes. However, ensure that this change aligns with the debugging needs. console.trace can be useful for tracking call stacks, especially in complex applications.