38 lines
724 B
JavaScript
38 lines
724 B
JavaScript
|
module.exports = {
|
||
|
props: ['user'],
|
||
|
|
||
|
/**
|
||
|
* The component's data.
|
||
|
*/
|
||
|
data() {
|
||
|
return {
|
||
|
form: $.extend(true, new SparkForm({
|
||
|
name: '',
|
||
|
email: ''
|
||
|
}), Spark.forms.updateContactInformation)
|
||
|
};
|
||
|
},
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Bootstrap the component.
|
||
|
*/
|
||
|
mounted() {
|
||
|
this.form.name = this.user.name;
|
||
|
this.form.email = this.user.email;
|
||
|
},
|
||
|
|
||
|
|
||
|
methods: {
|
||
|
/**
|
||
|
* Update the user's contact information.
|
||
|
*/
|
||
|
update() {
|
||
|
Spark.put('/settings/contact', this.form)
|
||
|
.then(() => {
|
||
|
Bus.$emit('updateUser');
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
};
|