Do not override sidebar with thread (#8277)

This commit is contained in:
Kristina 2025-03-19 17:26:16 +04:00 committed by GitHub
parent e1d479ab64
commit d5b11c1ed3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 24 additions and 6 deletions

View File

@ -127,7 +127,7 @@
const thread = loc.path[4] as Ref<ActivityMessage> | undefined
if (thread !== undefined) {
void openThreadInSidebar(thread)
void openThreadInSidebar(thread, undefined, undefined, undefined, undefined, false)
}
}

View File

@ -339,8 +339,23 @@ export async function openThreadInSidebar (
msg?: ActivityMessage,
doc?: Doc,
selectedMessageId?: Ref<ActivityMessage>,
props?: Record<string, any>
props?: Record<string, any>,
force: boolean = true
): Promise<void> {
const sidebar = get(sidebarStore)
if (!force && sidebar.widget != null && sidebar.widget !== chunter.ids.ChatWidget) {
removeThreadFromLoc(_id)
return
}
const state = sidebar.widget === chunter.ids.ChatWidget ? sidebar.widgetsState.get(chunter.ids.ChatWidget) : undefined
const currentTabs = sidebar.widgetsState.get(chunter.ids.ChatWidget)?.tabs ?? []
const currentTab = state != null ? currentTabs.find((t) => t.id === state.tab) : undefined
if (!force && currentTab != null && (currentTab.isPinned === true || !currentTab.id.startsWith('thread_'))) {
removeThreadFromLoc(_id)
return
}
const client = getClient()
const widget = client.getModel().findAllSync(workbench.class.Widget, { _id: chunter.ids.ChatWidget })[0]
@ -362,7 +377,7 @@ export async function openThreadInSidebar (
}
const allowedPath = loc.path.join('/')
const currentTabs = get(sidebarStore).widgetsState.get(widget._id)?.tabs ?? []
const tabsToClose = currentTabs.filter((t) => t.isPinned !== true && t.allowedPath === allowedPath).map((t) => t.id)
if (tabsToClose.length > 0) {

View File

@ -235,7 +235,8 @@ export default plugin(chunterId, {
msg?: ActivityMessage,
doc?: Doc,
selectedId?: Ref<ActivityMessage>,
props?: Record<string, any>
props?: Record<string, any>,
force?: boolean
) => Promise<void>
>,
OpenChannelInSidebar: '' as Resource<

View File

@ -192,7 +192,7 @@
if (thread !== undefined) {
const fn = await getResource(chunter.function.OpenThreadInSidebar)
void fn(thread, undefined, undefined, selectedMessageId, { autofocus: false })
void fn(thread, undefined, undefined, selectedMessageId, { autofocus: false }, false)
}
if (selectedMessageId !== undefined) {

View File

@ -50,7 +50,7 @@ import notification, {
type NotificationProviderSetting,
type NotificationTypeSetting
} from '@hcengineering/notification'
import { getMetadata } from '@hcengineering/platform'
import { getMetadata, getResource } from '@hcengineering/platform'
import { MessageBox, createQuery, getClient } from '@hcengineering/presentation'
import {
getCurrentLocation,
@ -552,6 +552,8 @@ async function navigateToInboxDoc (
if (thread !== undefined) {
loc.path[4] = thread
loc.path.length = 5
const fn = await getResource(chunter.function.OpenThreadInSidebar)
void fn(thread, undefined, undefined, message, { autofocus: false })
} else {
loc.path[4] = ''
loc.path.length = 4