mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-02-15 01:02:48 +00:00
166 lines
4.0 KiB
Vue
166 lines
4.0 KiB
Vue
<template>
|
|
<ds-form v-model="form" @submit="handleSubmit" class="comment-form">
|
|
<template #default="{ errors }">
|
|
<base-card>
|
|
<hc-editor ref="editor" :users="users" :value="form.content" @input="updateEditorContent" />
|
|
<div class="buttons">
|
|
<os-button
|
|
variant="primary"
|
|
appearance="outline"
|
|
:disabled="disabled && !update"
|
|
@click="handleCancel"
|
|
data-test="cancel-button"
|
|
>
|
|
{{ $t('actions.cancel') }}
|
|
</os-button>
|
|
<os-button
|
|
variant="primary"
|
|
appearance="filled"
|
|
type="submit"
|
|
:loading="loading"
|
|
:disabled="disabled || !!errors"
|
|
>
|
|
{{ $t('post.comment.submit') }}
|
|
</os-button>
|
|
</div>
|
|
</base-card>
|
|
</template>
|
|
</ds-form>
|
|
</template>
|
|
|
|
<script>
|
|
import { OsButton } from '@ocelot-social/ui'
|
|
import HcEditor from '~/components/Editor/Editor'
|
|
import { COMMENT_MIN_LENGTH } from '~/constants/comment'
|
|
import { minimisedUserQuery } from '~/graphql/User'
|
|
import CommentMutations from '~/graphql/CommentMutations'
|
|
|
|
export default {
|
|
components: {
|
|
OsButton,
|
|
HcEditor,
|
|
},
|
|
props: {
|
|
update: { type: Boolean, default: () => false },
|
|
post: { type: Object, default: () => {} },
|
|
comment: {
|
|
type: Object,
|
|
default: () => {},
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
disabled: true,
|
|
loading: false,
|
|
form: {
|
|
content: !this.update || !this.comment.content ? '' : this.comment.content,
|
|
},
|
|
users: [],
|
|
}
|
|
},
|
|
methods: {
|
|
reply(message) {
|
|
this.$refs.editor.insertReply(message)
|
|
},
|
|
updateEditorContent(value) {
|
|
const sanitizedContent = this.$filters.removeHtml(value, false)
|
|
if (!this.update) {
|
|
if (sanitizedContent.length < COMMENT_MIN_LENGTH) {
|
|
this.disabled = true
|
|
} else {
|
|
this.disabled = false
|
|
}
|
|
} else {
|
|
this.disabled =
|
|
value === this.comment.content || sanitizedContent.length < COMMENT_MIN_LENGTH
|
|
}
|
|
this.form.content = value
|
|
},
|
|
clear() {
|
|
this.$refs.editor.clear()
|
|
},
|
|
closeEditWindow() {
|
|
this.$emit('finishEditing')
|
|
},
|
|
handleCancel() {
|
|
if (!this.update) {
|
|
this.clear()
|
|
} else {
|
|
this.closeEditWindow()
|
|
}
|
|
},
|
|
async handleSubmit() {
|
|
const mutateParams = !this.update
|
|
? {
|
|
mutation: CommentMutations(this.$i18n).CreateComment,
|
|
variables: {
|
|
postId: this.post.id,
|
|
content: this.form.content,
|
|
},
|
|
}
|
|
: {
|
|
mutation: CommentMutations(this.$i18n).UpdateComment,
|
|
variables: {
|
|
id: this.comment.id,
|
|
content: this.form.content,
|
|
},
|
|
}
|
|
|
|
this.loading = true
|
|
this.disabled = true
|
|
try {
|
|
const res = await this.$apollo.mutate(mutateParams)
|
|
if (!this.update) {
|
|
const {
|
|
data: { CreateComment },
|
|
} = res
|
|
this.$emit('createComment', CreateComment)
|
|
this.clear()
|
|
this.$toast.success(this.$t('post.comment.submitted'))
|
|
} else {
|
|
const {
|
|
data: { UpdateComment },
|
|
} = res
|
|
this.$emit('updateComment', UpdateComment)
|
|
this.$emit('collapse')
|
|
this.$toast.success(this.$t('post.comment.updated'))
|
|
this.closeEditWindow()
|
|
}
|
|
} catch (err) {
|
|
this.$toast.error(err.message)
|
|
this.disabled = false
|
|
} finally {
|
|
this.loading = false
|
|
}
|
|
},
|
|
},
|
|
apollo: {
|
|
User: {
|
|
query() {
|
|
return minimisedUserQuery()
|
|
},
|
|
update({ User }) {
|
|
this.users = User
|
|
},
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.comment-form {
|
|
.editor {
|
|
margin-bottom: $space-small;
|
|
}
|
|
|
|
.buttons {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
|
|
> button {
|
|
margin-left: $space-x-small;
|
|
}
|
|
}
|
|
}
|
|
</style>
|