| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- <template>
- <base-dialog @cancel="cancelDialog">
- <div slot="header">{{this.params.title}}</div>
- <div slot="body">
- <dialog-selected-tips :count="params.data.length" :action="this.params.title" :name="$t('storage.text_18')" />
- <dialog-table :data="params.data" :columns="columns" />
- <a-form :form="form.fc" v-bind="formItemLayout">
- <a-form-item :label="$t('storage.text_59')">
- <a-input class="w-50" name="size_bytes" v-decorator="decorators.size_bytes" @blur="handelBlur">
- <a-select slot="addonAfter" style="width: 80px" v-decorator="decorators.size_bytes_unit">
- <a-select-option v-for="item in sizeUnitOpts" :key="item.value" :value="item.value">{{item.label}}</a-select-option>
- </a-select>
- </a-input>
- <span slot="extra">{{$t('storage.text_127')}}</span>
- </a-form-item>
- <a-form-item :label="$t('storage.text_128')">
- <a-input class="w-50" name="object_count" v-decorator="decorators.object_count" @blur="handelBlur">
- <a-select slot="addonAfter" type="number" style="width: 80px" v-decorator="decorators.object_count_unit">
- <a-select-option v-for="item in unitOpts" :key="item.value" :value="item.value">{{item.label}}</a-select-option>
- </a-select>
- </a-input>
- <span slot="extra">{{$t('storage.text_127')}}</span>
- </a-form-item>
- </a-form>
- </div>
- <div slot="footer">
- <a-button type="primary" @click="handleConfirm" :loading="loading">{{ $t("dialog.ok") }}</a-button>
- <a-button @click="cancelDialog">{{ $t('dialog.cancel') }}</a-button>
- </div>
- </base-dialog>
- </template>
- <script>
- import { formItemLayout } from '@Storage/constants/index.js'
- import { sizestrC } from '@/utils/utils'
- import DialogMixin from '@/mixins/dialog'
- import WindowsMixin from '@/mixins/windows'
- export default {
- name: 'BucketUpdateBucketLimitDialog',
- components: {
- },
- mixins: [DialogMixin, WindowsMixin],
- data () {
- return {
- loading: false,
- formItemLayout,
- form: {
- fc: this.$form.createForm(this),
- },
- sizeUnitOpts: [
- { value: Math.pow(1024, 3), label: 'GB' },
- { value: Math.pow(1024, 4), label: 'TB' },
- { value: Math.pow(1024, 5), label: 'PB' },
- { value: Math.pow(1024, 6), label: 'EB' },
- ],
- unitOpts: [
- { value: 1, label: this.$t('storage.text_129') },
- { value: 10, label: this.$t('storage.text_130') },
- { value: 100, label: this.$t('storage.text_131') },
- { value: 1000, label: this.$t('storage.text_132') },
- { value: 10000, label: this.$t('storage.text_133') },
- ],
- }
- },
- provide () {
- return {
- form: this.form,
- }
- },
- computed: {
- columns () {
- return [
- this.params.columns[0],
- {
- field: 'size_bytes_limit',
- title: this.$t('storage.text_134'),
- width: 120,
- formatter: ({ row }) => {
- return sizestrC(row.size_bytes_limit, 'B', 1024)
- },
- },
- {
- field: 'object_cnt_limit',
- title: this.$t('storage.text_135'),
- width: 120,
- formatter: ({ row }) => {
- return row.object_cnt_limit
- },
- },
- ]
- },
- decorators () {
- const { data } = this.params
- // eslint-disable-next-line camelcase
- const { size_bytes_limit = 0, object_cnt_limit = 0 } = data.length === 1 ? data[0] : {}
- return {
- size_bytes: [
- 'size_bytes',
- {
- // eslint-disable-next-line camelcase
- initialValue: Math.round(size_bytes_limit / (1024 * 1024 * 1024)),
- validateFirst: true,
- rules: [
- { required: true, message: this.$t('storage.text_136') },
- ],
- },
- ],
- size_bytes_unit: ['size_bytes_unit', {
- initialValue: Math.pow(1024, 3),
- }],
- object_count: [
- 'object_count',
- {
- initialValue: Math.round(object_cnt_limit),
- validateFirst: true,
- rules: [
- { required: true, message: this.$t('storage.text_137') },
- ],
- },
- ],
- object_count_unit: ['object_count_unit', {
- initialValue: 1,
- }],
- }
- },
- },
- methods: {
- validateForm () {
- return new Promise((resolve, reject) => {
- this.form.fc.validateFields((err, values) => {
- if (err) return reject(err)
- // eslint-disable-next-line camelcase
- const { size_bytes, size_bytes_unit, object_count, object_count_unit } = values
- const limit = {
- size_bytes: parseInt(size_bytes) * parseInt(size_bytes_unit),
- object_count: parseInt(object_count) * parseInt(object_count_unit),
- }
- resolve({
- limit,
- })
- })
- })
- },
- async handleConfirm () {
- this.loading = true
- try {
- const values = await this.validateForm()
- const { data } = this.params
- await this.params.onManager('batchPerformAction', {
- id: data.map(item => item.id),
- steadyStatus: ['ready', 'create_fail', 'deleted', 'delete_fail'],
- managerArgs: {
- action: 'limit',
- data: values,
- },
- })
- this.params.refresh()
- this.cancelDialog()
- } catch (error) {
- this.loading = false
- throw error
- }
- },
- handelBlur ({ target }) {
- const { value, name } = target
- if (!/^\d+$/.test(value)) {
- this.form.fc.setFieldsValue({
- [name]: 0,
- })
- }
- },
- },
- }
- </script>
|