178 lines
4.1 KiB
Vue
178 lines
4.1 KiB
Vue
<template>
|
|
<Dialog
|
|
:options="{
|
|
title: 'Move Site to another Bench Group',
|
|
actions: [
|
|
{
|
|
label: 'Change Bench Group',
|
|
loading: $resources.changeGroup.loading,
|
|
disabled: !$resources.changeGroupOptions?.data?.length,
|
|
variant: 'solid',
|
|
onClick: () =>
|
|
$resources.changeGroup.submit({
|
|
skip_failing_patches: skipFailingPatches,
|
|
group: targetGroup,
|
|
name: site?.name
|
|
})
|
|
},
|
|
{
|
|
label: 'Clone current Bench Group',
|
|
onClick: () => {
|
|
$emit('update:modelValue', false);
|
|
showCloneBenchDialog = true;
|
|
}
|
|
}
|
|
]
|
|
}"
|
|
v-model="show"
|
|
>
|
|
<template #body-content>
|
|
<LoadingIndicator
|
|
class="mx-auto h-4 w-4"
|
|
v-if="$resources.changeGroupOptions.loading"
|
|
/>
|
|
<div
|
|
v-else-if="$resources.changeGroupOptions.data.length > 0"
|
|
class="space-y-4"
|
|
>
|
|
<FormControl
|
|
variant="outline"
|
|
label="Select Bench Group"
|
|
type="select"
|
|
:options="
|
|
$resources.changeGroupOptions.data.map(group => ({
|
|
label: group.title,
|
|
value: group.name
|
|
}))
|
|
"
|
|
v-model="targetGroup"
|
|
/>
|
|
<FormControl
|
|
label="Skip failing patches if any"
|
|
type="checkbox"
|
|
v-model="skipFailingPatches"
|
|
/>
|
|
</div>
|
|
<p v-else-if="!errorMessage" class="text-md text-base text-gray-800">
|
|
There are no other bench groups that you own for this site to move to.
|
|
You can clone this bench group to move the site.
|
|
</p>
|
|
<ErrorMessage class="mt-3" :message="errorMessage" />
|
|
</template>
|
|
</Dialog>
|
|
<Dialog
|
|
:options="{
|
|
title: 'Clone Bench Group',
|
|
actions: [
|
|
{
|
|
label: 'Clone Bench Group',
|
|
variant: 'solid',
|
|
loading: $resources.cloneGroup.loading,
|
|
onClick: () =>
|
|
$resources.cloneGroup.submit({
|
|
name: site?.name,
|
|
new_group_title: newGroupTitle
|
|
})
|
|
}
|
|
]
|
|
}"
|
|
v-model="showCloneBenchDialog"
|
|
>
|
|
<template #body-content>
|
|
<FormControl label="New Bench Group Name" v-model="newGroupTitle" />
|
|
<ErrorMessage :message="$resources.cloneGroup.error" />
|
|
</template>
|
|
</Dialog>
|
|
</template>
|
|
|
|
<script>
|
|
import { notify } from '@/utils/toast';
|
|
|
|
export default {
|
|
name: 'SiteChangeGroupDialog',
|
|
props: ['site', 'modelValue'],
|
|
emits: ['update:modelValue'],
|
|
data() {
|
|
return {
|
|
targetGroup: null,
|
|
newGroupTitle: '',
|
|
skipFailingPatches: false,
|
|
showCloneBenchDialog: false
|
|
};
|
|
},
|
|
computed: {
|
|
show: {
|
|
get() {
|
|
return this.modelValue;
|
|
},
|
|
set(value) {
|
|
this.$emit('update:modelValue', value);
|
|
}
|
|
},
|
|
errorMessage() {
|
|
return (
|
|
this.$resources.changeGroupOptions.error ||
|
|
this.$resources.changeGroup.error ||
|
|
this.$resources.cloneGroup.error
|
|
);
|
|
}
|
|
},
|
|
resources: {
|
|
changeGroup() {
|
|
return {
|
|
url: 'jcloud.api.site.change_group',
|
|
onSuccess() {
|
|
const destinationGroupTitle =
|
|
this.$resources.changeGroupOptions.data.find(
|
|
group => group.name === this.targetGroup
|
|
).title;
|
|
|
|
notify({
|
|
title: 'Scheduled Bench Group Change',
|
|
message: `Site scheduled to be moved to <b>${destinationGroupTitle}</b>`,
|
|
color: 'green',
|
|
icon: 'check'
|
|
});
|
|
this.targetGroup = null;
|
|
this.$emit('update:modelValue', false);
|
|
}
|
|
};
|
|
},
|
|
changeGroupOptions() {
|
|
return {
|
|
url: 'jcloud.api.site.change_group_options',
|
|
params: {
|
|
name: this.site?.name
|
|
},
|
|
initialData: [],
|
|
onSuccess(data) {
|
|
if (data.length > 0) this.targetGroup = data[0].name;
|
|
},
|
|
auto: true
|
|
};
|
|
},
|
|
cloneGroup() {
|
|
return {
|
|
url: 'jcloud.api.site.clone_group',
|
|
onSuccess(data) {
|
|
notify({
|
|
title: 'Cloned Bench Group',
|
|
message: `The current bench group has been cloned successfully. Redirecting to the new bench group...`,
|
|
color: 'green',
|
|
icon: 'check'
|
|
});
|
|
this.showCloneBenchDialog = false;
|
|
this.$router.push({
|
|
name: 'BenchDeploys',
|
|
params: {
|
|
benchName: data.bench_name,
|
|
candidateName: data.candidate_name
|
|
}
|
|
});
|
|
}
|
|
};
|
|
}
|
|
}
|
|
};
|
|
</script>
|