Files
huly-platform/plugins/media-resources/src/components/CamStateButton.svelte
T

44 lines
1.5 KiB
Svelte

<!--
// 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.
-->
<script lang="ts">
import { type CamState } from '@hcengineering/media'
import { Icon, tooltip } from '@hcengineering/ui'
import media from '../plugin'
import { sessions } from '../stores'
import IconCamOn from './icons/CamOn.svelte'
import IconCamOff from './icons/CamOff.svelte'
export let state: CamState | undefined
function handleClick (): void {
const enabled = state?.enabled ?? false
for (const session of $sessions) {
session.emit('camera', !enabled)
}
}
</script>
{#if state != null}
<button
class="hulyStatusBarButton mini positive {state.enabled ? 'positiveContent' : 'negativeContent'}"
use:tooltip={{ label: state.enabled ? media.string.TurnOffCam : media.string.TurnOnCam, direction: 'bottom' }}
on:click={handleClick}
>
<Icon icon={state.enabled ? IconCamOn : IconCamOff} size={'small'} />
</button>
{/if}