Skip to content
Snippets Groups Projects
Unverified Commit 3d2024fa authored by Roeland Jago Douma's avatar Roeland Jago Douma Committed by GitHub
Browse files

Merge pull request #23305 from nextcloud/bugfix/noid/change-status-ux-fixes

UX improvements change status dialog
parents 547c9dbd 08813f54
No related branches found
No related tags found
No related merge requests found
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
...@@ -23,11 +23,16 @@ ...@@ -23,11 +23,16 @@
class="custom-input__form" class="custom-input__form"
@submit.prevent> @submit.prevent>
<input <input
ref="input"
maxlength="80" maxlength="80"
:disabled="disabled"
:placeholder="$t('user_status', 'What\'s your status?')" :placeholder="$t('user_status', 'What\'s your status?')"
type="text" type="text"
:value="message" :value="message"
@change="change"> @change="change"
@keyup="change"
@paste="change"
@keyup.enter="submit">
</form> </form>
</template> </template>
...@@ -40,8 +45,16 @@ export default { ...@@ -40,8 +45,16 @@ export default {
required: true, required: true,
default: () => '', default: () => '',
}, },
disabled: {
type: Boolean,
default: false,
},
}, },
methods: { methods: {
focus() {
this.$refs.input.focus()
},
/** /**
* Notifies the parent component about a changed input * Notifies the parent component about a changed input
* *
...@@ -50,6 +63,10 @@ export default { ...@@ -50,6 +63,10 @@ export default {
change(event) { change(event) {
this.$emit('change', event.target.value) this.$emit('change', event.target.value)
}, },
submit(event) {
this.$emit('submit', event.target.value)
},
}, },
} }
</script> </script>
......
...@@ -49,8 +49,10 @@ ...@@ -49,8 +49,10 @@
</button> </button>
</EmojiPicker> </EmojiPicker>
<CustomMessageInput <CustomMessageInput
ref="customMessageInput"
:message="message" :message="message"
@change="setMessage" /> @change="setMessage"
@submit="saveStatus" />
</div> </div>
<PredefinedStatusesList <PredefinedStatusesList
@selectStatus="selectPredefinedMessage" /> @selectStatus="selectPredefinedMessage" />
...@@ -58,10 +60,10 @@ ...@@ -58,10 +60,10 @@
:clear-at="clearAt" :clear-at="clearAt"
@selectClearAt="setClearAt" /> @selectClearAt="setClearAt" />
<div class="status-buttons"> <div class="status-buttons">
<button class="status-buttons__select" @click="clearStatus"> <button class="status-buttons__select" :disabled="isSavingStatus" @click="clearStatus">
{{ $t('user_status', 'Clear status message') }} {{ $t('user_status', 'Clear status message') }}
</button> </button>
<button class="status-buttons__primary primary" @click="saveStatus"> <button class="status-buttons__primary primary" :disabled="isSavingStatus" @click="saveStatus">
{{ $t('user_status', 'Set status message') }} {{ $t('user_status', 'Set status message') }}
</button> </button>
</div> </div>
...@@ -98,7 +100,8 @@ export default { ...@@ -98,7 +100,8 @@ export default {
return { return {
clearAt: null, clearAt: null,
icon: null, icon: null,
message: null, message: '',
isSavingStatus: false,
statuses: getAllStatusOptions(), statuses: getAllStatusOptions(),
} }
}, },
...@@ -119,7 +122,7 @@ export default { ...@@ -119,7 +122,7 @@ export default {
mounted() { mounted() {
this.messageId = this.$store.state.userStatus.messageId this.messageId = this.$store.state.userStatus.messageId
this.icon = this.$store.state.userStatus.icon this.icon = this.$store.state.userStatus.icon
this.message = this.$store.state.userStatus.message this.message = this.$store.state.userStatus.message || ''
if (this.$store.state.userStatus.clearAt !== null) { if (this.$store.state.userStatus.clearAt !== null) {
this.clearAt = { this.clearAt = {
...@@ -143,6 +146,9 @@ export default { ...@@ -143,6 +146,9 @@ export default {
setIcon(icon) { setIcon(icon) {
this.messageId = null this.messageId = null
this.icon = icon this.icon = icon
this.$nextTick(() => {
this.$refs.customMessageInput.focus()
})
}, },
/** /**
* Sets a new message * Sets a new message
...@@ -178,6 +184,10 @@ export default { ...@@ -178,6 +184,10 @@ export default {
* @returns {Promise<void>} * @returns {Promise<void>}
*/ */
async saveStatus() { async saveStatus() {
if (this.isSavingStatus) {
return
}
try { try {
this.isSavingStatus = true this.isSavingStatus = true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment