parent
							
								
									779bd244a6
								
							
						
					
					
						commit
						e5d56a7cfe
					
				
					 2 changed files with 4 additions and 3 deletions
				
			
		|  | @ -24,7 +24,7 @@ | ||||||
| <script lang="ts"> | <script lang="ts"> | ||||||
| import { defineComponent, defineAsyncComponent } from 'vue'; | import { defineComponent, defineAsyncComponent } from 'vue'; | ||||||
| import insertTextAtCursor from 'insert-text-at-cursor'; | import insertTextAtCursor from 'insert-text-at-cursor'; | ||||||
| import * as autosize from 'autosize'; | import autosize from 'autosize'; | ||||||
| import { formatTimeString } from '@/scripts/format-time-string'; | import { formatTimeString } from '@/scripts/format-time-string'; | ||||||
| import { selectFile } from '@/scripts/select-file'; | import { selectFile } from '@/scripts/select-file'; | ||||||
| import * as os from '@/os'; | import * as os from '@/os'; | ||||||
|  | @ -76,7 +76,8 @@ export default defineComponent({ | ||||||
| 		autosize(this.$refs.text); | 		autosize(this.$refs.text); | ||||||
| 
 | 
 | ||||||
| 		// TODO: detach when unmount | 		// TODO: detach when unmount | ||||||
| 		new Autocomplete(this.$refs.text, this, { model: 'text' }); | 		// TODO | ||||||
|  | 		//new Autocomplete(this.$refs.text, this, { model: 'text' }); | ||||||
| 
 | 
 | ||||||
| 		// 書きかけの投稿を復元 | 		// 書きかけの投稿を復元 | ||||||
| 		const draft = JSON.parse(localStorage.getItem('message_drafts') || '{}')[this.draftKey]; | 		const draft = JSON.parse(localStorage.getItem('message_drafts') || '{}')[this.draftKey]; | ||||||
|  |  | ||||||
|  | @ -11,7 +11,7 @@ | ||||||
| 			<button v-show="existMoreMessages" ref="loadMore" class="more _button" :class="{ fetching: fetchingMoreMessages }" :disabled="fetchingMoreMessages" @click="fetchMoreMessages"> | 			<button v-show="existMoreMessages" ref="loadMore" class="more _button" :class="{ fetching: fetchingMoreMessages }" :disabled="fetchingMoreMessages" @click="fetchMoreMessages"> | ||||||
| 				<template v-if="fetchingMoreMessages"><i class="fas fa-spinner fa-pulse fa-fw"></i></template>{{ fetchingMoreMessages ? $ts.loading : $ts.loadMore }} | 				<template v-if="fetchingMoreMessages"><i class="fas fa-spinner fa-pulse fa-fw"></i></template>{{ fetchingMoreMessages ? $ts.loading : $ts.loadMore }} | ||||||
| 			</button> | 			</button> | ||||||
| 			<XList v-slot="{ item: message }" class="messages" :items="messages" direction="up" reversed> | 			<XList v-if="messages.length > 0" v-slot="{ item: message }" class="messages" :items="messages" direction="up" reversed> | ||||||
| 				<XMessage :key="message.id" :message="message" :is-group="group != null"/> | 				<XMessage :key="message.id" :message="message" :is-group="group != null"/> | ||||||
| 			</XList> | 			</XList> | ||||||
| 		</div> | 		</div> | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue