46 lines
824 B
Vue
46 lines
824 B
Vue
<template lang="html">
|
|
<attribute-dialog
|
|
v-bind="attribute"
|
|
:effects="effects"
|
|
v-on="{clickedEffect}"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
import AttributeDialog from '/imports/ui/components/AttributeDialog.vue';
|
|
import Attributes from '/imports/api/creature/properties/Attributes.js';
|
|
export default {
|
|
components: {
|
|
AttributeDialog,
|
|
},
|
|
props: {
|
|
_id: String,
|
|
},
|
|
meteor: {
|
|
attribute(){
|
|
return Attributes.findOne(this._id);
|
|
},
|
|
effects(){
|
|
if (!this.attribute) return;
|
|
let charId = this.attribute.charId;
|
|
let stat = this.attribute.variableName;
|
|
return Effects.find({
|
|
charId,
|
|
stat,
|
|
enabled: true,
|
|
}, {
|
|
sort: {order: 1},
|
|
}).fetch();
|
|
},
|
|
},
|
|
methods: {
|
|
clickedEffect(e){
|
|
console.log(e);
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="css" scoped>
|
|
</style>
|