mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 14:17:22 +01:00
* Fixed login/reg styles and on submit * Fixed duedate display in yesterdailiy modal * Prevented tutorial from showing after logged in has past created * Hide premium shirts from creating * Fixed level up notification * Updated categoires * Updated justin message * Fixed notification changes * Fixed guild nav in join guild modal * Added buygems modal * Removed avatar page click * Fixed group plan nav * Fixed death issue * Fixed party header styles
82 lines
1.7 KiB
Vue
82 lines
1.7 KiB
Vue
<template lang="pug">
|
|
b-modal#yesterdaily(size='m', :hide-header="true", :hide-footer="true")
|
|
.modal-body
|
|
h1.header-welcome.text-center {{ $t('welcomeBack') }}
|
|
p.call-to-action.text-center {{ $t('checkOffYesterDailies') }}
|
|
.tasks-list
|
|
task(
|
|
v-for='task in tasksByType["daily"]',
|
|
:key='task.id',
|
|
:task='task',
|
|
:isUser='true',
|
|
:dueDate='dueDate',
|
|
)
|
|
.start-day.text-center
|
|
button.btn.btn-primary(@click='close()') {{ $t('yesterDailiesCallToAction') }}
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '~client/assets/scss/colors.scss';
|
|
|
|
.header-welcome {
|
|
color: $purple-200;
|
|
margin-top: 1.33333em;
|
|
}
|
|
|
|
.call-to-action {
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.tasks-list {
|
|
border-radius: 4px;
|
|
background: $gray-600;
|
|
padding: 8px;
|
|
padding-bottom: 0.1px;
|
|
position: relative;
|
|
height: calc(100% - 64px);
|
|
overflow: auto;
|
|
}
|
|
|
|
.start-day {
|
|
margin: 2em auto 2em auto;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import axios from 'axios';
|
|
import moment from 'moment';
|
|
import { mapState } from 'client/libs/store';
|
|
import bModal from 'bootstrap-vue/lib/components/modal';
|
|
import Task from './tasks/task';
|
|
|
|
export default {
|
|
props: ['yesterDailies'],
|
|
components: {
|
|
bModal,
|
|
Task,
|
|
},
|
|
data () {
|
|
return {
|
|
dueDate: moment().subtract(1, 'days'),
|
|
};
|
|
},
|
|
computed: {
|
|
...mapState({user: 'user.data'}),
|
|
tasksByType () {
|
|
return {
|
|
daily: this.yesterDailies,
|
|
};
|
|
},
|
|
},
|
|
methods: {
|
|
async close () {
|
|
await axios.post('/api/v3/cron');
|
|
// @TODO: Better way to sync user?
|
|
window.location.href = '/';
|
|
this.$root.$emit('hide::modal', 'yesterdaily');
|
|
},
|
|
},
|
|
};
|
|
</script>
|