fixes api

This commit is contained in:
2019-10-29 15:12:56 +01:00
parent 1f2a940968
commit 089aaf9a6d
2 changed files with 13 additions and 3 deletions

View File

@@ -1,6 +1,7 @@
<template>
<PlayerView
:id="player_id"
:players="playersId"
v-slot="{ player, loot, notifications, actions, claims }"
>
<main id="app" class="container">
@@ -142,7 +143,7 @@ export default {
api.fetch("items", "GET", null),
])
.then(([players, loot, items]) => {
this.playerList = players.value;
this.$set(this, 'playerList', players.value);
this.groupLoot = loot.value;
this.itemsInventory = items.value;
})
@@ -177,6 +178,7 @@ export default {
showPlayerChest () { return this.activeView == 'player' },
isAdding () { return this.activeView == 'adding' },
playerIsGroup () { return this.player_id == 0 },
playersId () { return this.playerList.map(p => p.id).filter(i => i != 0); }
}
}
</script>

View File

@@ -1,7 +1,7 @@
import { api } from '../lootalot.js'
export default {
props: ["id"],
props: ["id", "players"],
data () { return {
player: {
name: "Loading",
@@ -76,7 +76,15 @@ export default {
putClaim (itemId) { this.call("claims", "PUT", itemId) },
withdrawClaim (itemId) { this.call("claims", "DELETE", itemId) },
buyItems(items) { this.call("loot", "PUT", items) },
sellItems (items) { this.call("loot", "DELETE", { items, global_mod: null, players: null }) },
sellItems (items) {
let players;
if (this.player.id == 0) {
players = this.players;
} else {
players = null;
}
this.call("loot", "DELETE", { items, global_mod: null, players })
},
undoLastAction () { this.call("events/last", "DELETE", null) },
},
watch: {