|
| 1 | +// Licensed to the Apache Software Foundation (ASF) under one |
| 2 | +// or more contributor license agreements. See the NOTICE file |
| 3 | +// distributed with this work for additional information |
| 4 | +// regarding copyright ownership. The ASF licenses this file |
| 5 | +// to you under the Apache License, Version 2.0 (the |
| 6 | +// "License"); you may not use this file except in compliance |
| 7 | +// with the License. You may obtain a copy of the License at |
| 8 | +// |
| 9 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +// |
| 11 | +// Unless required by applicable law or agreed to in writing, |
| 12 | +// software distributed under the License is distributed on an |
| 13 | +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 14 | +// KIND, either express or implied. See the License for the |
| 15 | +// specific language governing permissions and limitations |
| 16 | +// under the License. |
| 17 | + |
| 18 | +import store from '@/store' |
| 19 | + |
| 20 | +export default { |
| 21 | + name: 'imagecachestore', |
| 22 | + title: 'label.secondary.staging.storage', |
| 23 | + icon: 'file-image-outlined', |
| 24 | + docHelp: 'adminguide/storage.html#secondary-storage', |
| 25 | + permission: ['listSecondaryStagingStores'], |
| 26 | + searchFilters: ['name', 'zoneid', 'provider'], |
| 27 | + hidden: true, |
| 28 | + columns: () => { |
| 29 | + var fields = ['name', 'url', 'protocol', 'scope', 'zonename'] |
| 30 | + if (store.getters.apis.listSecondaryStagingStores.params.filter(x => x.name === 'readonly').length > 0) { |
| 31 | + fields.push({ |
| 32 | + field: 'readonly', |
| 33 | + customTitle: 'access' |
| 34 | + }) |
| 35 | + } |
| 36 | + return fields |
| 37 | + }, |
| 38 | + details: () => { |
| 39 | + var fields = ['name', 'id', 'url', 'protocol', 'provider', 'scope', 'zonename'] |
| 40 | + if (store.getters.apis.listSecondaryStagingStores.params.filter(x => x.name === 'readonly').length > 0) { |
| 41 | + fields.push('readonly') |
| 42 | + } |
| 43 | + return fields |
| 44 | + }, |
| 45 | + resourceType: 'SecondaryStagingStorage', |
| 46 | + actions: [ |
| 47 | + { |
| 48 | + api: 'createSecondaryStagingStore', |
| 49 | + icon: 'plus-outlined', |
| 50 | + docHelp: 'installguide/configuration.html#add-secondary-storage', |
| 51 | + label: 'label.add.secondary.staging.storage', |
| 52 | + listView: true, |
| 53 | + args: ['url', 'zoneid', 'scope', 'provider'] |
| 54 | + }, |
| 55 | + { |
| 56 | + api: 'deleteSecondaryStagingStore', |
| 57 | + icon: 'delete-outlined', |
| 58 | + label: 'label.action.delete.secondary.staging.storage', |
| 59 | + message: 'message.action.delete.secondary.staging.storage', |
| 60 | + dataView: true, |
| 61 | + displayName: (record) => { return record.name || record.displayName || record.id } |
| 62 | + } |
| 63 | + ] |
| 64 | +} |
0 commit comments