- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- 101
- 102
- 103
- 104
- 105
- 106
- 107
- 108
- 109
- 110
- 111
- 112
- 113
- 114
- 115
- 116
- 117
- 118
- 119
- 120
- 121
- 122
- 123
- 124
- 125
- 126
- 127
- 128
- 129
- 130
- 131
- 132
- 133
- 134
- 135
- 136
- 137
- 138
- 139
- 140
- 141
- 142
- 143
- 144
- 145
- 146
- 147
- 148
- 149
- 150
- 151
- 152
- 153
- 154
- 155
- 156
- 157
- 158
- 159
- 160
- 161
- 162
- 163
- 164
- 165
- 166
- 167
- 168
- 169
- 170
- 171
- 172
- 173
- 174
- 175
- 176
- 177
- 178
- 179
- 180
- 181
- 182
- 183
- 184
- 185
- 186
- 187
- 188
- 189
- 190
- 191
- 192
- 193
- 194
- 195
- 196
- 197
- 198
- 199
- 200
- 201
- 202
- 203
- 204
- 205
- 206
- 207
- 208
- 209
- 210
- 211
- 212
- 213
- 214
- 215
- 216
- 217
<template>
<v-container grid-list-xl>
<v-snackbar
v-model='snackbar.show' :color='snackbar.color'
:timeout='4000'
:absolute='false'
:top='true'>
{{ snackbar.text }}
</v-snackbar>
<header>
<h3>Account Settings</h3>
</header>
<v-layout row wrap>
<v-flex sm10 offset-sm1>
<h3>Change password</h3>
<v-form v-model="passwordFormValid" ref="form" lazy-validation>
<v-card light>
<v-card-text>
<v-text-field
box
label="Current password"
type='email'
required
v-model="currentPassword"
append-icon="lock"
:rules="[rules.required]"
></v-text-field>
<v-text-field
box
label="New password"
required
v-model="newPassword1"
:type="hidePassword ? 'password' : 'text'"
:error-messages='mismatchError'
@keyup="checkForPasswordMismatch"
:append-icon="hidePassword ? 'visibility_off' : 'visibility'"
:append-icon-cb="() => (hidePassword = !hidePassword)"
></v-text-field>
<v-text-field
box
label="Retype new password"
required
v-model="newPassword2"
:type="hidePassword ? 'password' : 'text'"
@keyup="checkForPasswordMismatch"
:error-messages='mismatchError'
:append-icon="hidePassword ? 'visibility_off' : 'visibility'"
:append-icon-cb="() => (hidePassword = !hidePassword)"
></v-text-field>
</v-card-text>
<v-card-text>
<v-btn block color='primary' @click='updatePassword'>SAVE</v-btn>
</v-card-text>
</v-card>
</v-form>
</v-flex>
<v-flex sm10 offset-sm1>
<v-card color="" flat>
<v-btn to='/dashboard/credit-cards' color='white' large block class='margin'>Manage Credit Cards</v-btn>
</v-card>
<v-card flat>
<v-btn to='/dashboard/addresses' color='white' large block class="margin">Manage Shipping Addresses</v-btn>
</v-card>
<v-card flat>
<v-btn to='/dashboard/orders' color='white' large block class="margin">View Order History</v-btn>
</v-card>
</v-flex>
<v-flex sm10 offset-sm1>
<v-card>
<v-card-text>
<v-switch
color='primary'
:label="`Receive updates & offers via email?`"
hide-details
@change='updateEmailPreference'
v-model='receiveEmails'
>
</v-switch>
</v-card-text>
</v-card>
</v-flex>
</v-layout>
</v-container>
</template>
<script>
import axios from 'axios'
import { mapState } from 'vuex'
export default {
data () {
return {
isSubmitting: false,
// password related vars
hidePassword: true,
currentPassword: null,
newPassword1: null,
newPassword2: null,
newPassword1Activated: false,
passwordFormValid: true,
mismatchError: [],
rules: {
required: (value) => !!value || 'Required.',
},
snackbar: {
show: 0,
text: null,
color: null,
},
}
},
computed: {
receiveEmails: {
get () {
return this.$store.state.user.preferences.receiveEmails
},
set (v) {
const obj = { ...this.$store.state.user.preferences, receiveEmails: v }
this.$store.dispatch('updatePreferences', obj)
}
}
},
mounted ()
{
},
methods: {
checkForPasswordMismatch ()
{
if (this.mismatchError.length && this.newPassword1 != this.newPassword2)
{
this.mismatchError.push('New passwords do not match')
}
else
{
this.mismatchError = []
}
},
async updatePassword()
{
if (this.newPassword1 != this.newPassword2)
{
this.mismatchError.push('New passwords do not match')
return
}
if (this.$refs.form.validate())
{
this.mismatchError = []
await axios({
method: 'post',
url: `${window.api}/user/update-password/`,
headers: {Authorization: `Bearer ${this.$store.state.user.jwt}`},
data: {
current: this.currentPassword,
new: this.newPassword1,
new2: this.newPassword2
}
})
.then(res => {
this.snackbar.show = 1
this.snackbar.text = res.data.payload.message
this.snackbar.color = res.data.result ? 'success' : 'error'
})
.catch(e => { })
}
},
updateEmailPreference ()
{
console.log('this preferences')
console.log(this.preferences)
//this.preferences.receiveEmails = !this.preferences.receiveEmails
const obj = { ...this.$store.state.user.preferences }
this.$store.dispatch('updatePreferences', obj)
}
}
}
</script>
<style lang='stylus' scoped >
@import '../../assets/css/variables';
h3
margin-bottom 1em
.margin
margin-bottom 2em
.card a
color #666
margin-bottom 1.3em
padding 2em
</style>