forked from woodpecker-ci/woodpecker
-
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.
Update build layout (woodpecker-ci#678)
* show yml config of build in UI * fix after merge * improve build configs * fix approve & decline build * improve build layout * undo un-related changes * fix type * move icon back to right side Co-authored-by: 6543 <[email protected]>
- Loading branch information
Showing
15 changed files
with
487 additions
and
372 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
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,112 @@ | ||
<template> | ||
<div class="flex flex-col w-3/12 text-gray-200 dark:text-gray-400"> | ||
<div class="flex py-4 px-2 mx-2 justify-between flex-shrink-0 text-gray-500 border-b-1 dark:border-dark-gray-600"> | ||
<div class="flex space-x-1 items-center flex-shrink-0"> | ||
<div class="flex items-center"><img class="w-6" :src="build.author_avatar" /></div> | ||
<span>{{ build.author }}</span> | ||
</div> | ||
<div class="flex space-x-1 items-center"> | ||
<Icon v-if="build.event === 'push'" name="push" /> | ||
<Icon v-if="build.event === 'deployment'" name="deployment" /> | ||
<Icon v-else-if="build.event === 'tag'" name="tag" /> | ||
<a | ||
v-else-if="build.event === 'pull_request'" | ||
class="flex items-center text-link" | ||
:href="build.link_url" | ||
target="_blank" | ||
> | ||
<Icon name="pull_request" /> | ||
<span>{{ | ||
`#${build.ref.replaceAll('refs/pull/', '').replaceAll('refs/merge-requests/', '').replaceAll('/head', '')}` | ||
}}</span></a | ||
> | ||
<span v-if="build.event !== 'pull_request'">{{ build.branch }}</span> | ||
</div> | ||
<div class="flex items-center flex-shrink-0"> | ||
<template v-if="build.event === 'pull_request'"> | ||
<Icon name="commit" /> | ||
<span>{{ build.commit.slice(0, 10) }}</span> | ||
</template> | ||
<a v-else class="text-link flex items-center" :href="build.link_url" target="_blank"> | ||
<Icon name="commit" /> | ||
<span>{{ build.commit.slice(0, 10) }}</span> | ||
</a> | ||
</div> | ||
</div> | ||
|
||
<div v-for="proc in build.procs" :key="proc.id"> | ||
<div class="p-4 pb-1 flex flex-wrap items-center justify-between"> | ||
<span>{{ proc.name }}</span> | ||
<div v-if="proc.environ" class="text-xs"> | ||
<div v-for="(value, key) in proc.environ" :key="key"> | ||
<span | ||
class=" | ||
pl-2 | ||
pr-1 | ||
py-0.5 | ||
bg-gray-800 | ||
dark:bg-gray-600 | ||
border-2 border-gray-800 | ||
dark:border-gray-600 | ||
rounded-l-full | ||
" | ||
>{{ key }}</span | ||
> | ||
<span class="pl-1 pr-2 py-0.5 border-2 border-gray-800 dark:border-gray-600 rounded-r-full">{{ | ||
value | ||
}}</span> | ||
</div> | ||
</div> | ||
</div> | ||
<div | ||
v-for="job in proc.children" | ||
:key="job.pid" | ||
class="flex p-2 pl-6 cursor-pointer items-center hover:bg-gray-700 hover:dark:bg-dark-gray-900" | ||
:class="{ 'bg-gray-700 !dark:bg-dark-gray-600': selectedProcId && selectedProcId === job.pid }" | ||
@click="$emit('update:selected-proc-id', job.pid)" | ||
> | ||
<div v-if="['success'].includes(job.state)" class="w-2 h-2 bg-lime-400 rounded-full" /> | ||
<div v-if="['pending', 'skipped'].includes(job.state)" class="w-2 h-2 bg-gray-400 rounded-full" /> | ||
<div | ||
v-if="['killed', 'error', 'failure', 'blocked', 'declined'].includes(job.state)" | ||
class="w-2 h-2 bg-red-400 rounded-full" | ||
/> | ||
<div v-if="['started', 'running'].includes(job.state)" class="w-2 h-2 bg-blue-400 rounded-full" /> | ||
<span class="ml-2">{{ job.name }}</span> | ||
<BuildProcDuration :proc="job" /> | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import { defineComponent, PropType } from 'vue'; | ||
import BuildProcDuration from '~/components/repo/build/BuildProcDuration.vue'; | ||
import { Build } from '~/lib/api/types'; | ||
export default defineComponent({ | ||
name: 'BuildProcList', | ||
components: { | ||
BuildProcDuration, | ||
}, | ||
props: { | ||
build: { | ||
type: Object as PropType<Build>, | ||
required: true, | ||
}, | ||
selectedProcId: { | ||
type: Number as PropType<number | null>, | ||
default: null, | ||
}, | ||
}, | ||
emits: { | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
'update:selected-proc-id': (selectedProcId: number) => true, | ||
}, | ||
}); | ||
</script> |
This file was deleted.
Oops, something went wrong.
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
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
Oops, something went wrong.