mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
* Fixed background purchasing * Added challenge export * Fixed is leader filter * Fixed staff icon * Add block to profile modal * Added initial send gems modal * Added modal stack * Fixed lint issues * Updated notification styles * Updated level up styles * Fixed many achievement styles * Fixed notification navigate to same route with different param * Added mark chat seen and remove new messages * Added scroll to notifications * Updated hall loading
49 lines
1.3 KiB
Vue
49 lines
1.3 KiB
Vue
<template lang="pug">
|
|
b-modal#rebirth(:title="$t('modalAchievement')", size='md', :hide-footer="true")
|
|
.modal-body
|
|
.col-12
|
|
// @TODO: +achievementAvatar('sun',0)
|
|
achievement-avatar.avatar
|
|
.col-6.offset-3.text-center
|
|
div(v-if='user.achievements.rebirthLevel < 100')
|
|
| {{ $t('rebirthAchievement', {number: user.achievements.rebirths, level: user.achievements.rebirthLevel}) }}
|
|
div(v-if='user.achievements.rebirthLevel >= 100')
|
|
| {{ $t('rebirthAchievement100', {number: user.achievements.rebirths}) }}
|
|
br
|
|
button.btn.btn-primary(@click='close()') {{ $t('huzzah') }}
|
|
achievement-footer
|
|
</template>
|
|
|
|
<style scoped>
|
|
.avatar {
|
|
width: 140px;
|
|
margin: 0 auto;
|
|
margin-bottom: 1.5em;
|
|
margin-top: 1.5em;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import bModal from 'bootstrap-vue/lib/components/modal';
|
|
import achievementFooter from './achievementFooter';
|
|
import achievementAvatar from './achievementAvatar';
|
|
|
|
import { mapState } from 'client/libs/store';
|
|
|
|
export default {
|
|
components: {
|
|
bModal,
|
|
achievementFooter,
|
|
achievementAvatar,
|
|
},
|
|
computed: {
|
|
...mapState({user: 'user.data'}),
|
|
},
|
|
methods: {
|
|
close () {
|
|
this.$root.$emit('hide::modal', 'rebirth');
|
|
},
|
|
},
|
|
};
|
|
</script>
|