|
@ -88,10 +88,10 @@ |
|
|
<p class="profile-text" style="text-align: right; cursor: pointer;" v-if="this.player['play_on'] !== null && 'ip' in this.player['play_on']" v-on:click="showIP()">IP : {{player_ip}}</p> |
|
|
<p class="profile-text" style="text-align: right; cursor: pointer;" v-if="this.player['play_on'] !== null && 'ip' in this.player['play_on']" v-on:click="showIP()">IP : {{player_ip}}</p> |
|
|
<p class="profile-text" style="text-align: right; cursor: pointer;" v-if="this.player['play_on'] !== null && 'country' in this.player['play_on']">Страна : {{this.player['play_on']['country']}}</p> |
|
|
<p class="profile-text" style="text-align: right; cursor: pointer;" v-if="this.player['play_on'] !== null && 'country' in this.player['play_on']">Страна : {{this.player['play_on']['country']}}</p> |
|
|
<p class="profile-text clickable" style="text-align: right" v-on:click="loadKillFeed()">К\Д : {{this.killfeed.loading?'Загрузка...':this.killfeed.loaded?Math.round(this.killfeed.store['kills'] / this.killfeed.store['deads']):"Показать"}}</p> |
|
|
<p class="profile-text clickable" style="text-align: right" v-on:click="loadKillFeed()">К\Д : {{this.killfeed.loading?'Загрузка...':this.killfeed.loaded?Math.round(this.killfeed.store['kills'] / this.killfeed.store['deads']):"Показать"}}</p> |
|
|
<p class="profile-text clickable" style="text-align: right" v-if="this.killfeed.store !== null && 'kills' in this.killfeed.store" v-on:click="$refs.pc_mkd.showMe(true, player['steamids']['steam64'], undefined, 0)">Убийств : {{this.killfeed.store['kills']}}</p> |
|
|
<p class="profile-text clickable" style="text-align: right" v-if="this.killfeed.store !== null && 'kills' in this.killfeed.store" v-on:click="$refs.pc_mkd.showMe(true, player['steamids']['steam64'], undefined, 0)">Убийств : {{this.killfeed.store['kills']}}{{this.killfeed_current.store!=null?'/'+this.killfeed_current.store['kills']:''}}</p> |
|
|
<p class="profile-text clickable" style="text-align: right" v-if="this.killfeed.store !== null && 'assists' in this.killfeed.store" v-on:click="$refs.pc_mkd.showMe(true, player['steamids']['steam64'], undefined, 2)">Помощи : {{this.killfeed.store['assists']}}</p> |
|
|
<p class="profile-text clickable" style="text-align: right" v-if="this.killfeed.store !== null && 'assists' in this.killfeed.store" v-on:click="$refs.pc_mkd.showMe(true, player['steamids']['steam64'], undefined, 2)">Помощи : {{this.killfeed.store['assists']}}{{this.killfeed_current.store!=null?'/'+this.killfeed_current.store['assists']:''}}</p> |
|
|
<p class="profile-text clickable" style="text-align: right" v-if="this.killfeed.store !== null && 'deads' in this.killfeed.store" v-on:click="$refs.pc_mkd.showMe(true, player['steamids']['steam64'], undefined, 1)">Смертей : {{this.killfeed.store['deads']}}</p> |
|
|
<p class="profile-text clickable" style="text-align: right" v-if="this.killfeed.store !== null && 'deads' in this.killfeed.store" v-on:click="$refs.pc_mkd.showMe(true, player['steamids']['steam64'], undefined, 1)">Смертей : {{this.killfeed.store['deads']}}{{this.killfeed_current.store!=null?'/'+this.killfeed_current.store['deads']:''}}</p> |
|
|
<p class="profile-text" style="text-align: right" v-if="this.killfeed.store !== null && 'suicides' in this.killfeed.store">Суицидов : {{this.killfeed.store['suicides']}}</p> |
|
|
<p class="profile-text" style="text-align: right" v-if="this.killfeed.store !== null && 'suicides' in this.killfeed.store">Суицидов : {{this.killfeed.store['suicides']}}{{this.killfeed_current.store!=null?'/'+this.killfeed_current.store['suicides']:''}}</p> |
|
|
<MyKillsDialog ref="pc_mkd"/> |
|
|
<MyKillsDialog ref="pc_mkd"/> |
|
|
<MessagesDialog ref="pc_md"/> |
|
|
<MessagesDialog ref="pc_md"/> |
|
|
<p class="profile-text clickable" style="text-align: right" v-if="'messages' in this.player" v-on:click="$refs.pc_md.showMe(true, player['steamids']['steam64'])">Сообщений : {{this.player['messages']}}</p> |
|
|
<p class="profile-text clickable" style="text-align: right" v-if="'messages' in this.player" v-on:click="$refs.pc_md.showMe(true, player['steamids']['steam64'])">Сообщений : {{this.player['messages']}}</p> |
|
@ -160,6 +160,11 @@ export default { |
|
|
loading: false, |
|
|
loading: false, |
|
|
loaded: false, |
|
|
loaded: false, |
|
|
store:null |
|
|
store:null |
|
|
|
|
|
}, |
|
|
|
|
|
killfeed_current: { |
|
|
|
|
|
loading: false, |
|
|
|
|
|
loaded: false, |
|
|
|
|
|
store:null |
|
|
} |
|
|
} |
|
|
}), |
|
|
}), |
|
|
methods: { |
|
|
methods: { |
|
@ -246,15 +251,18 @@ export default { |
|
|
.finally(() => this.altaccount.loading = false) |
|
|
.finally(() => this.altaccount.loading = false) |
|
|
}, |
|
|
}, |
|
|
loadKillFeed(){ |
|
|
loadKillFeed(){ |
|
|
if (this.killfeed.store == null && this.killfeed.loading === false) { |
|
|
if (this.killfeed.loading === false) { |
|
|
this.killfeed.loading = true; |
|
|
this.killfeed.loading = true; |
|
|
|
|
|
this.killfeed_current.loading = true; |
|
|
axios.get(`api/profile/web?steam64=${this.player['steamids']['steam64']}&requests=killfeed` + Random.getRndWebAppend()) |
|
|
axios.get(`api/profile/web?steam64=${this.player['steamids']['steam64']}&requests=killfeed` + Random.getRndWebAppend()) |
|
|
.then(response => { |
|
|
.then(response => { |
|
|
this.killfeed.store = response.data['killfeed']; |
|
|
this.killfeed.store = response.data['killfeed']; |
|
|
|
|
|
this.killfeed_current.store = response.data["killfeed_current"]; |
|
|
this.killfeed.loaded = true; |
|
|
this.killfeed.loaded = true; |
|
|
|
|
|
this.killfeed_current.loaded = true; |
|
|
}) |
|
|
}) |
|
|
.catch(() => this.killfeed.loaded = false) |
|
|
.catch(() => {this.killfeed.loaded = false;this.killfeed_current.loaded=false;}) |
|
|
.finally(() => this.killfeed.loading = false) |
|
|
.finally(() => {this.killfeed.loading = false;this.killfeed_current.loading=false;}) |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|