mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 06:07:21 +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
168 lines
3.9 KiB
Vue
168 lines
3.9 KiB
Vue
<template lang="pug">
|
|
b-modal#level-up(:title="$t('levelUpShare')", size='sm', :hide-footer="true", :hide-header="true")
|
|
.modal-body.text-center
|
|
h2 {{ $t('reachedLevel', {level: user.stats.lvl}) }}
|
|
|
|
avatar.avatar(:member='user')
|
|
|
|
p.text {{ $t('levelup') }}
|
|
|
|
button.btn.btn-primary(@click='close()') {{ $t('onwards') }}
|
|
br
|
|
// @TODO: Keep this? .checkbox
|
|
input(type='checkbox', v-model='user.preferences.suppressModals.levelUp', @change='changeLevelupSuppress()')
|
|
label(style='display:inline-block') {{ $t('dontShowAgain') }}
|
|
|
|
.container-fluid.share-buttons
|
|
.row
|
|
.col-12.text-center
|
|
a.twitter-share-button.share-button(:href='twitterLink', target='_blank')
|
|
.social-icon.twitter.svg-icon(v-html='icons.twitter')
|
|
| {{ $t('tweet') }}
|
|
a.fb-share-button.share-button(:href='facebookLink', target='_blank')
|
|
.social-icon.facebook.svg-icon(v-html='icons.facebook')
|
|
| {{ $t('share') }}
|
|
// @TODO: Still want this? .col-4
|
|
a.tumblr-share-button(:data-href='socialLevelLink', data-notes='none')
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
#level-up {
|
|
h2 {
|
|
color: #4f2a93;
|
|
}
|
|
|
|
.modal-content {
|
|
min-width: 28em;
|
|
}
|
|
|
|
.modal-body {
|
|
padding-top: 1em;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.modal-footer {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.herobox {
|
|
margin: auto 8.3em;
|
|
width: 6em;
|
|
height: 9em;
|
|
padding-top: 0;
|
|
cursor: default;
|
|
}
|
|
|
|
.character-sprites {
|
|
margin: 0;
|
|
width: 0;
|
|
}
|
|
|
|
.text {
|
|
font-size: 14px;
|
|
text-align: center;
|
|
color: #686274;
|
|
margin-top: 1em;
|
|
min-height: 0px;
|
|
}
|
|
|
|
.share-buttons {
|
|
margin-top: 1em;
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.share-button {
|
|
display: inline-block;
|
|
width: 77px;
|
|
padding: .5em;
|
|
border-radius: 2px;
|
|
text-align: center;
|
|
color: #fff;
|
|
}
|
|
|
|
.fb-share-button {
|
|
background-color: #2995cd;
|
|
}
|
|
|
|
.twitter-share-button {
|
|
margin-right: .5em;
|
|
background-color: #3bcad7;
|
|
}
|
|
|
|
.social-icon {
|
|
width: 16px;
|
|
display: inline-block;
|
|
vertical-align: bottom;
|
|
margin-right: .5em;
|
|
}
|
|
|
|
.social-icon.facebook svg {
|
|
width: 7.5px;
|
|
margin-bottom: .2em;
|
|
}
|
|
|
|
.social-icon.twitter {
|
|
margin-bottom: .2em;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<style scoped>
|
|
.avatar {
|
|
margin-left: 6.8em;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import Avatar from '../avatar';
|
|
import { mapState } from 'client/libs/store';
|
|
import {maxHealth} from '../../../common/script/index';
|
|
import styleHelper from 'client/mixins/styleHelper';
|
|
import twitter from 'assets/svg/twitter.svg';
|
|
import facebook from 'assets/svg/facebook.svg';
|
|
|
|
let BASE_URL = 'https://habitica.com';
|
|
|
|
export default {
|
|
mixins: [styleHelper],
|
|
components: {
|
|
Avatar,
|
|
},
|
|
data () {
|
|
let tweet = this.$t('levelUpShare');
|
|
return {
|
|
icons: Object.freeze({
|
|
twitter,
|
|
facebook,
|
|
}),
|
|
statsAllocationBoxIsOpen: true,
|
|
maxHealth,
|
|
tweet,
|
|
socialLevelLink: `${BASE_URL}/social/level-up`,
|
|
twitterLink: `https://twitter.com/intent/tweet?text=${tweet}&via=habitica&url=${BASE_URL}/social/level-up&count=none`,
|
|
facebookLink: `https://www.facebook.com/sharer/sharer.php?text=${tweet}&u=${BASE_URL}/social/level-up`,
|
|
};
|
|
},
|
|
mounted () {
|
|
this.loadWidgets();
|
|
},
|
|
computed: {
|
|
...mapState({user: 'user.data'}),
|
|
showAllocation () {
|
|
return this.user.flags.classSelected && !this.user.preferences.disableClasses && !this.user.preferences.automaticAllocation;
|
|
},
|
|
},
|
|
methods: {
|
|
close () {
|
|
this.$root.$emit('bv::hide::modal', 'level-up');
|
|
},
|
|
loadWidgets () {
|
|
// @TODO:
|
|
},
|
|
changeLevelupSuppress () {
|
|
// @TODO: dispatch set({"preferences.suppressModals.levelUp": user.preferences.suppressModals.levelUp?true: false})
|
|
},
|
|
},
|
|
};
|
|
</script>
|