mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
143 lines
4.4 KiB
JavaScript
143 lines
4.4 KiB
JavaScript
// 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
|
|
//
|
|
// http://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.
|
|
|
|
import _ from 'lodash'
|
|
import i18n from '@/locales'
|
|
import { api } from '@/api'
|
|
import { message, notification } from 'ant-design-vue'
|
|
|
|
export const pollJobPlugin = {
|
|
install (Vue) {
|
|
Vue.prototype.$pollJob = function (options) {
|
|
/**
|
|
* @param {String} jobId
|
|
* @param {String} [name='']
|
|
* @param {String} [successMessage=Success]
|
|
* @param {Function} [successMethod=() => {}]
|
|
* @param {String} [errorMessage=Error]
|
|
* @param {Function} [errorMethod=() => {}]
|
|
* @param {String} [loadingMessage=Loading...]
|
|
* @param {String} [catchMessage=Error caught]
|
|
* @param {Function} [catchMethod=() => {}]
|
|
* @param {Object} [action=null]
|
|
*/
|
|
const {
|
|
jobId,
|
|
name = '',
|
|
successMessage = i18n.t('label.success'),
|
|
successMethod = () => {},
|
|
errorMessage = i18n.t('label.error'),
|
|
errorMethod = () => {},
|
|
loadingMessage = `${i18n.t('label.loading')}...`,
|
|
catchMessage = i18n.t('label.error.caught'),
|
|
catchMethod = () => {},
|
|
action = null
|
|
} = options
|
|
|
|
api('queryAsyncJobResult', { jobId }).then(json => {
|
|
const result = json.queryasyncjobresultresponse
|
|
if (result.jobstatus === 1) {
|
|
var content = successMessage
|
|
if (successMessage === 'Success' && action && action.label) {
|
|
content = i18n.t(action.label)
|
|
}
|
|
if (name) {
|
|
content = content + ' - ' + name
|
|
}
|
|
message.success({
|
|
content: content,
|
|
key: jobId,
|
|
duration: 2
|
|
})
|
|
successMethod(result)
|
|
} else if (result.jobstatus === 2) {
|
|
message.error({
|
|
content: errorMessage,
|
|
key: jobId,
|
|
duration: 1
|
|
})
|
|
var title = errorMessage
|
|
if (action && action.label) {
|
|
title = i18n.t(action.label)
|
|
}
|
|
var desc = result.jobresult.errortext
|
|
if (name) {
|
|
desc = `(${name}) ${desc}`
|
|
}
|
|
notification.error({
|
|
message: title,
|
|
description: desc,
|
|
key: jobId,
|
|
duration: 0
|
|
})
|
|
errorMethod(result)
|
|
} else if (result.jobstatus === 0) {
|
|
message.loading({
|
|
content: loadingMessage,
|
|
key: jobId,
|
|
duration: 0
|
|
})
|
|
setTimeout(() => {
|
|
this.$pollJob(options, action)
|
|
}, 3000)
|
|
}
|
|
}).catch(e => {
|
|
console.error(`${catchMessage} - ${e}`)
|
|
notification.error({
|
|
message: i18n.t('label.error'),
|
|
description: catchMessage,
|
|
duration: 0
|
|
})
|
|
catchMethod && catchMethod()
|
|
})
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
export const notifierPlugin = {
|
|
install (Vue) {
|
|
Vue.prototype.$notifyError = function (error) {
|
|
console.log(error)
|
|
var msg = i18n.t('message.request.failed')
|
|
var desc = ''
|
|
if (error && error.response) {
|
|
if (error.response.status) {
|
|
msg = `${i18n.t('message.request.failed')} (${error.response.status})`
|
|
}
|
|
if (error.message) {
|
|
desc = error.message
|
|
}
|
|
if (error.response.headers && 'x-description' in error.response.headers) {
|
|
desc = error.response.headers['x-description']
|
|
}
|
|
if (desc === '' && error.response.data) {
|
|
const responseKey = _.findKey(error.response.data, 'errortext')
|
|
if (responseKey) {
|
|
desc = error.response.data[responseKey].errortext
|
|
}
|
|
}
|
|
}
|
|
notification.error({
|
|
message: msg,
|
|
description: desc,
|
|
duration: 0
|
|
})
|
|
}
|
|
}
|
|
}
|