blob: 98a0f0188472dc307bd2c7b830266cc491ac50d0 [file] [log] [blame]
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<script lang="ts">
import { reactive, defineComponent } from 'vue';
import { useI18n } from '/@/hooks/web/useI18n';
import { exceptionPropWidth } from '/@/utils';
export default defineComponent({
name: 'StartApplicationModal',
});
</script>
<script setup lang="ts" name="StartApplicationModal">
import { h } from 'vue';
import { Select, Input, Tag } from 'ant-design-vue';
import { BasicForm, useForm } from '/@/components/Form';
import { SvgIcon, Icon } from '/@/components/Icon';
import { BasicModal, useModalInner } from '/@/components/Modal';
import { useMessage } from '/@/hooks/web/useMessage';
import { useRouter } from 'vue-router';
import { fetchCheckStart, fetchForcedStop, fetchStart } from '/@/api/flink/app';
import { AppExistsEnum, RestoreModeEnum } from '/@/enums/flinkEnum';
import { fetchFlinkEnv } from '/@/api/flink/flinkEnv';
import { renderFlinkAppRestoreMode } from '/@/views/flink/app/hooks/useFlinkRender';
const SelectOption = Select.Option;
const { t } = useI18n();
const { Swal } = useMessage();
const router = useRouter();
const emits = defineEmits(['register', 'updateOption']);
const receiveData = reactive<Recordable>({});
const [registerModal, { closeModal }] = useModalInner((data) => {
if (data) {
Object.assign(receiveData, data);
resetFields();
setFieldsValue({
startSavePoint: receiveData.selected?.path,
});
}
});
const [registerForm, { resetFields, setFieldsValue, validate }] = useForm({
name: 'startApplicationModal',
labelWidth: 120,
schemas: [
{
field: 'startSavePointed',
label: 'from savepoint',
component: 'Switch',
componentProps: {
checkedChildren: 'ON',
unCheckedChildren: 'OFF',
},
defaultValue: true,
afterItem: () =>
h(
'span',
{ class: 'tip-info' },
'restore the application from savepoint or latest checkpoint',
),
},
{
field: 'startSavePoint',
label: 'savepoint',
component:
receiveData.historySavePoint && receiveData.historySavePoint.length > 0
? 'Select'
: 'Input',
afterItem: () =>
h(
'span',
{ class: 'tip-info' },
'restore the application from savepoint or latest checkpoint',
),
slot: 'savepoint',
ifShow: ({ values }) => values.startSavePointed,
required: true,
},
{
field: 'restoreMode',
label: 'restore mode',
component: 'Select',
defaultValue: RestoreModeEnum.NO_CLAIM,
render: (renderCallbackParams) => renderFlinkAppRestoreMode(renderCallbackParams),
ifShow: ({ values }) => values.startSavePointed && checkFlinkVersion(),
},
{
field: 'allowNonRestoredState',
label: 'ignore restored',
component: 'Switch',
componentProps: {
checkedChildren: 'ON',
unCheckedChildren: 'OFF',
},
afterItem: () =>
h('span', { class: 'tip-info' }, 'ignore savepoint then cannot be restored'),
defaultValue: false,
ifShow: ({ values }) => values.startSavePointed,
},
],
colon: true,
showActionButtonGroup: false,
labelCol: { lg: { span: 7, offset: 0 }, sm: { span: 7, offset: 0 } },
wrapperCol: { lg: { span: 16, offset: 0 }, sm: { span: 4, offset: 0 } },
baseColProps: { span: 24 },
});
async function handleSubmit() {
// when then app is building, show forced starting modal
const resp = await fetchCheckStart({
id: receiveData.application.id,
});
if (resp.data.data === AppExistsEnum.IN_YARN) {
await fetchForcedStop({
id: receiveData.application.id,
});
}
await handleDoSubmit();
}
/* submit */
async function handleDoSubmit() {
try {
const formValue = (await validate()) as Recordable;
const savePointed = formValue.startSavePointed;
const savePointPath = savePointed ? formValue['startSavePoint'] : null;
const restoreMode = savePointed ? formValue['restoreMode'] : null;
const { data } = await fetchStart({
id: receiveData.application.id,
restoreMode,
savePointed,
savePoint: savePointPath,
allowNonRestored: formValue.allowNonRestoredState || false,
});
if (data.data) {
Swal.fire({
icon: 'success',
title: 'The current job is starting',
showConfirmButton: false,
timer: 2000,
});
emits('updateOption', {
type: 'starting',
key: receiveData.application.id,
value: new Date().getTime(),
});
closeModal();
} else {
closeModal();
Swal.fire({
title: 'Failed',
icon: 'error',
width: exceptionPropWidth(),
html:
'<pre class="api-exception"> startup failed, ' +
data.message.replaceAll(/\[StreamPark]/g, '') +
'</pre>',
showCancelButton: true,
confirmButtonColor: '#55BDDDFF',
confirmButtonText: 'Detail',
cancelButtonText: 'Close',
}).then((isConfirm: Recordable) => {
if (isConfirm.value) {
router.push({
path: '/flink/app/detail',
query: { appId: receiveData.application.id },
});
}
});
}
} catch (error) {
console.error(error);
}
}
async function checkFlinkVersion() {
const versionId = receiveData.application.versionId;
const flinkVersion = await fetchFlinkEnv(versionId);
return parseInt(flinkVersion.versionOfMiddle) >= 15;
}
</script>
<template>
<BasicModal
@register="registerModal"
:minHeight="100"
@ok="handleSubmit"
:okText="t('common.apply')"
:cancelText="t('common.cancelText')"
>
<template #title>
<SvgIcon name="play" />
{{ t('flink.app.view.start') }}
</template>
<BasicForm @register="registerForm" class="!pt-40px">
<template #savepoint="{ model, field }">
<template v-if="receiveData.historySavePoint && receiveData.historySavePoint.length > 0">
<Select allow-clear v-model:value="model[field]">
<SelectOption v-for="(k, i) in receiveData.historySavePoint" :key="i" :value="k.path">
<span style="color: darkgrey">
<Icon icon="ant-design:clock-circle-outlined" />
{{ k.createTime }}
</span>
<span style="float: left" v-if="k.type === 1">
<tag color="cyan">CP</tag>
</span>
<span style="float: right" v-else>
<tag color="blue">SP</tag>
</span>
<span style="float: right" v-if="k.latest">
<tag color="#2db7f5">latest</tag>
</span>
</SelectOption>
</Select>
</template>
<Input
v-else
type="text"
placeholder="Please enter savepoint manually"
v-model:value="model[field]"
/>
</template>
</BasicForm>
</BasicModal>
</template>