aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/settings/settings.js41
-rw-r--r--src/components/settings/settings.vue12
-rw-r--r--src/components/user_card_content/user_card_content.vue8
-rw-r--r--src/components/user_panel/user_panel.vue1
-rw-r--r--src/components/user_settings/user_settings.js124
-rw-r--r--src/components/user_settings/user_settings.vue86
6 files changed, 220 insertions, 52 deletions
diff --git a/src/components/settings/settings.js b/src/components/settings/settings.js
index 8d6a6713..b3bb8290 100644
--- a/src/components/settings/settings.js
+++ b/src/components/settings/settings.js
@@ -9,8 +9,7 @@ const settings = {
hideNsfwLocal: this.$store.state.config.hideNsfw,
muteWordsString: this.$store.state.config.muteWords.join('\n'),
autoLoadLocal: this.$store.state.config.autoLoad,
- hoverPreviewLocal: this.$store.state.config.hoverPreview,
- previewfile: null
+ hoverPreviewLocal: this.$store.state.config.hoverPreview
}
},
components: {
@@ -21,44 +20,6 @@ const settings = {
return this.$store.state.users.currentUser
}
},
- methods: {
- uploadAvatar ({target}) {
- const file = target.files[0]
- // eslint-disable-next-line no-undef
- const reader = new FileReader()
- reader.onload = ({target}) => {
- const img = target.result
- this.previewfile = img
- }
- reader.readAsDataURL(file)
- },
- submitAvatar () {
- if (!this.previewfile) { return }
-
- const img = this.previewfile
- // eslint-disable-next-line no-undef
- let imginfo = new Image()
- let cropX, cropY, cropW, cropH
- imginfo.src = this.previewfile
- if (imginfo.height > imginfo.width) {
- cropX = 0
- cropW = imginfo.width
- cropY = Math.floor((imginfo.height - imginfo.width) / 2)
- cropH = imginfo.width
- } else {
- cropY = 0
- cropH = imginfo.height
- cropX = Math.floor((imginfo.width - imginfo.height) / 2)
- cropW = imginfo.height
- }
- this.$store.state.api.backendInteractor.updateAvatar({params: {img, cropX, cropY, cropW, cropH}}).then((user) => {
- if (!user.error) {
- this.$store.commit('addNewUsers', [user])
- this.$store.commit('setCurrentUser', user)
- }
- })
- }
- },
watch: {
hideAttachmentsLocal (value) {
this.$store.dispatch('setOption', { name: 'hideAttachments', value })
diff --git a/src/components/settings/settings.vue b/src/components/settings/settings.vue
index 1abb1789..6ff96fec 100644
--- a/src/components/settings/settings.vue
+++ b/src/components/settings/settings.vue
@@ -8,18 +8,6 @@
<h2>Theme</h2>
<style-switcher></style-switcher>
</div>
- <div class="setting-item" v-if="user">
- <h2>Avatar</h2>
- <p>Your current avatar:</p>
- <img :src="user.profile_image_url_original" class="old-avatar"></img>
- <p>Set new avatar:</p>
- <img class="new-avatar" v-bind:src="previewfile" v-if="previewfile">
- </img>
- <div>
- <input name="avatar-upload" id="avatar-upload" type="file" @change="uploadAvatar" ></input>
- </div>
- <button class="btn btn-default base05 base01-background" v-if="previewfile" @click="submitAvatar">Submit</button>
- </div>
<div class="setting-item">
<h2>Filtering</h2>
<p>All notices containing these words will be muted, one per line</p>
diff --git a/src/components/user_card_content/user_card_content.vue b/src/components/user_card_content/user_card_content.vue
index 8dcff3c5..7e60cb9d 100644
--- a/src/components/user_card_content/user_card_content.vue
+++ b/src/components/user_card_content/user_card_content.vue
@@ -2,6 +2,9 @@
<div id="heading" class="profile-panel-background" :style="headingStyle">
<div class="panel-heading text-center">
<div class='user-info'>
+ <router-link to='/user-settings' style="float: right;">
+ <i class="icon-cog usersettings"></i>
+ </router-link>
<div class='container'>
<img :src="user.profile_image_url">
<span class="glyphicon glyphicon-user"></span>
@@ -132,6 +135,11 @@
padding: 16px 16px 16px 16px;
margin-bottom: -4em;
+ .usersettings {
+ color: white;
+ opacity: 0.8;
+ }
+
.container{
display: flex;
flex-wrap: wrap;
diff --git a/src/components/user_panel/user_panel.vue b/src/components/user_panel/user_panel.vue
index c5a5ff43..69da422c 100644
--- a/src/components/user_panel/user_panel.vue
+++ b/src/components/user_panel/user_panel.vue
@@ -6,6 +6,7 @@
<div class="panel-footer base00-background">
<post-status-form v-if='user'></post-status-form>
+
</div>
</div>
<login-form v-if='!user'></login-form>
diff --git a/src/components/user_settings/user_settings.js b/src/components/user_settings/user_settings.js
new file mode 100644
index 00000000..fd20a6ad
--- /dev/null
+++ b/src/components/user_settings/user_settings.js
@@ -0,0 +1,124 @@
+import StyleSwitcher from '../style_switcher/style_switcher.vue'
+
+const UserSettings = {
+ data () {
+ return {
+ newname: this.$store.state.users.currentUser.name,
+ newbio: this.$store.state.users.currentUser.description,
+ uploading: [ false, false, false ],
+ previews: [ null, null, null ]
+ }
+ },
+ components: {
+ StyleSwitcher
+ },
+ computed: {
+ user () {
+ return this.$store.state.users.currentUser
+ }
+ },
+ methods: {
+ updateProfile () {
+ const name = this.newname
+ const description = this.newbio
+ this.$store.state.api.backendInteractor.updateProfile({params: {name, description}}).then((user) => {
+ if (!user.error) {
+ this.$store.commit('addNewUsers', [user])
+ this.$store.commit('setCurrentUser', user)
+ }
+ })
+ },
+ uploadFile (slot, e) {
+ const file = e.target.files[0]
+ if (!file) { return }
+ // eslint-disable-next-line no-undef
+ const reader = new FileReader()
+ reader.onload = ({target}) => {
+ const img = target.result
+ this.previews[slot] = img
+ this.$forceUpdate() // just changing the array with the index doesn't update the view
+ }
+ reader.readAsDataURL(file)
+ },
+ submitAvatar () {
+ if (!this.previews[0]) { return }
+
+ let img = this.previews[0]
+ // eslint-disable-next-line no-undef
+ let imginfo = new Image()
+ let cropX, cropY, cropW, cropH
+ imginfo.src = img
+ if (imginfo.height > imginfo.width) {
+ cropX = 0
+ cropW = imginfo.width
+ cropY = Math.floor((imginfo.height - imginfo.width) / 2)
+ cropH = imginfo.width
+ } else {
+ cropY = 0
+ cropH = imginfo.height
+ cropX = Math.floor((imginfo.width - imginfo.height) / 2)
+ cropW = imginfo.height
+ }
+ this.uploading[0] = true
+ this.$store.state.api.backendInteractor.updateAvatar({params: {img, cropX, cropY, cropW, cropH}}).then((user) => {
+ if (!user.error) {
+ this.$store.commit('addNewUsers', [user])
+ this.$store.commit('setCurrentUser', user)
+ this.previews[0] = null
+ }
+ this.uploading[0] = false
+ })
+ },
+ submitBanner () {
+ if (!this.previews[1]) { return }
+
+ let banner = this.previews[1]
+ // eslint-disable-next-line no-undef
+ let imginfo = new Image()
+ /* eslint-disable camelcase */
+ let offset_top, offset_left, width, height
+ imginfo.src = banner
+ width = imginfo.width
+ height = imginfo.height
+ offset_top = 0
+ offset_left = 0
+ this.uploading[1] = true
+ this.$store.state.api.backendInteractor.updateBanner({params: {banner, offset_top, offset_left, width, height}}).then((data) => {
+ if (!data.error) {
+ let clone = JSON.parse(JSON.stringify(this.$store.state.users.currentUser))
+ clone.cover_photo = data.url
+ this.$store.commit('addNewUsers', [clone])
+ this.$store.commit('setCurrentUser', clone)
+ this.previews[1] = null
+ }
+ this.uploading[1] = false
+ })
+ /* eslint-enable camelcase */
+ },
+ submitBg () {
+ if (!this.previews[2]) { return }
+ let img = this.previews[2]
+ // eslint-disable-next-line no-undef
+ let imginfo = new Image()
+ let cropX, cropY, cropW, cropH
+ imginfo.src = img
+ cropX = 0
+ cropY = 0
+ cropW = imginfo.width
+ cropH = imginfo.width
+ this.uploading[2] = true
+ this.$store.state.api.backendInteractor.updateBg({params: {img, cropX, cropY, cropW, cropH}}).then((data) => {
+ if (!data.error) {
+ let clone = JSON.parse(JSON.stringify(this.$store.state.users.currentUser))
+ clone.background_image = data.url
+ this.$store.commit('addNewUsers', [clone])
+ this.$store.commit('setCurrentUser', clone)
+ this.previews[2] = null
+ }
+ this.uploading[2] = false
+ })
+ }
+ }
+}
+
+export default UserSettings
diff --git a/src/components/user_settings/user_settings.vue b/src/components/user_settings/user_settings.vue
new file mode 100644
index 00000000..11da79e4
--- /dev/null
+++ b/src/components/user_settings/user_settings.vue
@@ -0,0 +1,86 @@
+<template>
+ <div class="settings panel panel-default base00-background">
+ <div class="panel-heading base01-background base04">
+ User Settings
+ </div>
+ <div class="panel-body profile-edit">
+ <div class="setting-item">
+ <h3>Name & Bio</h3>
+ <p>Name</p>
+ <input class='name-changer base03-border' id='username' v-model="newname" :value="user.screen_name"></input>
+ <p>Bio</p>
+ <textarea class="bio base03-border" v-model="newbio"></textarea>
+ <button :disabled='newname.length <= 0' class="btn btn-default base05 base01-background" @click="updateProfile">Submit</button>
+ </div>
+ <div class="setting-item">
+ <h3>Avatar</h3>
+ <p>Your current avatar:</p>
+ <img :src="user.profile_image_url_original" class="old-avatar"></img>
+ <p>Set new avatar:</p>
+ <img class="new-avatar" v-bind:src="previews[0]" v-if="previews[0]">
+ </img>
+ <div>
+ <input type="file" @change="uploadFile(0, $event)" ></input>
+ </div>
+ <i class="fa icon-spin4 animate-spin" v-if="uploading[0]"></i>
+ <button class="btn btn-default base05 base01-background" v-else-if="previews[0]" @click="submitAvatar">Submit</button>
+ </div>
+ <div class="setting-item">
+ <h3>Profile Banner</h3>
+ <p>Your current profile banner:</p>
+ <img :src="user.cover_photo" class="banner"></img>
+ <p>Set new profile banner:</p>
+ <img class="banner" v-bind:src="previews[1]" v-if="previews[1]">
+ </img>
+ <div>
+ <input type="file" @change="uploadFile(1, $event)" ></input>
+ </div>
+ <i class="fa icon-spin4 animate-spin uploading" v-if="uploading[1]"></i>
+ <button class="btn btn-default base05 base01-background" v-else-if="previews[1]" @click="submitBanner">Submit</button>
+ </div>
+ <div class="setting-item">
+ <h3>Profile Background</h3>
+ <p>Set new profile background:</p>
+ <img class="bg" v-bind:src="previews[2]" v-if="previews[2]">
+ </img>
+ <div>
+ <input type="file" @change="uploadFile(2, $event)" ></input>
+ </div>
+ <i class="fa icon-spin4 animate-spin uploading" v-if="uploading[2]"></i>
+ <button class="btn btn-default base05 base01-background" v-else-if="previews[2]" @click="submitBg">Submit</button>
+ </div>
+ </div>
+ </div>
+</template>
+
+<script src="./user_settings.js">
+</script>
+
+<style lang="scss">
+.profile-edit {
+ .name-changer {
+ border-width: 1px;
+ border-style: solid;
+ border-radius: 5px;
+ padding: 0.2em 0.2em 0.2em 0.2em;
+ }
+ .name-submit {
+ padding: 0.2em 0.5em 0.2em 0.5em;
+ }
+ .bio {
+ border-width: 1px;
+ border-style: solid;
+ border-radius: 5px;
+ margin: 0;
+ }
+ .banner {
+ max-width: 400px;
+ border-radius: 5px;
+ }
+
+ .uploading {
+ font-size: 1.5em;
+ margin: 0.25em;
+ }
+}
+</style>