109 lines
2.5 KiB
Vue
109 lines
2.5 KiB
Vue
<template>
|
|
<div
|
|
class="layout align-center"
|
|
@click="$emit('click')"
|
|
@mouseover="$emit('mouseover')"
|
|
@mouseleave="$emit('mouseleave')"
|
|
>
|
|
<roll-popup
|
|
v-if="model.attributeType === 'modifier' || model.type === 'skill'"
|
|
button-class="px-0"
|
|
text
|
|
height="70"
|
|
min-width="72"
|
|
:roll-text="computedValue && computedValue.toString()"
|
|
:name="model.name"
|
|
:advantage="model.advantage"
|
|
:loading="checkLoading"
|
|
:disabled="!context.editPermission"
|
|
@roll="check"
|
|
>
|
|
<v-card-title class="value text-h4 flex-shrink-0">
|
|
{{ computedValue }}
|
|
</v-card-title>
|
|
</roll-popup>
|
|
<v-card-title
|
|
v-else
|
|
class="value text-h4 flex-shrink-0"
|
|
>
|
|
{{ computedValue }}
|
|
</v-card-title>
|
|
<v-card-title class="name text-subtitle-1 text-truncate d-block pl-0">
|
|
{{ model.name }}
|
|
<v-icon
|
|
v-if="model.advantage > 0"
|
|
right
|
|
>
|
|
mdi-chevron-double-up
|
|
</v-icon>
|
|
<v-icon
|
|
v-if="model.advantage < 0"
|
|
right
|
|
>
|
|
mdi-chevron-double-down
|
|
</v-icon>
|
|
</v-card-title>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="js">
|
|
import numberToSignedString from '../../../../../api/utility/numberToSignedString.js';
|
|
import RollPopup from '/imports/client/ui/components/RollPopup.vue';
|
|
import doCheck from '/imports/api/engine/actions/doCheck.js';
|
|
import {snackbar} from '/imports/client/ui/components/snackbars/SnackbarQueue.js';
|
|
|
|
export default {
|
|
components: {
|
|
RollPopup,
|
|
},
|
|
inject: {
|
|
context: {
|
|
default: {},
|
|
},
|
|
},
|
|
props: {
|
|
model: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
},
|
|
data(){return {
|
|
checkLoading: false,
|
|
hovering: false,
|
|
}},
|
|
computed: {
|
|
computedValue(){
|
|
if (this.model.attributeType === 'modifier' || this.model.type === 'skill'){
|
|
return numberToSignedString(this.model.value);
|
|
} else {
|
|
return this.model.value
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
signed: numberToSignedString,
|
|
check({advantage}){
|
|
this.checkLoading = true;
|
|
doCheck.call({
|
|
propId: this.model._id,
|
|
scope: {
|
|
'~checkAdvantage': { value: advantage },
|
|
},
|
|
}, error => {
|
|
this.checkLoading = false;
|
|
if (error){
|
|
console.error(error);
|
|
snackbar({text: error.reason});
|
|
}
|
|
});
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="css" scoped>
|
|
.value {
|
|
min-width: 72px;
|
|
justify-content: center;
|
|
}
|
|
</style> |