mirror of
https://github.com/vector-im/element-call.git
synced 2026-09-22 22:29:30 +00:00
"Embedded" already means something here: the embedded package is the widget build. Where a comment meant Element Call running as a React component inside a host application, it now says so, and the params it starts from are `componentProperties`. "Host" stays the word for the application on the other side, whether that is a widget container or an application rendering the component. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
44 lines
1.7 KiB
TypeScript
44 lines
1.7 KiB
TypeScript
/*
|
|
Copyright 2026 Element Creations Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
import { createContext, use } from "react";
|
|
|
|
/**
|
|
* The element that Element Call treats as the root of its own interface.
|
|
*
|
|
* Element Call decorates this element with the theme, layout and background
|
|
* attributes its stylesheets key off, and portals its modals into it. When
|
|
* Element Call owns the page this is simply the document body; as a component
|
|
* it is the container the host mounted it into, so that Element Call does not
|
|
* reach outside its own subtree.
|
|
*
|
|
* The stylesheets find this element by its `data-element-call-root` attribute,
|
|
* which {@link useTheme} sets along with the platform and theme, so they no
|
|
* longer depend on it being the body.
|
|
*
|
|
* What remains body-specific is the standalone page's own furniture: the
|
|
* `body` rule in `index.css` still sets the page background and margin, and
|
|
* `index.html` starts the body hidden with `no-theme` until the theme lands.
|
|
* Neither applies when a host mounts Element Call into a container of its own.
|
|
*/
|
|
const RootElementContext = createContext<HTMLElement | null>(null);
|
|
|
|
/**
|
|
* Supplies the element Element Call should confine itself to. The standalone
|
|
* and widget builds need no provider, since for them that element is the body.
|
|
*/
|
|
export const RootElementProvider = RootElementContext.Provider;
|
|
|
|
/**
|
|
* The element Element Call should decorate and portal into.
|
|
*
|
|
* Defaults to the document body, so that the standalone and widget builds work
|
|
* without a provider.
|
|
*/
|
|
export const useRootElement = (): HTMLElement =>
|
|
use(RootElementContext) ?? document.body;
|