mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 22:27:26 +01:00
* update bootstrap-vue to 1.0.0-beta.9 - remove all individual bootstrap components and use BootstrapVue into Vue * change modal action names from show::modal to bv::show::modal * check if drops are undefined * fix modal widths - sellModal now using input instead of dropbox * upgrade to bootstrap 4.0beta * include package-lock changes * fix app menu dropdown position * upgrade bootstrap to beta2 (was missing grid offset and other fixes) - refix header menu position * fix tags popup (auto width to max not working) - fix filter panel width (adding width: 100% works until max-width) * show hide logo on different screensize (new css breakpoints - http://getbootstrap.com/docs/4.0/utilities/display/ ) * fix package-lock? * fix active button style / app header toggle button * fix package-lock ! * update package lock after merge - new mixin "openedItemRows" to save the "show more/show less" in stable * mixin naming style * fix buyQuestModal marginTop * fix customMenuDropdown position * fix userDropdown items
106 lines
2.4 KiB
Vue
106 lines
2.4 KiB
Vue
<template lang="pug">
|
|
b-modal#low-health(:title="$t('losingHealthWarning')", size='md', :hide-footer="true")
|
|
.modal-body
|
|
.col-12.text-center
|
|
.meter-label(:tooltip="$t('health')")
|
|
span.glyphicon.glyphicon-heart
|
|
.meter.health(:tooltip='Math.round(user.stats.hp * 100) / 100')
|
|
.bar(:style='barStyle')
|
|
span.meter-text.value
|
|
| {{healthLeft}}
|
|
.col-12
|
|
avatar(:member='user', :avatarOnly='true', :withBackground='true')
|
|
.col-12
|
|
p {{ $t('losingHealthWarning2') }}
|
|
h4 {{ $t('toRegainHealth') }}
|
|
ul
|
|
li.spaced {{ $t('lowHealthTips1') }}
|
|
li.spaced {{ $t('lowHealthTips2') }}
|
|
h4 {{ $t('losingHealthQuickly') }}
|
|
ul
|
|
li.spaced {{ $t('lowHealthTips3') }}
|
|
li.spaced {{ $t('lowHealthTips4') }}
|
|
h4 {{ $t('goodLuck') }}
|
|
.modal-footer
|
|
.col-12.text-center
|
|
button.btn.btn-primary(@click='acknowledgeHealthWarning()') {{ $t('ok') }}
|
|
</template>
|
|
|
|
<style scoped>
|
|
.hero-stats {
|
|
position: absolute;
|
|
margin-left: 9em;
|
|
width: 50%;
|
|
}
|
|
|
|
.character-sprites {
|
|
display: inline-flex;
|
|
margin: 3em auto;
|
|
}
|
|
|
|
.herobox {
|
|
padding-top: 0em;
|
|
margin-left: 16em;
|
|
}
|
|
|
|
.modal-footer {
|
|
margin-top: 0em;
|
|
}
|
|
|
|
.avatar {
|
|
width: 140px;
|
|
margin: 0 auto;
|
|
margin-bottom: 1.5em;
|
|
margin-top: 1.5em;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import Avatar from '../avatar';
|
|
import { mapState } from 'client/libs/store';
|
|
import * as Analytics from 'client/libs/analytics';
|
|
import percent from '../../../common/script/libs/percent';
|
|
import {maxHealth} from '../../../common/script/index';
|
|
|
|
export default {
|
|
components: {
|
|
Avatar,
|
|
},
|
|
data () {
|
|
return {
|
|
maxHealth,
|
|
};
|
|
},
|
|
computed: {
|
|
...mapState({user: 'user.data'}),
|
|
barStyle () {
|
|
return {
|
|
width: `${percent(this.user.stats.hp, maxHealth)}%`,
|
|
};
|
|
},
|
|
healthLeft () {
|
|
return `${Math.ceil(this.user.stats.hp)} / ${this.maxHealth}`;
|
|
},
|
|
},
|
|
mounted () {
|
|
Analytics.track({
|
|
hitType: 'event',
|
|
eventCategory: 'button',
|
|
eventAction: 'click',
|
|
eventLabel: 'Health Warning',
|
|
});
|
|
},
|
|
methods: {
|
|
close () {
|
|
this.$root.$emit('bv::hide::modal', 'low-health');
|
|
},
|
|
acknowledgeHealthWarning () {
|
|
this.$store.dispatch('user:set', {
|
|
'flags.warnedLowHealth': true,
|
|
});
|
|
this.close();
|
|
},
|
|
},
|
|
};
|
|
</script>
|