-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathserver-side-sorting.mjs
44 lines (41 loc) · 1.08 KB
/
server-side-sorting.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import { Grid } from '../../dist/main.esm.js'
export default {
name: 'ServerSideSorting',
components: {
Grid
},
data() {
return {
sort: {
multiColumn: false,
server: {
url: (prev, columns) => {
if (!columns.length) return prev
const col = columns[0]
const dir = col.direction === 1 ? 'asc' : 'desc'
let colName = ['name', 'rarity'][col.index]
return `${prev}&order=${colName}&dir=${dir}`
}
}
},
columns: [
'Name',
'Rarity',
{
name: 'Image',
width: '50px',
sort: false,
formatter: img => this.$gridjs.html(`<center><img src='${img}'/></center>`)
}
],
server: {
url: 'https://api.scryfall.com/cards/search?q=Inspiring',
then: data => data.data.map(card => [card.name, card.rarity, card.image_uris.small]),
total: data => data.total_cards
}
}
},
template: `
<div><grid :columns="columns" :server="server" :sort="sort"></grid></div>
`
}