Compare commits
3 Commits
e35c83635d
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0a2b48a630 | ||
|
|
c336b62885 | ||
|
|
7a5cbcb9c6 |
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@svelte-toolkit/jitsi",
|
"name": "@svelte-toolkit/jitsi",
|
||||||
"version": "0.0.1",
|
"version": "0.0.2",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://gitea.auvem.com/svelte-toolkit/jitsi.git"
|
"url": "https://gitea.auvem.com/svelte-toolkit/jitsi.git"
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { onMount } from 'svelte';
|
import { onMount } from 'svelte';
|
||||||
import { type JitsiMeetExternalAPIOptions, JitsiMeetExternalAPI } from './jitsi-iframe-api.js';
|
import type {
|
||||||
|
JitsiMeetExternalAPIOptions,
|
||||||
|
JitsiMeetExternalAPI
|
||||||
|
} from '$lib/jitsi-iframe-api.d.ts';
|
||||||
|
import type { ClassValue } from 'svelte/elements';
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
/**
|
/**
|
||||||
@@ -13,9 +17,13 @@
|
|||||||
* The options to be passed to the Jitsi Meet External API.
|
* The options to be passed to the Jitsi Meet External API.
|
||||||
*/
|
*/
|
||||||
options: JitsiMeetExternalAPIOptions;
|
options: JitsiMeetExternalAPIOptions;
|
||||||
|
/**
|
||||||
|
* Additional CSS classes to apply to the Jitsi container.
|
||||||
|
*/
|
||||||
|
class?: ClassValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
let { domain = 'https://meet.jit.si', options }: Props = $props();
|
let { domain = 'https://meet.jit.si', options, class: classValue }: Props = $props();
|
||||||
|
|
||||||
const src = $derived(`${new URL('external_api.js', domain).toString()}`);
|
const src = $derived(`${new URL('external_api.js', domain).toString()}`);
|
||||||
|
|
||||||
@@ -29,7 +37,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Initialize the Jitsi Meet External API
|
// Initialize the Jitsi Meet External API
|
||||||
api = new JitsiMeetExternalAPI(new URL(domain).host, {
|
api = new window.JitsiMeetExternalAPI(new URL(domain).host, {
|
||||||
...options,
|
...options,
|
||||||
parentNode: container
|
parentNode: container
|
||||||
});
|
});
|
||||||
@@ -48,4 +56,4 @@
|
|||||||
<script {src}></script>
|
<script {src}></script>
|
||||||
</svelte:head>
|
</svelte:head>
|
||||||
|
|
||||||
<div id="jitsi-container" bind:this={container}></div>
|
<div id="jitsi-container" bind:this={container} class={[classValue]}></div>
|
||||||
|
|||||||
Reference in New Issue
Block a user