私はこれを使用しようとしています https://github.com/matfish2/vue-tables-2 with 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
をインポートする必要があるため、テーブルのイベントバスがあり、カスタムクリックハンドラーでカスタムイベントを発行します。
デモでは、グローバルオブジェクトで使用できます。 ES6では、ドキュメントの説明に従ってimport {ServerTable, ClientTable, Event} from 'vue-tables-2';
を使用してインポートします
以下またはこの fiddle のアルファベットフィルターのデモをご覧ください。
デモは、 こちら にあるvue-tables-1デモのフィドルに似ています。
// 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/[email protected]/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-1
概要:vue-events
パッケージでイベントを発行するか、Vuexでプロパティを計算する必要があります(推奨)。 vuetable2の機能であるvuetableで:append-params="moreParams"
を使用します。これは、ページング値(これらのパラメーターとは別)とともにapi-url
に追加されます。私はVuexを使用しているので、moreParamsをvuetableの計算されたプロパティにします。複数の検索フィールドがあるので、Vuexゲッターであるthis.$store.getters.moreParams
を使用します。これは、入力フィールドハンドラーからのVuexコミットに反応します。
computed: {
moreParams() {
return this.$store.getters.moreParams
},
},
それ以外の場合は、$ store.stage.propertyを使用できます。新しいクエリでテーブルを更新するmoreParamsを監視しています。
watch: {
moreParams(newVal, oldVal) {
this.$nextTick(() => {
this.$refs.vuetable.refresh()
})
},
},
デフォルトのフィルターとページごとのseletboxを非表示にし、1つの新しいフィルター 'manual_agent'を定義します。
optionsTable: {
customFilters: ['manual_agent'],
filterable: false,
perPageValues: []
},
デフォルトのフィルターとページごとの選択の間に新しいカスタムフィルターを追加できる「スロット」オプションがないため、非表示になり、デフォルトのフィルターもあまり反応しません。以下の例は、サーバーテーブルの実装です。
カスタムフィルターにグローバルに使用される方法:
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テーブルに参照名を定義する必要があります。
<v-server-table ref="serverTableRef"
テンプレートの新しいカスタムselectboxフィルターになりました(v-modelはデータで定義されたカスタム変数をポイントするだけです)
<select name="typeoftrip" v-model="agentFilter" @change="toggleFilter('manual_agent', agentFilter)">
そして、それを無効にすることで失ったデフォルトのフィルターを置き換えるカスタムフィルター。 (「クエリ」名を使用したため、同じ名前を使用しています)
<input name="typeoftrip" v-model="mainQuery" v-on:keyup="toggleFilter('query', mainQuery)">
そして、私たち自身のページごとの選択のための新しいカスタム選択
<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>