Skip to content
代码片段 群组 项目
ZclClusterManager.vue 7.0 KB
更新 更旧
<!--
Copyright (c) 2008,2020 Silicon Labs.

Licensed 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.
-->

<template>
  <div v-if="selectedEndpointTypeId.length != 0" class="window-height">
    <div class="row">
      <q-toolbar>
        <q-toolbar-title style="font-weight: bolder">
          <span class="v-step-6"
            >Endpoint
            {{ this.endpointId[this.selectedEndpointId] }} Clusters</span
          >
        </q-toolbar-title>
      </q-toolbar>
    </div>
    <div class="row bar align=left section-header">
      <div class="row">
        <div
          style="
            vertical-align: middle;
            text-align: center;
            padding: 10px 0 0 0;
          "
        >
          Show
        &nbsp; &nbsp;
        <div class="v-step-7">
          <q-select
            outlined
            :model-value="filter"
            :options="filterOptions"
            dense
            class="col-2"
            @update:model-value="changeDomainFilter($event)"
            data-test="filter-input"
          />
        </div>
        &nbsp;
        <div v-for="actionOption in actionOptions" :key="actionOption.label">
          <q-btn
            class="full-height"
            outline
            @click="doActionFilter(actionOption)"
            :label="actionOption.label"
          />
        </div>
      </div>
      <q-space />
      <q-input
        dense
        outlined
        clearable
        class="col-4"
        placeholder="Search Clusters"
        @update:model-value="changeFilterString($event)"
        @clear="changeFilterString('')"
        :model-value="filterString"
        data-test="search-clusters"
      >
        <template v-slot:prepend>
          <q-icon name="search" />
        </template>
      </q-input>
    </div>
    <q-scroll-area style="" class="fit q-px-md">
      <q-list style="padding-bottom: 250px">
        <div v-for="(domainName, index) in domainNames" :key="domainName.id">
          <div v-show="clusterDomains(domainName).length > 0">
            <q-expansion-item
              :id="domainName"
              switch-toggle-side
              :label="domainName"
              :ref="domainName + index"
              @update:model-value="setOpenDomain(domainName, $event)"
              :model-value="getDomainOpenState(domainName)"
              data-test="Cluster"
              <zcl-domain-cluster-view
                :domainName="domainName"
                :clusters="clusterDomains(domainName)"
            </q-expansion-item>
            <q-separator />
import ZclDomainClusterView from './ZclDomainClusterView.vue'
import CommonMixin from '../util/common-mixin'
const { getScrollTarget, setVerticalScrollPosition } = scroll
export default {
  name: 'ZclClusterManager',
  props: ['endpointTypeReference'],
  mixins: [CommonMixin],
  mounted() {
    if (this.domainNames.length > 0 && this.lastSelectedDomain) {
      this.scrollToElementById(this.lastSelectedDomain)
    }
sahar kargar's avatar
sahar kargar 已提交
    this.changeDomainFilter(this.filter)
sahar kargar's avatar
sahar kargar 已提交
  watch: {
    enabledClusters() {
sahar kargar's avatar
sahar kargar 已提交
      this.changeDomainFilter(this.filter)
    },
    expanded() {
      this.$refs[this.$store.state.zap.domains[0] + 0][0].show()
    },
    domainNames: {
    openDomains: {
      get() {
        return this.$store.state.zap.clusterManager.openDomains
      },
    },
    clusters: {
      get() {
        return this.$store.state.zap.clusters
      },
    },
    lastSelectedDomain: {
      get() {
        return this.$store.state.zap.clusterManager.lastSelectedDomain
      },
    },
        return this.clusters.filter((cluster) =>
          this.filterString == ''
            ? true
            : cluster.label
                .toLowerCase()
                .includes(this.filterString.toLowerCase())
        )
      },
    },
    enabledClusters: {
      get() {
        return this.relevantClusters.filter((cluster) => {
          return this.isClusterEnabled(cluster.id)
        })
    filterOptions: {
      get() {
        return this.$store.state.zap.clusterManager.filterOptions
      },
    },
    filter: {
      get() {
        return this.$store.state.zap.clusterManager.filter
      },
    },
    filterString: {
      get() {
        return this.$store.state.zap.clusterManager.filterString
      },
    },
    actionOptions: {
      get() {
        return this.$store.state.zap.clusterManager.actionOptions
      },
    },
    isTutorialRunning: {
      get() {
        return this.$store.state.zap.isTutorialRunning
      },
    },
    expanded: {
      get() {
        return this.$store.state.zap.expanded
      },
    },
  },
  methods: {
    scrollToElementById(tag) {
      const el = document.getElementById(tag)
      const target = getScrollTarget(el)
      const offset = el.offsetTop
      setVerticalScrollPosition(target, offset)
    clusterDomains(domainName) {
        .filter((a) => {
          return a.domainName == domainName
        })
        .filter((a) => {
          return typeof this.filter.clusterFilterFn === 'function'
            ? this.filter.clusterFilterFn(a, {
                enabledClusters: this.enabledClusters,
              })
            : true
        })
        .sort(function (b, a) {
          return a.code > b.code
        })
    },
    isClusterEnabled(clusterReference) {
      return (
        this.selectionClients.includes(clusterReference) ||
        this.selectionServers.includes(clusterReference)
      )
    },
    setOpenDomain(domainName, event) {
      this.$store.dispatch('zap/setOpenDomain', {
        domainName: domainName,
        value: event,
      })
    },
      return this.openDomains[domainName] || this.filterString != ''
    changeDomainFilter(filter) {
      this.$store.dispatch('zap/setDomainFilter', {
        filter: filter,
        enabledClusters: this.enabledClusters,
      })
    doActionFilter(filter) {
      this.$store.dispatch('zap/doActionFilter', {
        filter: filter,
        enabledClusters: this.enabledClusters,
      })
    },
    changeFilterString(filterString) {
      this.$store.dispatch('zap/setFilterString', filterString)
    },
  components: {
    ZclDomainClusterView,
  },
}
</script>

<!-- Notice lang="scss" -->
<style lang="scss">
.bar {
  padding: 15px 15px 15px 15px;
}
</style>