mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-14 21:27:23 +01:00
* Footer style fixes * Limited string display * Fixed background reload * Began adding more avatar items * Fixed challenge updated cats and official to be seen by admins * Fixed min prize * Fixed required fields * Added my challenges and find challenges to menu * Removed nav to party page when have no party * Updated user and notifications icon * Added accept, reject and messages * Added selfcare * Underline links * Added forgot password * Fixed task adding * Disabled habit options that should be * Added markdown to tags * Added confirm to delete * Fixed cancel/delete style * Fixed rounding * Added gold icon * Fixed task icon styles * Fixed margin botton * Fixed some repeat styles * Fixed custom reward style * Hide like count 0 * Added new tavern images * Redirect to party page after create * Hid leader options from non leaders * Removed manager options from non group plan * Fixed some nav styles * Fixed overlay color * Prevented edit data from being transfered to create * Added hover state for spells * Add performance fixes for chat avatars * Fixed merge conflicts * Updated fron navigation * Fixed reg gryphon logo * Began adding gem modal functionality * Added purchase gems with gold * Fixed restore * Replaced description with summary * Spells that target tasks fix * Added initial challenge task load * Fixed lint issue
757 lines
29 KiB
Vue
757 lines
29 KiB
Vue
<template lang="pug">
|
|
b-modal#avatar-modal(title="", size='lg', :hide-header='true', :hide-footer='true')
|
|
.section.row.welcome-section(v-if='modalPage === 1 && !editing')
|
|
.col-6.offset-3.text-center
|
|
h3(v-once) {{$t('welcomeTo')}}
|
|
.svg-icon.logo(v-html='icons.logoPurple')
|
|
|
|
.section.row
|
|
.col-6.offset-3
|
|
.user-creation-bg
|
|
avatar(:member='user')
|
|
|
|
div(v-if='modalPage == 2')
|
|
// @TODO Implement in V2 .section.row
|
|
.col-12.text-center
|
|
button.btn.btn-secondary(v-once) {{$t('randomize')}}
|
|
.section.row.text-center.customize-menu
|
|
div(:class='{"col-3": !editing, "col-2 offset-1": editing}')
|
|
.menu-item(@click='changeTopPage("body", "size")')
|
|
.svg-icon(v-html='icons.bodyIcon')
|
|
strong(v-once) {{$t('body')}}
|
|
div(:class='{"col-3": !editing, "col-2": editing}')
|
|
.menu-item(@click='changeTopPage("skin", "color")')
|
|
.svg-icon(v-html='icons.skinIcon')
|
|
strong(v-once) {{$t('skin')}}
|
|
div(:class='{"col-3": !editing, "col-2": editing}')
|
|
.menu-item(@click='changeTopPage("hair", "color")')
|
|
.svg-icon(v-html='icons.hairIcon')
|
|
strong(v-once) {{$t('hair')}}
|
|
div(:class='{"col-3": !editing, "col-2": editing}')
|
|
.menu-item(@click='changeTopPage("extra", "glasses")')
|
|
.svg-icon(v-html='icons.accessoriesIcon')
|
|
strong(v-once) {{$t('extra')}}
|
|
.col-2(v-if='editing')
|
|
.menu-item(@click='changeTopPage("backgrounds", "2017")')
|
|
.svg-icon(v-html='icons.backgroundsIcon')
|
|
strong(v-once) {{$t('backgrounds')}}
|
|
.section.customize-section(v-if='activeTopPage === "body"')
|
|
.row.sub-menu.col-6.offset-3.text-center
|
|
.col-2.offset-4.sub-menu-item(@click='changeSubPage("size")', :class='{active: activeSubPage === "size"}')
|
|
strong(v-once) {{$t('size')}}
|
|
.col-2.sub-menu-item(@click='changeSubPage("shirt")', :class='{active: activeSubPage === "shirt"}')
|
|
strong(v-once) {{$t('shirt')}}
|
|
.row(v-if='activeSubPage === "size"')
|
|
.col-12.customize-options.size-options
|
|
.slim_shirt_black.option(@click='set({"preferences.size":"slim"})', :class='{active: user.preferences.size === "slim"}')
|
|
.broad_shirt_black.option(@click='set({"preferences.size":"broad"})', :class='{active: user.preferences.size === "broad"}')
|
|
.row(v-if='activeSubPage === "shirt"')
|
|
.col-12.customize-options
|
|
.slim_shirt_black.option(@click='set({"preferences.shirt":"black"})', :class='{active: user.preferences.shirt === "black"}')
|
|
.slim_shirt_blue.option(@click='set({"preferences.shirt":"blue"})', :class='{active: user.preferences.shirt === "blue"}')
|
|
.slim_shirt_green.option(@click='set({"preferences.shirt":"green"})', :class='{active: user.preferences.shirt === "green"}')
|
|
.slim_shirt_pink.option(@click='set({"preferences.shirt":"pink"})', :class='{active: user.preferences.shirt === "pink"}')
|
|
.slim_shirt_white.option(@click='set({"preferences.shirt":"white"})', :class='{active: user.preferences.shirt === "white"}')
|
|
.slim_shirt_yellow.option(@click='set({"preferences.shirt":"yellow"})', :class='{active: user.preferences.shirt === "yellow"}')
|
|
.col-12.customize-options
|
|
.option(v-for='option in ["convict", "cross", "fire", "horizon", "ocean", "purple", "rainbow", "redblue", "thunder", "tropical", "zombie"]',
|
|
:class='[`broad_shirt_${option}`, {active: user.preferences.shirt === option}]',
|
|
@click='set({"preferences.shirt": option})')
|
|
|
|
.section.customize-section(v-if='activeTopPage === "skin"')
|
|
.row.sub-menu.col-6.offset-3.text-center
|
|
.col-6.offset-3.text-center.sub-menu-item(:class='{active: activeSubPage === "color"}')
|
|
strong(v-once) {{$t('color')}}
|
|
.row
|
|
.col-12.customize-options
|
|
.skin_ddc994.option(@click='set({"preferences.skin":"ddc994"})', :class='{active: user.preferences.skin === "ddc994"}')
|
|
.skin_f5a76e.option(@click='set({"preferences.skin":"f5a76e"})', :class='{active: user.preferences.skin === "f5a76e"}')
|
|
.skin_ea8349.option(@click='set({"preferences.skin":"ea8349"})', :class='{active: user.preferences.skin === "ea8349"}')
|
|
.skin_c06534.option(@click='set({"preferences.skin":"c06534"})', :class='{active: user.preferences.skin === "c06534"}')
|
|
.skin_98461a.option(@click='set({"preferences.skin":"98461a"})', :class='{active: user.preferences.skin === "98461a"}')
|
|
.skin_915533.option(@click='set({"preferences.skin":"915533"})', :class='{active: user.preferences.skin === "915533"}')
|
|
.skin_c3e1dc.option(@click='set({"preferences.skin":"c3e1dc"})', :class='{active: user.preferences.skin === "c3e1dc"}')
|
|
.skin_6bd049.option(@click='set({"preferences.skin":"6bd049"})', :class='{active: user.preferences.skin === "6bd049"}')
|
|
|
|
.section.customize-section(v-if='activeTopPage === "hair"')
|
|
.row.sub-menu.col-6.offset-3.text-center
|
|
.col-2.offset-3.text-center.sub-menu-item(@click='changeSubPage("color")', :class='{active: activeSubPage === "color"}')
|
|
strong(v-once) {{$t('color')}}
|
|
.col-2.text-center.sub-menu-item(@click='changeSubPage("bangs")', :class='{active: activeSubPage === "bangs"}')
|
|
strong(v-once) {{$t('bangs')}}
|
|
.col-2.text-center.sub-menu-item(@click='changeSubPage("ponytail")', :class='{active: activeSubPage === "ponytail"}')
|
|
strong(v-once) {{$t('ponytail')}}
|
|
.row(v-if='activeSubPage === "color"')
|
|
.col-12.customize-options
|
|
.hair_bangs_1_white.option(@click='set({"preferences.hair.color": "white"})', :class='{active: user.preferences.hair.color === "white"}')
|
|
.hair_bangs_1_brown.option(@click='set({"preferences.hair.color": "brown"})', :class='{active: user.preferences.hair.color === "brown"}')
|
|
.hair_bangs_1_blond.option(@click='set({"preferences.hair.color": "blond"})', :class='{active: user.preferences.hair.color === "blond"}')
|
|
.hair_bangs_1_red.option(@click='set({"preferences.hair.color": "red"})', :class='{active: user.preferences.hair.color === "red"}')
|
|
.hair_bangs_1_black.option(@click='set({"preferences.hair.color": "black"})', :class='{active: user.preferences.hair.color === "black"}')
|
|
.row(v-if='activeSubPage === "bangs"')
|
|
.col-12.customize-options
|
|
.head_0.option(@click='set({"preferences.hair.bangs": 0})', :class="[{ active: user.preferences.hair.bangs === 0 }, 'hair_bangs_0_' + user.preferences.hair.color]")
|
|
.option(@click='set({"preferences.hair.bangs": 1})', :class="[{ active: user.preferences.hair.bangs === 1 }, 'hair_bangs_1_' + user.preferences.hair.color]")
|
|
.option(@click='set({"preferences.hair.bangs": 2})',:class="[{ active: user.preferences.hair.bangs === 2 }, 'hair_bangs_2_' + user.preferences.hair.color]")
|
|
.option(@click='set({"preferences.hair.bangs": 3})', :class="[{ active: user.preferences.hair.bangs === 3 }, 'hair_bangs_3_' + user.preferences.hair.color]")
|
|
.option(@click='set({"preferences.hair.bangs": 4})', :class="[{ active: user.preferences.hair.bangs === 4 }, 'hair_bangs_4_' + user.preferences.hair.color]")
|
|
.row(v-if='activeSubPage === "ponytail"')
|
|
.col-12.customize-options
|
|
.head_0.option(@click='set({"preferences.hair.base": 0})', :class="[{ active: user.preferences.hair.base === 0 }, 'hair_base_0_' + user.preferences.hair.color]")
|
|
.hair_base_1_blond.option(@click='set({"preferences.hair.base": 1})', :class="[{ active: user.preferences.hair.base === 1 }, 'hair_base_1_' + user.preferences.hair.color]")
|
|
.hair_base_3_blond.option(@click='set({"preferences.hair.base": 3})', :class="[{ active: user.preferences.hair.base === 3 }, 'hair_base_3_' + user.preferences.hair.color]")
|
|
|
|
.section.container.customize-section(v-if='activeTopPage === "extra"')
|
|
.row.sub-menu.col-6.offset-3.text-center
|
|
.col-4.text-center.sub-menu-item(@click='changeSubPage("glasses")', :class='{active: activeSubPage === "glasses"}')
|
|
strong(v-once) {{$t('glasses')}}
|
|
.col-4.text-center.sub-menu-item(@click='changeSubPage("wheelchair")', :class='{active: activeSubPage === "wheelchair"}')
|
|
strong(v-once) {{$t('wheelchair')}}
|
|
.col-4.text-center.sub-menu-item(@click='changeSubPage("flower")', :class='{active: activeSubPage === "flower"}')
|
|
strong(v-once) {{$t('flower')}}
|
|
.row(v-if='activeSubPage === "glasses"')
|
|
.col-12.customize-options
|
|
.eyewear_special_blackTopFrame.option(@click='equip("eyewear_special_blackTopFrame")', :class='{active: user.preferences.costume ? user.items.gear.costume.eyewear === "eyewear_special_blackTopFrame" : user.items.gear.equipped.eyewear === "eyewear_special_blackTopFrame"}')
|
|
.eyewear_special_blueTopFrame.option(@click='equip("eyewear_special_blueTopFrame")', :class='{active: user.preferences.costume ? user.items.gear.costume.eyewear === "eyewear_special_blueTopFrame" : user.items.gear.equipped.eyewear === "eyewear_special_blueTopFrame"}')
|
|
.eyewear_special_greenTopFrame.option(@click='equip("eyewear_special_greenTopFrame")', :class='{active: user.preferences.costume ? user.items.gear.costume.eyewear === "eyewear_special_greenTopFrame" : user.items.gear.equipped.eyewear === "eyewear_special_greenTopFrame"}')
|
|
.eyewear_special_pinkTopFrame.option(@click='equip("eyewear_special_pinkTopFrame")', :class='{active: user.preferences.costume ? user.items.gear.costume.eyewear === "eyewear_special_pinkTopFrame" : user.items.gear.equipped.eyewear === "eyewear_special_pinkTopFrame"}')
|
|
.eyewear_special_redTopFrame.option(@click='equip("eyewear_special_redTopFrame")', :class='{active: user.preferences.costume ? user.items.gear.costume.eyewear === "eyewear_special_redTopFrame" : user.items.gear.equipped.eyewear === "eyewear_special_redTopFrame"}')
|
|
.eyewear_special_whiteTopFrame.option(@click='equip("eyewear_special_whiteTopFrame")', :class='{active: user.preferences.costume ? user.items.gear.costume.eyewear === "eyewear_special_whiteTopFrame" : user.items.gear.equipped.eyewear === "eyewear_special_whiteTopFrame"}')
|
|
.eyewear_special_yellowTopFrame.option(@click='equip("eyewear_special_yellowTopFrame")', :class='{active: user.preferences.costume ? user.items.gear.costume.eyewear === "eyewear_special_yellowTopFrame" : user.items.gear.equipped.eyewear === "eyewear_special_yellowTopFrame"}')
|
|
.row(v-if='activeSubPage === "wheelchair"')
|
|
.col-12.customize-options.weelchairs
|
|
.option(@click='set({"preferences.chair": "none"})', :class='{active: user.preferences.chair === "none"}')
|
|
| None
|
|
.option(@click='set({"preferences.chair": "black"})', :class='{active: user.preferences.chair === "black"}')
|
|
.button_chair_black
|
|
.option(@click='set({"preferences.chair": "blue"})', :class='{active: user.preferences.chair === "blue"}')
|
|
.button_chair_blue
|
|
.option(@click='set({"preferences.chair": "green"})', :class='{active: user.preferences.chair === "green"}')
|
|
.button_chair_green
|
|
.option(@click='set({"preferences.chair": "pink"})', :class='{active: user.preferences.chair === "pink"}')
|
|
.button_chair_pink
|
|
.option(@click='set({"preferences.chair": "red"})', :class='{active: user.preferences.chair === "red"}')
|
|
.button_chair_red
|
|
.option(@click='set({"preferences.chair": "yellow"})', :class='{active: user.preferences.chair === "yellow"}')
|
|
.button_chair_yellow
|
|
.row(v-if='activeSubPage === "flower"')
|
|
.col-12.customize-options
|
|
.head_0.option(@click='set({"preferences.hair.flower":0})', :class='{active: user.preferences.hair.flower === 0}')
|
|
.hair_flower_1.option(@click='set({"preferences.hair.flower":1})', :class='{active: user.preferences.hair.flower === 1}')
|
|
.hair_flower_2.option(@click='set({"preferences.hair.flower":2})', :class='{active: user.preferences.hair.flower === 2}')
|
|
.hair_flower_3.option(@click='set({"preferences.hair.flower":3})', :class='{active: user.preferences.hair.flower === 3}')
|
|
.hair_flower_4.option(@click='set({"preferences.hair.flower":4})', :class='{active: user.preferences.hair.flower === 4}')
|
|
.hair_flower_5.option(@click='set({"preferences.hair.flower":5})', :class='{active: user.preferences.hair.flower === 5}')
|
|
.hair_flower_6.option(@click='set({"preferences.hair.flower":6})', :class='{active: user.preferences.hair.flower === 6}')
|
|
.row(v-if='activeSubPage === "flower"')
|
|
.col-12.customize-options
|
|
// button.customize-option(ng-repeat='item in ::getGearArray("animal")', class='{{::item.key}}',
|
|
ng-class="{locked: user.items.gear.owned[item.key] == undefined, selectableInventory: user.preferences.costume ? user.items.gear.costume.headAccessory == item.key : user.items.gear.equipped.headAccessory == item.key}",
|
|
popover='{{::item.notes()}}', popover-title='{{::item.text()}}', popover-trigger='mouseenter',
|
|
popover-placement='right', popover-append-to-body='true',
|
|
ng-click='user.items.gear.owned[item.key] ? equip(item.key) : purchase(item.type,item)')
|
|
|
|
#backgrounds.section.container.customize-section(v-if='activeTopPage === "backgrounds"')
|
|
.row.sub-menu.col-6.offset-3
|
|
.col-3.text-center.sub-menu-item(@click='changeSubPage("2017")', :class='{active: activeSubPage === "2017"}')
|
|
strong(v-once) 2017
|
|
.col-3.text-center.sub-menu-item(@click='changeSubPage("2016")', :class='{active: activeSubPage === "2016"}')
|
|
strong(v-once) 2016
|
|
.col-3.text-center.sub-menu-item(@click='changeSubPage("2015")', :class='{active: activeSubPage === "2015"}')
|
|
strong(v-once) 2015
|
|
.col-3.text-center.sub-menu-item(@click='changeSubPage("2014")', :class='{active: activeSubPage === "2014"}')
|
|
strong(v-once) 2014
|
|
.row.customize-menu(v-for='(sets, key) in backgroundShopSetsByYear')
|
|
.col-12.row(v-for='set in sets', v-if='activeSubPage === key')
|
|
.col-6.offset-3.text-center.set-title
|
|
strong {{set.text}}
|
|
.col-12(v-if='showPlainBackgroundBlurb(set.identifier, set.items)') {{ $t('incentiveBackgroundsUnlockedWithCheckins') }}
|
|
.col-4.text-center.customize-option.background-button(v-for='bg in set.items',
|
|
@click='unlock("background." + bg.key)',
|
|
:popover-title='bg.text',
|
|
:popover='bg.notes',
|
|
popover-trigger='mouseenter')
|
|
.background(:class='[`background_${bg.key}`, backgroundLockedStatus(bg.key)]')
|
|
i.glyphicon.glyphicon-lock(v-if='!user.purchased.background[bg.key]')
|
|
.purchase-single(v-if='!user.purchased.background[bg.key]')
|
|
.svg-icon.gem(v-html='icons.gem')
|
|
span 7
|
|
span.badge.badge-pill.badge-item.badge-svg(
|
|
:class="{'item-selected-badge': isBackgroundPinned(bg), 'hide': !isBackgroundPinned(bg)}",
|
|
@click.prevent.stop="togglePinned(bg)"
|
|
)
|
|
span.svg-icon.inline.icon-12.color(v-html="icons.pin")
|
|
|
|
.col-12.text-center(v-if='!ownsSet("background", set.items) && set.identifier !== "incentiveBackgrounds"')
|
|
.gem-amount
|
|
.svg-icon.gem(v-html='icons.gem')
|
|
span 15
|
|
button.btn.btn-secondary(@click='unlock(setKeys("background", set.items))') Purchase Set
|
|
|
|
.container.interests-section(v-if='modalPage === 3 && !editing')
|
|
.section.row
|
|
.col-12.text-center
|
|
h2 I want to work on:
|
|
.section.row
|
|
.col-4.offset-2
|
|
div
|
|
label.custom-control.custom-checkbox
|
|
input.custom-control-input(type="checkbox")
|
|
span.custom-control-indicator
|
|
span.custom-control-description(v-once) {{ $t('work') }}
|
|
div
|
|
label.custom-control.custom-checkbox
|
|
input.custom-control-input(type="checkbox")
|
|
span.custom-control-indicator
|
|
span.custom-control-description(v-once) {{ $t('exercise') }}
|
|
div
|
|
label.custom-control.custom-checkbox
|
|
input.custom-control-input(type="checkbox")
|
|
span.custom-control-indicator
|
|
span.custom-control-description(v-once) {{ $t('health_wellness') }}
|
|
div
|
|
label.custom-control.custom-checkbox
|
|
input.custom-control-input(type="checkbox")
|
|
span.custom-control-indicator
|
|
span.custom-control-description(v-once) {{ $t('school') }}
|
|
.col-4
|
|
div
|
|
label.custom-control.custom-checkbox
|
|
input.custom-control-input(type="checkbox")
|
|
span.custom-control-indicator
|
|
span.custom-control-description(v-once) {{ $t('chores') }}
|
|
div
|
|
label.custom-control.custom-checkbox
|
|
input.custom-control-input(type="checkbox")
|
|
span.custom-control-indicator
|
|
span.custom-control-description(v-once) {{ $t('creativity') }}
|
|
div
|
|
label.custom-control.custom-checkbox
|
|
input.custom-control-input(type="checkbox")
|
|
span.custom-control-indicator
|
|
span.custom-control-description(v-once) {{ $t('self_care') }}
|
|
|
|
.section.row.justin-message-section(:class='{top: modalPage > 1}')
|
|
.col-9
|
|
.justin-message(v-if='modalPage == 1')
|
|
p(v-once) {{$t('justinIntroMessage1')}}
|
|
p(v-once) {{$t('justinIntroMessage2')}}
|
|
.justin-message(v-if='modalPage > 1')
|
|
p(v-once) {{$t('justinIntroMessage3')}}
|
|
|
|
.section.container.footer(v-if='!editing')
|
|
.row
|
|
.col-3.offset-1.text-center
|
|
div(v-if='modalPage > 1', @click='prev()')
|
|
.prev-arrow
|
|
.prev(v-once) {{$t('prev')}}
|
|
.col-4.text-center.circles
|
|
.circle(:class="{active: modalPage === 1}")
|
|
.circle(:class="{active: modalPage === 2}")
|
|
.circle(:class="{active: modalPage === 3}")
|
|
.col-3.text-center
|
|
div(v-if='modalPage < 3', @click='next()')
|
|
.next(v-once) {{$t('next')}}
|
|
.next-arrow
|
|
div(v-if='modalPage === 3', @click='done()')
|
|
button.btn.btn-primary.next(v-once) {{$t('done')}}
|
|
</template>
|
|
|
|
<style>
|
|
#avatar-modal_modal_body {
|
|
padding: 0;
|
|
}
|
|
</style>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '~client/assets/scss/colors.scss';
|
|
|
|
#creator-background {
|
|
background-color: $purple-200;
|
|
}
|
|
|
|
#creator-modal {
|
|
width: 448px;
|
|
height: 670px;
|
|
border-radius: 8px;
|
|
background-color: #ffffff;
|
|
box-shadow: 0 2px 16px 0 rgba(26, 24, 29, 0.32);
|
|
margin: 0 auto;
|
|
padding-top: 1em;
|
|
position: relative;
|
|
}
|
|
|
|
.section {
|
|
margin-top: 2em;
|
|
}
|
|
|
|
.welcome-section {
|
|
margin-top: 5em;
|
|
margin-bottom: 5em;
|
|
}
|
|
|
|
.logo {
|
|
width: 190px;
|
|
}
|
|
|
|
.user-creation-bg {
|
|
background-image: url('~client/assets/creator/creator-hills-bg.png');
|
|
height: 105px;
|
|
width: 219px;
|
|
}
|
|
|
|
.avatar {
|
|
position: absolute;
|
|
top: -23px;
|
|
left: 48px;
|
|
}
|
|
|
|
.justin-message {
|
|
background-image: url('~client/assets/svg/for-css/tutorial-border.svg');
|
|
height: 144px;
|
|
width: 400px;
|
|
padding: 2em;
|
|
margin-left: 1.5em;
|
|
}
|
|
|
|
.justin-message-section {
|
|
margin-top: 6em;
|
|
margin-bottom: 6em;
|
|
}
|
|
|
|
.justin-message-section.top {
|
|
position: absolute;
|
|
top: -15em;
|
|
}
|
|
|
|
.circles {
|
|
padding-left: 2em;
|
|
}
|
|
|
|
.circle {
|
|
width: 8px;
|
|
height: 8px;
|
|
background-color: #d8d8d8;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
margin-right: 1em;
|
|
}
|
|
|
|
.circle.active {
|
|
background-color: #bda8ff;
|
|
}
|
|
|
|
.customize-menu {
|
|
.menu-item .svg-icon {
|
|
width: 32px;
|
|
height: 32px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.menu-item:hover {
|
|
cursor: pointer;
|
|
svg path, strong {
|
|
stroke: purple !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.sub-menu:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.sub-menu-item {
|
|
text-align: center;
|
|
}
|
|
|
|
.sub-menu .sub-menu-item:hover, .sub-menu .sub-menu-item.active {
|
|
color: $purple-200;
|
|
border-bottom: 2px solid $purple-200;
|
|
}
|
|
|
|
.customize-options .option {
|
|
display: inline-block;
|
|
padding: 2em;
|
|
vertical-align: bottom;
|
|
}
|
|
|
|
.size-options {
|
|
padding-left: 9em;
|
|
}
|
|
|
|
.weelchairs .option {
|
|
width: 90px;
|
|
height: 90px;
|
|
}
|
|
|
|
.option.active {
|
|
border: 4px solid $purple-200;
|
|
border-radius: 4px;
|
|
margin-top: 1em;
|
|
}
|
|
|
|
.option:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.customize-section {
|
|
background-color: #f9f9f9;
|
|
padding-top: 1em;
|
|
min-height: 250px;
|
|
}
|
|
|
|
.interests-section {
|
|
margin-top: 7em;
|
|
}
|
|
|
|
#backgrounds {
|
|
.set-title {
|
|
margin-top: 3em;
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.background {
|
|
margin: 0 auto;
|
|
box-shadow: 0 2px 2px 0 rgba(26, 24, 29, 0.16), 0 1px 4px 0 rgba(26, 24, 29, 0.12);
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.background:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.purchase-single {
|
|
width: 141px;
|
|
margin: 0 auto;
|
|
background: #fff;
|
|
padding: 0.5em;
|
|
box-shadow: 0 2px 2px 0 rgba(26, 24, 29, 0.16), 0 1px 4px 0 rgba(26, 24, 29, 0.12);
|
|
border-radius: 0 0 2px 2px;
|
|
|
|
span {
|
|
font-weight: bold;
|
|
font-size: 12px;
|
|
color: #24cc8f;
|
|
}
|
|
|
|
.gem {
|
|
width: 16px;
|
|
}
|
|
}
|
|
|
|
.gem {
|
|
margin-right: .5em;
|
|
display: inline-block;
|
|
vertical-align: bottom;
|
|
}
|
|
|
|
.gem-amount {
|
|
margin-top: 2em;
|
|
margin-bottom: 1em;
|
|
|
|
.gem {
|
|
width: 24px;
|
|
}
|
|
|
|
span {
|
|
font-weight: bold;
|
|
font-size: 20px;
|
|
color: #24cc8f;
|
|
}
|
|
}
|
|
}
|
|
|
|
.footer {
|
|
position: absolute;
|
|
padding-bottom: 1em;
|
|
bottom: 0;
|
|
width: 100%;
|
|
|
|
.prev {
|
|
color: #a5a1ac;
|
|
font-weight: bold;
|
|
display: inline-block;
|
|
padding: 0.4em;
|
|
margin-left: 1em;
|
|
}
|
|
|
|
.prev:hover, .prev-arrow:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.prev-arrow {
|
|
background-image: url('~client/assets/creator/prev.png');
|
|
width: 32px;
|
|
height: 32px;
|
|
display: inline-block;
|
|
vertical-align: bottom;
|
|
}
|
|
|
|
.next {
|
|
color: #6133b4;
|
|
font-weight: bold;
|
|
display: inline-block;
|
|
padding: 0.4em;
|
|
margin-right: 1em;
|
|
}
|
|
|
|
.next:hover, .next-arrow:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.next-arrow {
|
|
background-image: url('~client/assets/creator/arrow.png');
|
|
width: 32px;
|
|
height: 32px;
|
|
display: inline-block;
|
|
vertical-align: bottom;
|
|
}
|
|
}
|
|
|
|
.badge-svg {
|
|
left: calc((100% - 18px) / 2);
|
|
cursor: pointer;
|
|
color: $gray-400;
|
|
background: $white;
|
|
padding: 4.5px 6px;
|
|
|
|
&.item-selected-badge {
|
|
background: $purple-300;
|
|
color: $white;
|
|
}
|
|
}
|
|
|
|
.icon-12 {
|
|
width: 12px;
|
|
height: 12px;
|
|
}
|
|
|
|
span.badge.badge-pill.badge-item.badge-svg:not(.item-selected-badge) {
|
|
color: #a5a1ac;
|
|
}
|
|
|
|
span.badge.badge-pill.badge-item.badge-svg.hide {
|
|
display: none;
|
|
}
|
|
|
|
.background-button:hover {
|
|
span.badge.badge-pill.badge-item.badge-svg.hide {
|
|
display: block;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import axios from 'axios';
|
|
import map from 'lodash/map';
|
|
import get from 'lodash/get';
|
|
import { mapState } from 'client/libs/store';
|
|
import avatar from './avatar';
|
|
import { getBackgroundShopSets } from '../../common/script/libs/shops';
|
|
import unlock from '../../common/script/ops/unlock';
|
|
import guide from 'client/mixins/guide';
|
|
import notifications from 'client/mixins/notifications';
|
|
|
|
import bModal from 'bootstrap-vue/lib/components/modal';
|
|
|
|
import logoPurple from 'assets/svg/logo-purple.svg';
|
|
import bodyIcon from 'assets/svg/body.svg';
|
|
import accessoriesIcon from 'assets/svg/accessories.svg';
|
|
import skinIcon from 'assets/svg/skin.svg';
|
|
import hairIcon from 'assets/svg/hair.svg';
|
|
import backgroundsIcon from 'assets/svg/backgrounds.svg';
|
|
import gem from 'assets/svg/gem.svg';
|
|
import pin from 'assets/svg/pin.svg';
|
|
import _isPinned from './shops/_isPinned';
|
|
|
|
|
|
export default {
|
|
mixins: [guide, notifications],
|
|
components: {
|
|
avatar,
|
|
bModal,
|
|
},
|
|
mounted () {
|
|
if (this.editing) this.modalPage = 2;
|
|
},
|
|
data () {
|
|
let backgroundShopSets = getBackgroundShopSets();
|
|
|
|
return {
|
|
backgroundShopSets,
|
|
backgroundUpdate: new Date(),
|
|
icons: Object.freeze({
|
|
logoPurple,
|
|
bodyIcon,
|
|
accessoriesIcon,
|
|
skinIcon,
|
|
hairIcon,
|
|
backgroundsIcon,
|
|
gem,
|
|
pin,
|
|
}),
|
|
modalPage: 1,
|
|
activeTopPage: 'body',
|
|
activeSubPage: 'size',
|
|
};
|
|
},
|
|
watch: {
|
|
editing () {
|
|
if (this.editing) this.modalPage = 2;
|
|
},
|
|
startingPage () {
|
|
if (!this.$store.state.avatarEditorOptions.startingPage) return;
|
|
this.activeTopPage = this.$store.state.avatarEditorOptions.startingPage;
|
|
this.activeSubPage = this.$store.state.avatarEditorOptions.subpage;
|
|
this.$store.state.avatarEditorOptions.startingPage = '';
|
|
this.$store.state.avatarEditorOptions.subpage = '';
|
|
},
|
|
},
|
|
computed: {
|
|
...mapState({user: 'user.data'}),
|
|
editing () {
|
|
return this.$store.state.avatarEditorOptions.editingUser;
|
|
},
|
|
startingPage () {
|
|
return this.$store.state.avatarEditorOptions.startingPage;
|
|
},
|
|
backgroundShopSetsByYear () {
|
|
// @TODO: add dates to backgrounds
|
|
let backgroundShopSetsByYear = {
|
|
2014: [],
|
|
2015: [],
|
|
2016: [],
|
|
2017: [],
|
|
};
|
|
|
|
// Hack to force update for now until we restructure the data
|
|
let backgroundUpdate = this.backgroundUpdate; // eslint-disable-line
|
|
|
|
this.backgroundShopSets.forEach((set) => {
|
|
let year = set.identifier.substr(set.identifier.length - 4);
|
|
if (!backgroundShopSetsByYear[year]) return;
|
|
|
|
let setOwnedByUser = false;
|
|
for (let key in set.items) {
|
|
if (this.user.purchased.background[key]) setOwnedByUser = true;
|
|
}
|
|
set.userOwns = setOwnedByUser;
|
|
|
|
backgroundShopSetsByYear[year].push(set);
|
|
});
|
|
return backgroundShopSetsByYear;
|
|
},
|
|
},
|
|
methods: {
|
|
prev () {
|
|
this.modalPage -= 1;
|
|
},
|
|
next () {
|
|
this.modalPage += 1;
|
|
},
|
|
changeTopPage (page, subpage) {
|
|
this.activeTopPage = page;
|
|
if (subpage) this.activeSubPage = subpage;
|
|
},
|
|
changeSubPage (page) {
|
|
this.activeSubPage = page;
|
|
},
|
|
set (settings) {
|
|
this.$store.dispatch('user:set', settings);
|
|
},
|
|
equip (key) {
|
|
this.$store.dispatch('common:equip', {key, type: 'equipped'});
|
|
this.user.items.gear.equipped[key] = !this.user.items.gear.equipped[key];
|
|
},
|
|
done () {
|
|
this.$root.$emit('hide::modal', 'avatar-modal');
|
|
this.$router.push('/');
|
|
this.$store.dispatch('user:set', {
|
|
'flags.welcomed': true,
|
|
});
|
|
|
|
// @TODO: This is a timeout to ensure dom is loaded
|
|
window.setTimeout(() => {
|
|
this.initTour();
|
|
this.goto('intro', 0);
|
|
}, 1000);
|
|
},
|
|
showPlainBackgroundBlurb (identifier, set) {
|
|
return identifier === 'incentiveBackgrounds' && !this.ownsSet('background', set);
|
|
},
|
|
ownsSet (type, set) {
|
|
let setOwnedByUser = false;
|
|
|
|
for (let key in set) {
|
|
let value = set[key];
|
|
if (type === 'background') key = value.key;
|
|
if (this.user.purchased[type][key]) setOwnedByUser = true;
|
|
}
|
|
|
|
return setOwnedByUser;
|
|
},
|
|
/**
|
|
* For gem-unlockable preferences, (a) if owned, select preference (b) else, purchase
|
|
* @param path: User.preferences <-> User.purchased maps like User.preferences.skin=abc <-> User.purchased.skin.abc.
|
|
* Pass in this paramater as "skin.abc". Alternatively, pass as an array ["skin.abc", "skin.xyz"] to unlock sets
|
|
*/
|
|
async unlock (path) {
|
|
let fullSet = path.indexOf(',') !== -1;
|
|
let isBackground = path.indexOf('background.') !== -1;
|
|
|
|
let cost;
|
|
|
|
if (isBackground) {
|
|
cost = fullSet ? 3.75 : 1.75; // (Backgrounds) 15G per set, 7G per individual
|
|
} else {
|
|
cost = fullSet ? 1.25 : 0.5; // (Hair, skin, etc) 5G per set, 2G per individual
|
|
}
|
|
|
|
let loginIncentives = ['background.blue', 'background.green', 'background.red', 'background.purple', 'background.yellow', 'background.violet'];
|
|
if (loginIncentives.indexOf(path) === -1) {
|
|
if (fullSet) {
|
|
if (confirm(this.$t('purchaseFor', {cost: cost * 4})) !== true) return;
|
|
// @TODO: implement gem modal
|
|
// if (this.user.balance < cost) return $rootScope.openModal('buyGems');
|
|
} else if (!get(this.user, `purchased.${path}`)) {
|
|
if (confirm(this.$t('purchaseFor', {cost: cost * 4})) !== true) return;
|
|
// @TODO: implement gem modal
|
|
// if (this.user.balance < cost) return $rootScope.openModal('buyGems');
|
|
}
|
|
}
|
|
|
|
await axios.post(`/api/v3/user/unlock?path=${path}`);
|
|
try {
|
|
unlock(this.user, {
|
|
query: {
|
|
path,
|
|
},
|
|
});
|
|
this.backgroundUpdate = new Date();
|
|
} catch (e) {
|
|
alert(e.message);
|
|
}
|
|
},
|
|
setKeys (type, _set) {
|
|
return map(_set, (v, k) => {
|
|
if (type === 'background') k = v.key;
|
|
return `${type}.${k}`;
|
|
}).join(',');
|
|
},
|
|
backgroundLockedStatus (bgKey) {
|
|
let backgroundClass = 'background-locked';
|
|
if (this.user.purchased.background[bgKey]) backgroundClass = 'background-unlocked';
|
|
return backgroundClass;
|
|
},
|
|
isBackgroundPinned (bg) {
|
|
return _isPinned(this.user, bg);
|
|
},
|
|
togglePinned (bg) {
|
|
if (!this.$store.dispatch('user:togglePinnedItem', {type: bg.pinType, path: bg.path})) {
|
|
this.text(this.$t('unpinnedItem', {item: bg.text}));
|
|
}
|
|
},
|
|
},
|
|
};
|
|
</script>
|