Vue Tables 2 - 自定义过滤器

Vue Tables 2 - Custom filters

我正在尝试将此 https://github.com/matfish2/vue-tables-2 与 Vue 2.1.8 一起使用。

它运行良好,但我需要使用自定义过滤器根据值等设置某些字段的格式。

在选项中我有这个:

customFilters: [
{
  name:'count',
  callback: function(row, query) {
    console.log('see me?'); // Not firing this
    return row.count[0] == query;
}
}
]

文档中说我必须这样做:

Using the event bus:

Event.$emit('vue-tables.filter::count', query);

但是我不知道把它放在哪里?我试了很多地方。例如在我的 axios 成功回调中但没有。

我想这是非常基础的,我应该知道但我不知道。因此,如果有人能告诉我将事件总线工作人员放在哪里,那就太棒了!

文档可以更好地描述这一点。有点难懂。

您需要导入 vue-tables-2 的命名导出 Event,因此您拥有 table 的事件总线并在自定义点击处理程序中发出自定义事件。

在演示中它在全局对象上可用。在 ES6 中,您将按照 import {ServerTable, ClientTable, Event} from 'vue-tables-2';

文档中的描述导入它

请查看下面或此 fiddle 中的字母过滤器演示。

该演示类似于 vue-tables-1 演示 fiddle,您可以找到 here

// Vue.use(VueTables)
const ClientTable = VueTables.ClientTable
const Event = VueTables.Event // import eventbus

console.log(VueTables);
Vue.use(ClientTable)

new Vue({
  el: "#people",
  methods: {
    applyFilter(letter) {
      this.selectedLetter = letter;
      Event.$emit('vue-tables.filter::alphabet', letter);
    }
  },
  data() {
    return {
      letters: ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'],
      selectedLetter: '',
      columns: ['id', 'name', 'age'],
      tableData: [{
        id: 1,
        name: "John",
        age: "20"
      }, {
        id: 2,
        name: "Jane",
        age: "24"
      }, {
        id: 3,
        name: "Susan",
        age: "16"
      }, {
        id: 4,
        name: "Chris",
        age: "55"
      }, {
        id: 5,
        name: "Dan",
        age: "40"
      }],
      options: {
        // see the options API
        customFilters: [{
          name: 'alphabet',
          callback: function(row, query) {
            return row.name[0] == query;
          }
        }]
      }
    }
  }
});
#people {
  text-align: center;
  width: 95%;
  margin: 0 auto;
}
h2 {
  margin-bottom: 30px;
}
th,
td {
  text-align: left;
}
th:nth-child(n+2),
td:nth-child(n+2) {
  text-align: center;
}
thead tr:nth-child(2) th {
  font-weight: normal;
}
.VueTables__sort-icon {
  margin-left: 10px;
}
.VueTables__dropdown-pagination {
  margin-left: 10px;
}
.VueTables__highlight {
  background: yellow;
  font-weight: normal;
}
.VueTables__sortable {
  cursor: pointer;
}
.VueTables__date-filter {
  border: 1px solid #ccc;
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
}
.VueTables__filter-placeholder {
  color: #aaa;
}
.VueTables__list-filter {
  width: 120px;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.1.10/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vue-tables-2@1.4.70/dist/vue-tables-2.min.js"></script>
<div id="people">
  <button @click="applyFilter(letter)" class="btn btn-default" v-for="letter in letters" :class="{active: letter==selectedLetter}">
    {{letter}}
  </button>
  <button  class="btn btn-default" @click="applyFilter('')">
  clear
  </button>
  <v-client-table :data="tableData" :columns="columns" :options="options"></v-client-table>
</div>

我发现这节课对我帮助最大。 https://github.com/ratiw/vuetable-2-tutorial/wiki/lesson-13

总结: 您应该使用 vue-events 包发出事件或使用 Vuex 计算属性(推荐)。 你想在 vuetable 上使用 :append-params="moreParams",这是 vuetable2 的一个特性,它将附加到 api-url 以及分页值(与这些参数分开)。 我正在使用 Vuex,所以我将 moreParams 设为 vuetable 的计算 属性。它使用 this.$store.getters.moreParams 这是我的 Vuex getter 因为我有多个搜索字段。这是对来自输入字段处理程序的 Vuex 提交的反应。

    computed: {
      moreParams() {
        return this.$store.getters.moreParams
      },
    },

否则你可以使用 $store.stage.property。我在 moreParams 上有一个手表,它使用新查询刷新 table:

    watch: {
      moreParams(newVal, oldVal) {
        this.$nextTick(() => {
          this.$refs.vuetable.refresh()
        })
      },
    },

隐藏默认过滤器和每页选择框并定义一个新过滤器'manual_agent'。

        optionsTable: {
            customFilters: ['manual_agent'],
            filterable: false,
            perPageValues: []
        },

隐藏是因为没有 'slot' 选项可以在默认过滤器和每页 select 之间添加新的自定义过滤器,而且默认过滤器也没有太多响应。以下示例用于服务器 table 实施。

全局用于自定义过滤器的方法:

toggleFilter: function(filterName, $event) {
                this.$refs.serverTableRef.setPage(1);
                setTimeout(function () {
                    let searchItem = '';
                    if (typeof $event === 'string') { searchItem = $event; } else { searchItem = $event.target.value; }
                    let table = this.$refs.serverTableRef;
                    table.customQueries[filterName] = searchItem;
                    table.getData();
                }.bind(this), 1000);
            }

为此,我们必须在我们的 v-server table 上定义 ref 名称,如下所示:

<v-server-table ref="serverTableRef"

现在在模板中新自定义 selectbox 过滤器(v-model 仅指向数据中定义的自定义变量)

<select name="typeoftrip" v-model="agentFilter" @change="toggleFilter('manual_agent', agentFilter)">

自定义过滤器将取代我们通过禁用它而丢失的默认过滤器。 (它使用了 'query' 名称,所以我们使用相同的名称)

<input name="typeoftrip" v-model="mainQuery" v-on:keyup="toggleFilter('query', mainQuery)">

以及我们自己每页的新自定义 select select

            <select v-model="limitFilter"  @change="$refs.serverTableRef.setLimit($event.target.value)" >
                <option value="10">10</option>
                <option value="25">25</option>
                <option value="50">50</option>
            </select>

Updated working fiddle 给任何想玩的人。我仍然不确定如何使其与嵌套的单页组件一起使用。

customFilters: [{
  name: 'alphabet',
  callback: function(row, query) {
    return row.name[0] == query;
  }
}]