mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-30 04:05:40 +00:00
78 lines
2.1 KiB
Svelte
78 lines
2.1 KiB
Svelte
<!--
|
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
|
// Copyright © 2021 Hardcore Engineering Inc.
|
|
//
|
|
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License. You may
|
|
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
//
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
-->
|
|
|
|
<script lang="ts">
|
|
|
|
import type { Doc, Ref, Space } from '@anticrm/core'
|
|
import type { Comment } from '@anticrm/chunter'
|
|
import { ReferenceInput } from '@anticrm/text-editor'
|
|
import { createQuery, getClient } from '@anticrm/presentation'
|
|
import { ScrollBox, Grid } from '@anticrm/ui'
|
|
|
|
import chunter from '@anticrm/chunter'
|
|
import CommentPresenter from './CommentPresenter.svelte'
|
|
|
|
export let object: Doc
|
|
export let space: Ref<Space>
|
|
|
|
let comments: Comment[]
|
|
|
|
const client = getClient()
|
|
const query = createQuery()
|
|
$: query.query(chunter.class.Comment, { attachedTo: object._id }, result => { comments = result })
|
|
|
|
function onMessage(event: CustomEvent) {
|
|
client.createDoc(chunter.class.Comment, space, {
|
|
attachedTo: object._id,
|
|
message: event.detail
|
|
})
|
|
console.log(event.detail)
|
|
}
|
|
</script>
|
|
|
|
<div class="container">
|
|
<div class="msg-board">
|
|
<ScrollBox vertical stretch noShift>
|
|
{#if comments}
|
|
<Grid column={1} rowGap={1.5}>
|
|
{#each comments as comment}
|
|
<CommentPresenter value={comment} />
|
|
{/each}
|
|
</Grid>
|
|
{/if}
|
|
</ScrollBox>
|
|
</div>
|
|
<ReferenceInput on:message={onMessage}/>
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.container {
|
|
flex-grow: 1;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
height: max-content;
|
|
|
|
.msg-board {
|
|
flex-grow: 1;
|
|
margin-bottom: 1.5em;
|
|
min-height: 2rem;
|
|
height: max-content;
|
|
}
|
|
}
|
|
</style>
|