mirror of
https://github.com/vector-im/element-call.git
synced 2026-09-10 21:55:19 +00:00
Adds component/index.tsx as a fourth build target: <ElementCall client roomId /> and an initializeElementCall to await once beforehand. It gives Element Call everything it would otherwise take from the page it is on — the parameters, the host bridge, media devices, translations, a container to confine itself to — and hands it the host's client rather than finding one of its own. React, the Matrix SDK and LiveKit stay external, since the host has them and a second copy of any would not merely be wasteful: React would hold two sets of hooks and the client would run two sync loops. Every subpath has to be listed by name, because the pattern and callback forms of rollupOptions.external are silently ignored here — a lesson worth the comment that records it. Element Call's own navigation runs in a MemoryRouter, so being embedded cannot disturb the host's URL. ClientContext and GroupCallView both navigate, so some router has to be present. The bundle is not yet a reasonable size: library mode base64-inlines assets referenced through import.meta.url, so MediaPipe's vision runtime lands in it whole. Left for its own change, since the fix — loading the background blur transformer lazily — is worth doing for the standalone app too.
51 lines
1.4 KiB
TypeScript
51 lines
1.4 KiB
TypeScript
/*
|
|
Copyright 2025 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
import { type KnipConfig } from "knip";
|
|
|
|
export default {
|
|
vite: {
|
|
config: [
|
|
"vite.config.ts",
|
|
"vite-embedded.config.ts",
|
|
"vite-sdk.config.ts",
|
|
"vite-component.config.ts",
|
|
],
|
|
},
|
|
entry: ["src/main.tsx", "eslint/index.js", "i18next.config.ts"],
|
|
ignoreBinaries: [
|
|
// This is deprecated, so Knip doesn't actually recognize it as a globally
|
|
// installed binary. TODO We should switch to Compose v2:
|
|
// https://docs.docker.com/compose/migrate/
|
|
"docker-compose",
|
|
// This is a shell built-in.
|
|
"printf",
|
|
],
|
|
ignoreFiles: [
|
|
"scripts/.pnpmfile.cjs",
|
|
// Deliberately added prior to any component or business logic
|
|
// implementation
|
|
"src/state/ServiceInterruptionsViewModel.ts",
|
|
],
|
|
ignoreDependencies: [
|
|
// Used in CSS
|
|
"normalize.css",
|
|
// Used for its global type declarations
|
|
"@types/grecaptcha",
|
|
"@types/sdp-transform",
|
|
// We obviously use this, but if the package has been linked with pnpm link,
|
|
// then Knip will flag it as a false positive
|
|
// https://github.com/webpro-nl/knip/issues/766
|
|
"@vector-im/compound-web",
|
|
"matrix-widget-api",
|
|
// Used by oxlint
|
|
"eslint-plugin-element-call",
|
|
"eslint-plugin-storybook",
|
|
],
|
|
ignoreExportsUsedInFile: true,
|
|
} satisfies KnipConfig;
|