2018-02-27 06:22:56 +00:00
|
|
|
<textarea
|
|
|
|
class="compose-box-input"
|
|
|
|
placeholder="What's on your mind?"
|
|
|
|
ref:textarea
|
2018-03-03 22:51:48 +00:00
|
|
|
bind:value=rawText
|
2018-03-01 02:45:29 +00:00
|
|
|
on:blur="onBlur()"
|
2018-02-27 06:22:56 +00:00
|
|
|
></textarea>
|
|
|
|
<style>
|
|
|
|
.compose-box-input {
|
|
|
|
grid-area: input;
|
|
|
|
margin: 10px 0 0 5px;
|
|
|
|
padding: 10px;
|
|
|
|
border: 1px solid var(--input-border);
|
|
|
|
min-height: 75px;
|
|
|
|
resize: none;
|
|
|
|
overflow: hidden;
|
|
|
|
word-wrap: break-word;
|
|
|
|
/* Text must be at least 16px or else iOS Safari zooms in */
|
|
|
|
font-size: 1.2em;
|
|
|
|
/* Hack to make Edge stretch the element all the way to the right.
|
|
|
|
* Also desktop Safari makes the gauge stretch too far to the right without it.
|
|
|
|
*/
|
|
|
|
width: calc(100% - 5px);
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<script>
|
|
|
|
import { store } from '../../_store/store'
|
|
|
|
import { autosize } from '../../_utils/autosize'
|
|
|
|
import { scheduleIdleTask } from '../../_utils/scheduleIdleTask'
|
|
|
|
import debounce from 'lodash/debounce'
|
|
|
|
import { mark, stop } from '../../_utils/marks'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
oncreate() {
|
2018-03-03 18:11:32 +00:00
|
|
|
this.setupSyncFromStore()
|
|
|
|
this.setupSyncToStore()
|
|
|
|
this.setupAutosize()
|
2018-02-27 06:22:56 +00:00
|
|
|
},
|
|
|
|
ondestroy() {
|
2018-03-03 18:11:32 +00:00
|
|
|
this.teardownAutosize()
|
2018-02-27 06:22:56 +00:00
|
|
|
},
|
2018-03-01 02:45:29 +00:00
|
|
|
methods: {
|
2018-03-03 18:11:32 +00:00
|
|
|
setupSyncFromStore() {
|
2018-03-20 03:58:53 +00:00
|
|
|
let textarea = this.refs.textarea
|
|
|
|
let firstTime = true
|
2018-03-03 22:51:48 +00:00
|
|
|
this.observe('text', text => {
|
|
|
|
this.set({rawText: text})
|
2018-03-20 03:58:53 +00:00
|
|
|
if (firstTime) {
|
|
|
|
firstTime = false
|
|
|
|
if (this.get('autoFocus')) {
|
|
|
|
textarea.focus()
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
mark('autosize.update()')
|
|
|
|
autosize.update(textarea)
|
|
|
|
stop('autosize.update()')
|
2018-03-17 02:04:48 +00:00
|
|
|
}
|
2018-03-03 18:11:32 +00:00
|
|
|
})
|
|
|
|
},
|
|
|
|
setupSyncToStore() {
|
|
|
|
const saveText = debounce(() => scheduleIdleTask(() => this.store.save()), 1000)
|
|
|
|
|
2018-03-03 22:51:48 +00:00
|
|
|
this.observe('rawText', rawText => {
|
2018-03-03 22:58:45 +00:00
|
|
|
mark('observe rawText')
|
2018-03-03 18:11:32 +00:00
|
|
|
let realm = this.get('realm')
|
2018-03-03 22:51:48 +00:00
|
|
|
this.store.setComposeData(realm, {text: rawText})
|
2018-03-03 18:11:32 +00:00
|
|
|
saveText()
|
2018-03-03 22:58:45 +00:00
|
|
|
stop('observe rawText')
|
2018-03-03 18:11:32 +00:00
|
|
|
}, {init: false})
|
|
|
|
},
|
|
|
|
setupAutosize() {
|
2018-03-20 03:58:53 +00:00
|
|
|
let textarea = this.refs.textarea
|
2018-03-03 18:11:32 +00:00
|
|
|
requestAnimationFrame(() => {
|
|
|
|
mark('autosize()')
|
2018-03-20 03:58:53 +00:00
|
|
|
autosize(textarea)
|
2018-03-03 18:11:32 +00:00
|
|
|
stop('autosize()')
|
|
|
|
})
|
|
|
|
},
|
|
|
|
teardownAutosize() {
|
|
|
|
mark('autosize.destroy()')
|
|
|
|
autosize.destroy(this.refs.textarea)
|
|
|
|
stop('autosize.destroy()')
|
|
|
|
},
|
2018-03-01 02:45:29 +00:00
|
|
|
onBlur() {
|
|
|
|
this.store.set({composeSelectionStart: this.refs.textarea.selectionStart})
|
|
|
|
}
|
|
|
|
},
|
2018-02-27 06:22:56 +00:00
|
|
|
store: () => store,
|
2018-03-03 22:51:48 +00:00
|
|
|
data: () => ({
|
|
|
|
rawText: ''
|
2018-03-20 03:58:53 +00:00
|
|
|
}),
|
|
|
|
computed: {
|
|
|
|
postedStatusForRealm: ($postedStatusForRealm) => $postedStatusForRealm
|
|
|
|
}
|
2018-02-27 06:22:56 +00:00
|
|
|
}
|
|
|
|
</script>
|