-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathControlExt.svelte
More file actions
169 lines (146 loc) · 5.54 KB
/
ControlExt.svelte
File metadata and controls
169 lines (146 loc) · 5.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!--
// Copyright © 2024 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 { IdMap, Ref, toIdMap } from '@hcengineering/core'
import { isOffice, ParticipantInfo, Room } from '@hcengineering/love'
import { getClient } from '@hcengineering/presentation'
import { closePopup, eventToHTMLElement, Location, location, showPopup, closeTooltip } from '@hcengineering/ui'
import { onDestroy } from 'svelte'
import workbench from '@hcengineering/workbench'
import { closeWidget, sidebarStore } from '@hcengineering/workbench-resources'
import love from '../../plugin'
import { currentRoom, infos, myInfo, rooms } from '../../stores'
import { createMeetingWidget, getRoomName } from '../../utils'
import PersonActionPopup from '../PersonActionPopup.svelte'
import RoomPopup from '../RoomPopup.svelte'
import RoomButton from '../RoomButton.svelte'
import { leaveMeeting, currentMeetingRoom } from '../../meetings'
import { lkSessionConnected } from '../../liveKitClient'
const client = getClient()
interface ActiveRoom extends Room {
participants: ParticipantInfo[]
}
function getActiveRooms (rooms: Room[], infos: ParticipantInfo[]): ActiveRoom[] {
const roomMap = toIdMap(rooms)
const map: IdMap<ActiveRoom> = new Map()
for (const info of infos) {
if (info.room === love.ids.Reception) continue
const room = roomMap.get(info.room)
if (room === undefined) continue
// temprory disabled check for floor
// if (room.floor !== selectedFloor?._id) continue
const _id = room._id as Ref<ActiveRoom>
const active = map.get(_id) ?? { ...room, _id, participants: [] }
active.participants.push(info)
map.set(_id, active)
}
const arr = Array.from(map.values()).filter(
(r) => !isOffice(r) || r.participants.length > 1 || r.person !== r.participants[0]?.person
)
return arr
}
$: activeRooms = getActiveRooms($rooms, $infos)
function openRoom (room: Room): (e: MouseEvent) => void {
return (e: MouseEvent) => {
closeTooltip()
showPopup(RoomPopup, { room }, eventToHTMLElement(e))
}
}
const myInvitesCategory = 'myInvites'
$: reception = $rooms.find((f) => f._id === love.ids.Reception)
$: receptionParticipants = $infos.filter((p) => p.room === love.ids.Reception)
function checkActiveMeeting (loc: Location, meetingSessionConnected: boolean, room: Ref<Room> | undefined): void {
const meetingWidgetState = $sidebarStore.widgetsState.get(love.ids.MeetingWidget)
const isMeetingWidgetCreated = meetingWidgetState !== undefined
if (room === undefined) {
if (isMeetingWidgetCreated) {
closeWidget(love.ids.MeetingWidget)
}
return
}
if (meetingSessionConnected) {
if (currentMeetingRoom !== undefined && room !== currentMeetingRoom) {
void leaveMeeting()
return
}
const widget = client.getModel().findAllSync(workbench.class.Widget, { _id: love.ids.MeetingWidget })[0]
if (widget === undefined) return
if (!isMeetingWidgetCreated) {
createMeetingWidget(widget, room)
}
} else {
if (isMeetingWidgetCreated) {
closeWidget(love.ids.MeetingWidget)
}
}
}
$: checkActiveMeeting($location, $lkSessionConnected, $currentRoom?._id)
$: joined = activeRooms.filter((r) => $myInfo?.room === r._id)
onDestroy(() => {
closePopup(myInvitesCategory)
closeWidget(love.ids.MeetingWidget)
})
function participantClickHandler (e: MouseEvent, participant: ParticipantInfo): void {
if ($myInfo !== undefined) {
showPopup(PersonActionPopup, { room: reception, person: participant.person }, eventToHTMLElement(e))
}
}
function getParticipantClickHandler (participant: ParticipantInfo): (e: MouseEvent) => void {
return (e: MouseEvent) => {
participantClickHandler(e, participant)
}
}
onDestroy(() => {
removeEventListener('beforeunload', beforeUnloadListener)
})
const beforeUnloadListener = () => {
if ($myInfo !== undefined && $lkSessionConnected) {
leaveMeeting()
}
}
window.addEventListener('beforeunload', beforeUnloadListener)
</script>
<div class="flex-row-center flex-gap-2">
{#if activeRooms.length > 0}
<!-- <div class="divider" />-->
{#each activeRooms as active}
{#await getRoomName(active) then name}
<RoomButton
label={name}
participants={active.participants}
active={joined.find((r) => r._id === active._id) != null}
on:click={openRoom(active)}
/>
{/await}
{/each}
{/if}
{#if reception !== undefined && receptionParticipants.length > 0}
{#if activeRooms.length > 0}
<div class="divider" />
{/if}
{#await getRoomName(reception) then name}
<RoomButton
label={name}
participants={receptionParticipants.map((p) => ({ ...p, onclick: getParticipantClickHandler(p) }))}
/>
{/await}
{/if}
</div>
<style lang="scss">
.divider {
height: 1.5rem;
border: 1px solid var(--theme-divider-color);
}
</style>