-
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
Fix/repo name #136
Fix/repo name #136
Changes from all commits
a58eb0f
0ebe9dc
f12b584
e6703b5
dc89a97
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 | ||||
---|---|---|---|---|---|---|
|
@@ -16,7 +16,7 @@ export const loader = async (ctx: IRemixCtx) => { | |||||
|
||||||
const promise = pWrapper(async () => { | ||||||
const { data, errors } = await GQLServerHandler(ctx.request).listBuildRuns({ | ||||||
repoName: repo, | ||||||
repoName: atob(repo), | ||||||
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 (code_refinement): The use of
Suggested change
|
||||||
pq: getPagination(ctx), | ||||||
search: getSearch(ctx), | ||||||
}); | ||||||
|
Original file line number | Diff line number | Diff line change | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -4,11 +4,18 @@ import Popup from '~/components/molecule/popup'; | |||||||||||||||
import CodeView from '~/console/components/code-view'; | ||||||||||||||||
import { IDialog } from '~/console/components/types.d'; | ||||||||||||||||
import { registryHost } from '~/root/lib/configs/base-url.cjs'; | ||||||||||||||||
import { useOutletContext } from 'react-router-dom'; | ||||||||||||||||
import { ISHADialogData } from './tags-resources'; | ||||||||||||||||
import { IRepoContext } from '../_layout'; | ||||||||||||||||
|
||||||||||||||||
const SHADialog = ({ show, setShow }: IDialog<ISHADialogData>) => { | ||||||||||||||||
const { account, repo } = useParams(); | ||||||||||||||||
const url = `${registryHost}/${account}/${repo}:${ | ||||||||||||||||
const { account } = useParams(); | ||||||||||||||||
|
||||||||||||||||
const { repoName } = useOutletContext<IRepoContext>(); | ||||||||||||||||
|
||||||||||||||||
return null; | ||||||||||||||||
Comment on lines
+14
to
+16
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. issue (bug_risk): The addition of
Suggested change
|
||||||||||||||||
|
||||||||||||||||
const url = `${registryHost}/${account}/${repoName}:${ | ||||||||||||||||
show?.data?.tag ? show?.data?.tag : `@${show?.data?.sha}` | ||||||||||||||||
}`; | ||||||||||||||||
return ( | ||||||||||||||||
|
Original file line number | Diff line number | Diff line change | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -10,12 +10,13 @@ import { useConsoleApi } from '~/console/server/gql/api-provider'; | |||||||||||||||
import Git from '~/console/components/git'; | ||||||||||||||||
import { IGIT_PROVIDERS } from '~/console/hooks/use-git'; | ||||||||||||||||
import { BottomNavigation } from '~/console/components/commons'; | ||||||||||||||||
import { toast } from '~/components/molecule/toast'; | ||||||||||||||||
import ReviewBuild from './review-build'; | ||||||||||||||||
import BuildDetails from './build-details'; | ||||||||||||||||
import { IRepoContext } from '../_layout'; | ||||||||||||||||
|
||||||||||||||||
const NewBuild = () => { | ||||||||||||||||
const { loginUrls, logins } = useOutletContext<IRepoContext>(); | ||||||||||||||||
const { loginUrls, logins, repoName } = useOutletContext<IRepoContext>(); | ||||||||||||||||
|
||||||||||||||||
const navigate = useNavigate(); | ||||||||||||||||
|
||||||||||||||||
|
@@ -27,7 +28,6 @@ const NewBuild = () => { | |||||||||||||||
}); | ||||||||||||||||
|
||||||||||||||||
const api = useConsoleApi(); | ||||||||||||||||
const { repo } = useParams(); | ||||||||||||||||
|
||||||||||||||||
const { values, errors, handleSubmit, handleChange, isLoading } = useForm({ | ||||||||||||||||
initialValues: { | ||||||||||||||||
|
@@ -40,7 +40,7 @@ const NewBuild = () => { | |||||||||||||||
tags: [], | ||||||||||||||||
buildClusterName: '', | ||||||||||||||||
advanceOptions: false, | ||||||||||||||||
repository: repo || '', | ||||||||||||||||
repository: repoName || '', | ||||||||||||||||
buildArgs: {}, | ||||||||||||||||
buildContexts: {}, | ||||||||||||||||
contextDir: '', | ||||||||||||||||
|
@@ -69,8 +69,9 @@ const NewBuild = () => { | |||||||||||||||
}), | ||||||||||||||||
}), | ||||||||||||||||
onSubmit: async (val) => { | ||||||||||||||||
if (!repo) { | ||||||||||||||||
throw new Error('Repository is required!.'); | ||||||||||||||||
if (!repoName) { | ||||||||||||||||
toast.error('Repository is required!.'); | ||||||||||||||||
return; | ||||||||||||||||
Comment on lines
+72
to
+74
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. issue (code_refinement): Replacing the
Suggested change
|
||||||||||||||||
} | ||||||||||||||||
const submit = async () => { | ||||||||||||||||
try { | ||||||||||||||||
|
@@ -115,21 +116,26 @@ const NewBuild = () => { | |||||||||||||||
if (e) { | ||||||||||||||||
throw e[0]; | ||||||||||||||||
} | ||||||||||||||||
navigate(`/${account}/repo/${repo}/builds`); | ||||||||||||||||
navigate(`/${account}/repo/${repoName}/builds`); | ||||||||||||||||
} catch (err) { | ||||||||||||||||
handleError(err); | ||||||||||||||||
} | ||||||||||||||||
}; | ||||||||||||||||
switch (currentStep) { | ||||||||||||||||
case 1: | ||||||||||||||||
nextStep(); | ||||||||||||||||
break; | ||||||||||||||||
case 2: | ||||||||||||||||
nextStep(); | ||||||||||||||||
break; | ||||||||||||||||
default: | ||||||||||||||||
await submit(); | ||||||||||||||||
break; | ||||||||||||||||
|
||||||||||||||||
try { | ||||||||||||||||
switch (currentStep) { | ||||||||||||||||
case 1: | ||||||||||||||||
nextStep(); | ||||||||||||||||
break; | ||||||||||||||||
case 2: | ||||||||||||||||
nextStep(); | ||||||||||||||||
break; | ||||||||||||||||
default: | ||||||||||||||||
await submit(); | ||||||||||||||||
break; | ||||||||||||||||
} | ||||||||||||||||
} catch (err) { | ||||||||||||||||
handleError(err); | ||||||||||||||||
} | ||||||||||||||||
}, | ||||||||||||||||
}); | ||||||||||||||||
|
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): It seems like
useParams()
is called twice consecutively to extractaccount
andrepo
. Consider combining these into a single destructuring assignment for cleaner code and potentially better performance.