| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331 |
- <template>
- <page-list
- show-tag-columns
- show-tag-filter
- :list="list"
- :columns="templateListColumns || columns"
- :group-actions="groupActions"
- :single-actions="singleActions"
- :export-data-options="exportDataOptions"
- :showSearchbox="showSearchbox"
- :defaultSearchKey="defaultSearchKey"
- :showGroupActions="showGroupActions"
- :show-single-actions="!isTemplate"
- :show-page="!isTemplate" />
- </template>
- <script>
- import * as R from 'ramda'
- import { getNameFilter, getStatusFilter, getEnabledFilter, getProjectDomainFilter, getDescriptionFilter, getCreatedAtFilter } from '@/utils/common/tableFilter'
- import expectStatus from '@/constants/expectStatus'
- import WindowsMixin from '@/mixins/windows'
- import GlobalSearchMixin from '@/mixins/globalSearch'
- import ListMixin from '@/mixins/list'
- import ResTemplateListMixin from '@/mixins/resTemplateList'
- import { getDomainChangeOwnerAction, getSetPublicAction, getEnabledSwitchActions } from '@/utils/common/tableActions'
- import { hasServices } from '@/utils/auth'
- import regexp from '@/utils/regexp'
- import ColumnsMixin from '../mixins/columns'
- import SingleActionsMixin from '../mixins/singleActions'
- import { canIpmiProbe } from '../utils/status'
- import { hostCommonActions } from '../../../utils/hostActions'
- export default {
- name: 'PhysicalmachineList',
- mixins: [WindowsMixin, ListMixin, GlobalSearchMixin, ColumnsMixin, SingleActionsMixin, ResTemplateListMixin],
- props: {
- id: String,
- getParams: {
- type: [Function, Object],
- },
- },
- data () {
- return {
- list: this.$list.createList(this, {
- ctx: this,
- id: this.id,
- resource: 'hosts',
- getParams: this.getParam,
- isTemplate: this.isTemplate,
- templateLimit: this.templateLimit,
- steadyStatus: {
- status: Object.values(expectStatus.host).flat(),
- },
- filterOptions: {
- id: {
- label: this.$t('table.title.id'),
- },
- name: getNameFilter(),
- description: getDescriptionFilter(),
- status: getStatusFilter('host'),
- enabled: getEnabledFilter(),
- sn: {
- label: 'SN',
- distinctField: {
- type: 'extra_field',
- key: 'sn',
- },
- },
- any_mac: {
- label: 'MAC',
- },
- any_ip: {
- label: 'IP',
- },
- access_ip: {
- label: this.$t('compute.text_503'),
- filter: true,
- formatter: val => {
- return `access_ip.contains("${val}")`
- },
- },
- ipmi_ip: {
- label: this.$t('compute.text_504'),
- filter: true,
- formatter: val => {
- return `ipmi_ip.contains("${val}")`
- },
- },
- is_maintenance: {
- label: this.$t('compute.text_820'),
- dropdown: true,
- items: [
- { label: this.$t('compute.text_820'), key: true },
- { label: this.$t('compute.text_821'), key: false },
- ],
- },
- project_domain: getProjectDomainFilter(),
- region: {
- label: this.$t('compute.text_177'),
- },
- zone: {
- label: this.$t('compute.text_270'),
- },
- created_at: getCreatedAtFilter(),
- },
- responseData: this.responseData,
- hiddenColumns: ['metadata', 'access_mac', 'sn', 'public_scope', 'project_domain', 'region', 'created_at'],
- fetchDataCb: (res) => {
- const { totals = {} } = res.data
- this.$emit('resStatisticsChange', totals)
- },
- }),
- exportDataOptions: {
- items: [
- { label: 'ID', key: 'id' },
- { label: this.$t('compute.text_228'), key: 'name' },
- { label: this.$t('compute.text_241'), key: 'enabled' },
- { label: this.$t('compute.text_268'), key: 'status' },
- { label: this.$t('compute.text_503'), key: 'access_ip' },
- { label: this.$t('compute.text_504'), key: 'ipmi_ip' },
- { label: this.$t('compute.text_847'), key: 'sys_info.manufacture' },
- { label: this.$t('compute.text_580'), key: 'sys_info.model' },
- { label: 'SN', key: 'sn' },
- { label: this.$t('compute.text_602'), key: 'server' },
- { label: this.$t('compute.text_820'), key: 'is_maintenance' },
- { label: this.$t('compute.text_177'), key: 'region' },
- { label: this.$t('compute.text_270'), key: 'zone' },
- {
- label: this.$t('compute.text_505'),
- key: 'public_scope',
- hidden: () => {
- return !this.$store.getters.l3PermissionEnable && (this.$store.getters.scopeResource && this.$store.getters.scopeResource.domain.includes('cloudaccounts'))
- },
- },
- { label: this.$t('compute.text_506', [this.$t('dictionary.domain')]), key: 'project_domain' },
- { label: this.$t('common.createdAt'), key: 'created_at' },
- ],
- },
- }
- },
- computed: {
- groupActions () {
- return [
- {
- label: this.$t('compute.text_822'),
- permission: 'hosts_create',
- action: () => {
- this.$router.push('/physicalmachine/add')
- },
- meta: () => {
- const ret = { validate: true, tooltip: '' }
- const hasBMAgent = hasServices('bmagent')
- if (!hasBMAgent) {
- ret.validate = false
- ret.tooltip = this.$t('compute.text_1334')
- }
- return {
- buttonType: 'primary',
- ...ret,
- }
- },
- },
- ...getEnabledSwitchActions(this, undefined, ['hosts_perform_enable', 'hosts_perform_disable']),
- {
- label: this.$t('compute.text_275'),
- actions: (obj) => {
- return [
- ...hostCommonActions(this),
- getDomainChangeOwnerAction(this, {
- name: this.$t('dictionary.host'),
- resource: 'hosts',
- }, {
- permission: 'hosts_perform_change_owner',
- }),
- getSetPublicAction(this, {
- name: this.$t('dictionary.host'),
- scope: 'domain',
- resource: 'hosts',
- }, {
- permission: 'hosts_perform_public',
- }),
- {
- label: this.$t('compute.host_ipmi_probe'),
- permission: 'hosts_perform_ipmi_probe',
- action: () => {
- this.list.batchPerformAction('ipmi-probe', null, this.list.steadyStatus)
- },
- meta: () => {
- if (this.list.selectedItems.length <= 0) {
- return {
- validate: false,
- }
- }
- for (let i = 0; i < this.list.selectedItems.length; i++) {
- const obj = this.list.selectedItems[i]
- if (!canIpmiProbe(obj)) {
- return {
- validate: false,
- }
- }
- }
- return {
- validate: true,
- }
- },
- },
- {
- label: this.$t('compute.host_prepare'),
- permission: 'hosts_perform_prepare',
- action: () => {
- this.list.batchPerformAction('prepare', null, this.list.steadyStatus)
- },
- meta: () => {
- if (this.list.selectedItems.length <= 0) {
- return {
- validate: false,
- }
- }
- for (let i = 0; i < this.list.selectedItems.length; i++) {
- const obj = this.list.selectedItems[i]
- if (!obj.can_prepare) {
- return {
- validate: false,
- }
- }
- }
- return {
- validate: true,
- }
- },
- },
- {
- label: this.$t('compute.text_541'),
- permission: 'hosts_perform_set_schedtag',
- action: (obj) => {
- this.createDialog('HostsAdjustLabelDialog', {
- data: this.list.selectedItems,
- columns: this.columns,
- name: this.$t('dictionary.physicalmachine'),
- })
- },
- meta: () => ({
- validate: this.list.selectedItems.length,
- }),
- },
- {
- label: this.$t('compute.text_283'),
- permission: 'hosts_perform_set_user_metadata',
- action: () => {
- this.createDialog('SetTagDialog', {
- data: this.list.selectedItems,
- columns: this.columns,
- onManager: this.onManager,
- params: {
- resources: 'host',
- },
- mode: 'add',
- })
- },
- meta: () => this.$isOwner(this.list.selectedItems),
- },
- {
- label: this.$t('compute.perform_delete'),
- permission: 'hosts_delete',
- action: () => {
- this.createDialog('DeleteResDialog', {
- vm: this,
- data: this.list.selectedItems,
- columns: this.columns,
- title: this.$t('compute.perform_delete'),
- onManager: this.onManager,
- })
- },
- meta: () => ({
- validate: this.$getDeleteResult(this.list.selectedItems).validate,
- tooltip: this.$getDeleteResult(this.list.selectedItems).validate ? '' : this.$t('compute.text_826'),
- }),
- },
- ]
- },
- meta: () => {
- return {
- validate: this.list.selected.length,
- }
- },
- },
- ]
- },
- },
- watch: {
- 'list.filter' (val) {
- this.$bus.$emit('ServerFilterChange', val)
- },
- },
- created () {
- this.initSidePageTab('physicalmachine-detail')
- this.list.fetchData()
- },
- methods: {
- getParam () {
- const ret = {
- ...(R.is(Function, this.getParams) ? this.getParams() : this.getParams),
- with_meta: true,
- }
- if (this.cloudEnv) ret.cloud_env = this.cloudEnv
- return ret
- },
- handleOpenSidepage (row, tab) {
- this.sidePageTriggerHandle(this, 'PhysicalmachineSidePage', {
- id: row.id,
- resource: 'hosts',
- getParams: this.getParam,
- steadyStatus: {
- status: Object.values(expectStatus.host).flat(),
- },
- }, {
- list: this.list,
- tab,
- })
- },
- defaultSearchKey (search) {
- if (regexp.isIPv4(search)) {
- return 'any_ip'
- }
- if (regexp.isMAC(search)) {
- return 'any_mac'
- }
- },
- },
- }
- </script>
|