mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-05 17:27:41 +02:00
100 lines
2.9 KiB
TypeScript
100 lines
2.9 KiB
TypeScript
// Copyright © 2025 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.
|
|
|
|
import { getCurrentAccount, type Ref, generateId } from '@hcengineering/core'
|
|
import { derived, get } from 'svelte/store'
|
|
import { type Location, location } from '@hcengineering/ui'
|
|
import { type Card } from '@hcengineering/card'
|
|
import { EmptyMarkup } from '@hcengineering/text'
|
|
import { type Message } from '@hcengineering/communication-types'
|
|
|
|
import { type MessageDraft } from './types'
|
|
import { toMarkup } from './utils'
|
|
|
|
export const locationWorkspaceStore = derived(location, (loc: Location) => loc.path[1])
|
|
|
|
function geLocalStorageKey (card: Ref<Card>): string | undefined {
|
|
const me = getCurrentAccount()
|
|
const workspace = get(locationWorkspaceStore) ?? ''
|
|
if (me == null || workspace === '') return undefined
|
|
return `${workspace}.${me.uuid}.${card}.message_draft.v1`
|
|
}
|
|
|
|
export function getEmptyDraft (): MessageDraft {
|
|
return {
|
|
_id: generateId(),
|
|
content: EmptyMarkup,
|
|
blobs: [],
|
|
links: []
|
|
}
|
|
}
|
|
|
|
export function getDraft (card: Ref<Card>): MessageDraft {
|
|
const key = geLocalStorageKey(card)
|
|
|
|
if (key === undefined) {
|
|
return getEmptyDraft()
|
|
}
|
|
const stored = localStorage.getItem(key)
|
|
|
|
if (stored == null) {
|
|
return getEmptyDraft()
|
|
}
|
|
|
|
try {
|
|
const data = JSON.parse(stored)
|
|
return {
|
|
_id: data._id ?? generateId(),
|
|
content: data.content ?? EmptyMarkup,
|
|
blobs: data.blobs ?? [],
|
|
links: data.links ?? []
|
|
}
|
|
} catch (e) {
|
|
console.error(e)
|
|
return getEmptyDraft()
|
|
}
|
|
}
|
|
|
|
let timer: any | undefined
|
|
|
|
export function removeDraft (card: Ref<Card>): void {
|
|
if (timer !== undefined) clearTimeout(timer)
|
|
const key = geLocalStorageKey(card)
|
|
if (key === undefined) return
|
|
localStorage.removeItem(key)
|
|
}
|
|
|
|
export function saveDraft (card: Ref<Card>, draft: MessageDraft): void {
|
|
if (timer !== undefined) clearTimeout(timer)
|
|
const key = geLocalStorageKey(card)
|
|
if (key === undefined) return
|
|
timer = setTimeout(() => {
|
|
localStorage.setItem(key, JSON.stringify(draft))
|
|
}, 1000)
|
|
}
|
|
|
|
export function messageToDraft (message: Message): MessageDraft {
|
|
return {
|
|
_id: message.id,
|
|
content: toMarkup(message.content),
|
|
links: [...message.linkPreviews],
|
|
blobs: message.blobs.map((it) => ({
|
|
blobId: it.blobId,
|
|
contentType: it.contentType,
|
|
fileName: it.fileName,
|
|
size: it.size,
|
|
metadata: it.metadata
|
|
}))
|
|
}
|
|
}
|