@xyo-network/react-embed 3.0.0 → 3.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/index.mjs.map +1 -1
- package/package.json +19 -19
- package/src/components/EmbedPlugin.tsx +3 -3
- package/src/components/EmbedResolver.tsx +1 -1
- package/src/components/controls/EmbedFormControl.tsx +3 -2
- package/src/components/controls/ListModeSelect.tsx +4 -2
- package/src/components/controls/RenderSelect.tsx +2 -1
- package/src/components/embed-card/EmbedCardResolver.tsx +3 -2
- package/src/components/embed-card/EmbedPluginCard.tsx +4 -3
- package/src/components/embed-card/card/BusyCard.tsx +7 -5
- package/src/components/embed-card/card/EmbedCardHeader.tsx +2 -1
- package/src/components/embed-card/card/EmbedPluginCard.tsx +2 -1
- package/src/components/embed-card/error-handling/EmbedCardApiErrorRenderer.tsx +3 -3
- package/src/components/embed-card/error-handling/EmbedErrorCard.tsx +3 -2
- package/src/components/embed-card/menu/EmbedMenu.tsx +2 -1
- package/src/components/embed-card/menu/JsonMenuItem.tsx +2 -1
- package/src/components/stories/XyoEmbedPlugin.examples.stories.tsx +1 -1
- package/src/components/stories/XyoEmbedPlugin.states.stories.tsx +1 -1
- package/src/components/stories/storyShared.tsx +1 -1
- package/src/components/validation-alerts/ValidatePayload.tsx +3 -2
- package/src/components/validation-alerts/ValidatePlugins.tsx +3 -2
- package/src/contexts/EmbedPluginContext/Context.ts +1 -1
- package/src/contexts/EmbedPluginContext/Provider.tsx +3 -3
- package/src/contexts/EmbedPluginContext/State.ts +3 -3
- package/src/contexts/RefreshPayloadContext/Context.ts +1 -1
- package/src/contexts/RefreshPayloadContext/Provider.tsx +1 -1
- package/src/contexts/RefreshPayloadContext/State.ts +2 -2
- package/src/contexts/ResolvePayloadContext/Context.ts +1 -1
- package/src/contexts/ResolvePayloadContext/Provider.tsx +4 -3
- package/src/contexts/ResolvePayloadContext/State.ts +3 -3
- package/src/contexts/ValidatePayloadContext/Context.ts +1 -1
- package/src/contexts/ValidatePayloadContext/Provider.stories.tsx +7 -4
- package/src/contexts/ValidatePayloadContext/Provider.tsx +3 -2
- package/src/contexts/ValidatePayloadContext/State.ts +1 -1
- package/src/types/EmbedPluginProps.ts +2 -2
- package/xy.config.ts +1 -1
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["../../src/components/embed-card/card/BusyCard.tsx","../../src/components/embed-card/card/EmbedCardHeader.tsx","../../src/contexts/EmbedPluginContext/Context.ts","../../src/contexts/EmbedPluginContext/Provider.tsx","../../src/contexts/EmbedPluginContext/use.ts","../../src/contexts/RefreshPayloadContext/Provider.tsx","../../src/contexts/RefreshPayloadContext/Context.ts","../../src/contexts/RefreshPayloadContext/use.ts","../../src/contexts/ResolvePayloadContext/Context.ts","../../src/contexts/ResolvePayloadContext/Provider.tsx","../../src/contexts/ResolvePayloadContext/use.ts","../../src/contexts/ValidatePayloadContext/Provider.tsx","../../src/contexts/ValidatePayloadContext/Context.ts","../../src/contexts/ValidatePayloadContext/use.ts","../../src/components/embed-card/menu/EmbedMenu.tsx","../../src/components/embed-card/menu/JsonMenuItem.tsx","../../src/components/embed-card/card/EmbedPluginCard.tsx","../../src/components/controls/EmbedFormControl.tsx","../../src/components/controls/ListModeSelect.tsx","../../src/components/controls/RenderSelect.tsx","../../src/components/embed-card/EmbedPluginCard.tsx","../../src/components/EmbedPlugin.tsx","../../src/components/EmbedResolver.tsx","../../src/components/validation-alerts/ValidatePayload.tsx","../../src/components/validation-alerts/ValidatePlugins.tsx","../../src/components/embed-card/error-handling/EmbedCardApiErrorRenderer.tsx","../../src/components/embed-card/error-handling/EmbedErrorCard.tsx"],"sourcesContent":["import { Card, CardProps } from '@mui/material'\nimport { useBusyTiming } from '@xylabs/react-flexbox'\nimport {\n BusyCircularProgress,\n BusyCircularProgressProps,\n BusyLinearProgress,\n BusyLinearProgressProps,\n BusyVariant,\n WithChildren,\n} from '@xylabs/react-shared'\nimport React from 'react'\n\nexport interface BusyCardProps extends CardProps {\n busy?: boolean\n busyMinimum?: number\n busyVariant?: BusyVariant\n busyVariantProps?: BusyCircularProgressProps | BusyLinearProgressProps\n}\n\nexport const BusyCard: React.FC<WithChildren<BusyCardProps>> = ({\n busy,\n busyMinimum = 500,\n busyVariant = 'circular',\n busyVariantProps,\n children,\n ...props\n}) => {\n const internalBusy = useBusyTiming(busy, busyMinimum)\n return (\n <Card {...props}>\n {children}\n {busyVariant === 'circular' && internalBusy\n ? <BusyCircularProgress {...(busyVariantProps as BusyCircularProgressProps)} />\n : null}\n {busyVariant === 'linear' && internalBusy\n ? <BusyLinearProgress {...(busyVariantProps as BusyLinearProgressProps)} />\n : null}\n </Card>\n )\n}\n","import { Refresh as RefreshIcon } from '@mui/icons-material'\nimport { Avatar, CardHeader, CardHeaderProps, Chip, Theme } from '@mui/material'\nimport { FlexRow } from '@xylabs/react-flexbox'\nimport React from 'react'\n\nimport { useEmbedPluginState, useResolvePayload } from '../../../contexts/index.ts'\nimport { EmbedMenu } from '../menu/index.ts'\n\nexport const EmbedCardHeader: React.FC<CardHeaderProps> = () => {\n const { refreshHuri, huri } = useResolvePayload()\n const { activePlugin, timestampLabel, hideElementsConfig } = useEmbedPluginState()\n const { hideAvatar, hideTitle, hideRefreshButton, hideTimestamp, hideCardActions } = hideElementsConfig ?? {}\n // this is temporary so that we can add the ability to get a timestamp via diviner later\n const timestamp = Date.now()\n return (\n <CardHeader\n sx={{ flexWrap: 'wrap', rowGap: 1 }}\n avatar={\n hideAvatar\n ? <></>\n : (\n <Avatar sx={{ bgcolor: (theme: Theme) => theme.palette.primary.main }} aria-label={activePlugin?.name}>\n {activePlugin?.name?.charAt(0)}\n </Avatar>\n )\n }\n action={(\n <FlexRow flexWrap=\"wrap\" columnGap={0.5}>\n {timestamp\n ? hideTimestamp && hideRefreshButton\n ? ''\n : (\n <Chip\n avatar={hideRefreshButton ? <></> : <RefreshIcon />}\n clickable={hideRefreshButton ? false : true}\n onClick={refreshHuri}\n label={hideTimestamp ? '' : `${timestampLabel} ${new Date(timestamp).toLocaleString()}`}\n />\n )\n\n : null}\n {/* Huri case is valid as long as the only menu item is JSON */}\n {hideCardActions || huri === undefined ? null : <EmbedMenu />}\n </FlexRow>\n )}\n title={hideTitle ? '' : activePlugin?.name}\n />\n )\n}\n","import { createContextEx } from '@xyo-network/react-shared'\n\nimport { EmbedPluginState } from './State.ts'\n\nexport const EmbedPluginContext = createContextEx<EmbedPluginState>()\n","import { WithChildren } from '@xylabs/react-shared'\nimport { PayloadRenderPlugin } from '@xyo-network/react-payload-plugin'\nimport React, { useEffect, useState } from 'react'\n\nimport { EmbedPluginContext } from './Context.ts'\nimport { EmbedPluginBase } from './State.ts'\n\nexport type EmbedPluginProviderProps = EmbedPluginBase\n\n/** Expose passed embed plugin props via context */\nexport const EmbedPluginProvider: React.FC<WithChildren<EmbedPluginProviderProps>> = ({\n children,\n refreshTitle,\n timestampLabel,\n hideElementsConfig,\n plugins,\n embedPluginConfig,\n}) => {\n const [activePlugin, setActivePlugin] = useState<PayloadRenderPlugin | undefined>(plugins ? plugins[0] : undefined)\n\n useEffect(() => {\n setActivePlugin(plugins ? plugins[0] : undefined)\n }, [plugins])\n\n return (\n <EmbedPluginContext.Provider\n // eslint-disable-next-line @eslint-react/no-unstable-context-value\n value={{\n activePlugin,\n embedPluginConfig,\n hideElementsConfig,\n provided: true,\n refreshTitle,\n setActivePlugin,\n timestampLabel,\n }}\n >\n {children}\n </EmbedPluginContext.Provider>\n )\n}\n","import { useContextEx } from '@xyo-network/react-shared'\n\nimport { EmbedPluginContext } from './Context.ts'\n\nexport const useEmbedPluginState = () => useContextEx(EmbedPluginContext, 'EmbedPlugin', true)\n","import { WithChildren } from '@xylabs/react-shared'\nimport React, { useState } from 'react'\n\nimport { RefreshPayloadContext } from './Context.ts'\n\nexport interface RefreshPayloadProps {\n onRefresh?: () => void\n refreshPayload?: boolean\n}\n\nexport const RefreshPayloadProvider: React.FC<WithChildren<RefreshPayloadProps>> = ({ children, onRefresh, refreshPayload }) => {\n const [localRefreshPayload, setRefreshPayload] = useState(refreshPayload)\n\n return (\n // eslint-disable-next-line @eslint-react/no-unstable-context-value\n <RefreshPayloadContext.Provider value={{ onRefresh, provided: true, refreshPayload: localRefreshPayload, setRefreshPayload }}>\n {children}\n </RefreshPayloadContext.Provider>\n )\n}\n","import { createContextEx } from '@xyo-network/react-shared'\n\nimport { RefreshPayloadState } from './State.ts'\n\nexport const RefreshPayloadContext = createContextEx<RefreshPayloadState>()\n","import { useContextEx } from '@xyo-network/react-shared'\n\nimport { RefreshPayloadContext } from './Context.ts'\n\nexport const useRefreshPayload = () => useContextEx(RefreshPayloadContext, 'RefreshPayload', true)\n","import { createContextEx } from '@xyo-network/react-shared'\n\nimport { ResolvePayloadState } from './State.ts'\n\nexport const ResolvePayloadContext = createContextEx<ResolvePayloadState>()\n","import { delay } from '@xylabs/delay'\nimport { useAsyncEffect } from '@xylabs/react-async-effect'\nimport { WithChildren } from '@xylabs/react-shared'\nimport { Huri } from '@xyo-network/huri'\nimport { ModuleError, ModuleErrorSchema, Payload } from '@xyo-network/payload-model'\nimport React, { useEffect, useState } from 'react'\n\nimport { useRefreshPayload } from '../RefreshPayloadContext/index.ts'\nimport { ResolvePayloadContext } from './Context.ts'\nimport { ResolvePayloadState } from './State.ts'\n\nexport type ResolvePayloadProviderProps = Omit<ResolvePayloadState, 'provided'>\n\nexport const ResolvePayloadProvider: React.FC<WithChildren<ResolvePayloadProviderProps>> = ({ children, huriPayload }) => {\n const [payload, setPayload] = useState<Payload>()\n const [huri, setHuri] = useState<string>()\n const { refreshPayload, setRefreshPayload, onRefresh } = useRefreshPayload()\n\n useEffect(() => {\n // eslint-disable-next-line @typescript-eslint/no-unused-expressions\n typeof huriPayload === 'string' ? setHuri(huriPayload) : undefined\n if (typeof huriPayload === 'object') {\n setPayload(huriPayload)\n setRefreshPayload?.(true)\n }\n }, [huriPayload, setRefreshPayload])\n\n const [notFound, setNotFound] = useState<boolean>()\n const [huriError, setHuriError] = useState<ModuleError>()\n\n useAsyncEffect(\n async (mounted) => {\n if (huri && !refreshPayload) {\n try {\n const huriInstance = new Huri(huri)\n const result = await huriInstance.fetch()\n // ensure the busy state can stay for a moment to avoid flashing too quickly\n await delay(500)\n\n if (mounted()) {\n setNotFound(result === null)\n setPayload(result)\n setRefreshPayload?.(true)\n }\n } catch (e) {\n const error = e as Error\n setHuriError({ message: error.message, schema: ModuleErrorSchema, sources: [] })\n }\n }\n },\n [huri, payload, refreshPayload, setRefreshPayload],\n )\n\n const refreshHuri = () => {\n onRefresh?.()\n if (huri) {\n setRefreshPayload?.(false)\n }\n }\n\n return (\n // eslint-disable-next-line @eslint-react/no-unstable-context-value\n <ResolvePayloadContext.Provider value={{ huri, huriError, notFound, payload, provided: true, refreshHuri, setPayload }}>\n {children}\n </ResolvePayloadContext.Provider>\n )\n}\n","import { useContextEx } from '@xyo-network/react-shared'\n\nimport { ResolvePayloadContext } from './Context.ts'\n\nexport const useResolvePayload = () => useContextEx(ResolvePayloadContext, 'ResolvePayload', true)\n","import { Chip } from '@mui/material'\nimport { useAsyncEffect } from '@xylabs/react-async-effect'\nimport { WithChildren } from '@xylabs/react-shared'\nimport { SchemaCache, SchemaNameToValidatorMap } from '@xyo-network/schema-cache'\nimport React, { useState } from 'react'\n\nimport { useResolvePayload } from '../ResolvePayloadContext/index.ts'\nimport { ValidatePayloadContext } from './Context.ts'\n\nexport interface ValidatePayloadProviderProps {\n // Opt-in flag to validate payloads for the plugin(s)\n enabled?: boolean\n}\n\nexport const ValidatePayloadProvider: React.FC<WithChildren<ValidatePayloadProviderProps>> = ({ children, enabled = false }) => {\n const { payload } = useResolvePayload()\n const [initialized, setInitialized] = useState(false)\n const [valid, setValid] = useState<boolean>()\n\n useAsyncEffect(\n async () => {\n if (payload && enabled) {\n await SchemaCache.instance.get(payload.schema)\n\n const possibleKnownSchema = payload.schema as keyof SchemaNameToValidatorMap\n\n if (SchemaCache.instance.validators[possibleKnownSchema]) {\n const validator = SchemaCache.instance.validators[possibleKnownSchema]\n setValid(validator?.(payload))\n }\n setInitialized(true)\n }\n },\n [payload, enabled],\n )\n\n return (\n // eslint-disable-next-line @eslint-react/no-unstable-context-value\n <ValidatePayloadContext.Provider value={{ enabled, provided: true, schema: payload?.schema, validPayload: valid }}>\n {enabled\n ? <>{initialized ? children : <Chip label=\"Validating Payload...\" />}</>\n : children}\n </ValidatePayloadContext.Provider>\n )\n}\n","import { createContextEx } from '@xyo-network/react-shared'\n\nimport { ValidatePayloadState } from './State.ts'\n\nexport const ValidatePayloadContext = createContextEx<ValidatePayloadState>()\n","import { useContextEx } from '@xyo-network/react-shared'\n\nimport { ValidatePayloadContext } from './Context.ts'\n\nexport const useValidatePayload = () => useContextEx(ValidatePayloadContext, 'ValidateSchema', true)\n","import { MoreVert as MoreVertIcon } from '@mui/icons-material'\nimport { IconButton, IconButtonProps, Menu } from '@mui/material'\nimport React, { useState } from 'react'\n\nimport { JsonMenuItem } from './JsonMenuItem.tsx'\n\nexport const EmbedMenu: React.FC<IconButtonProps> = (props) => {\n // TODO - link to explore website\n const [anchorEl, setAnchorEl] = useState<null | HTMLElement>(null)\n const open = Boolean(anchorEl)\n\n const handleClick = (event: React.MouseEvent<HTMLButtonElement>) => {\n setAnchorEl(event.currentTarget)\n }\n const handleClose = () => {\n setAnchorEl(null)\n }\n\n return (\n <>\n <IconButton onClick={handleClick} {...props}>\n <MoreVertIcon />\n </IconButton>\n <Menu anchorEl={anchorEl} open={open} onClose={handleClose} PaperProps={{ variant: 'elevation' }} MenuListProps={{ dense: true }}>\n <JsonMenuItem />\n </Menu>\n </>\n )\n}\n","import { OpenInNew as OpenInNewIcon } from '@mui/icons-material'\nimport { ListItemIcon, ListItemText, MenuItem, MenuItemProps } from '@mui/material'\nimport React from 'react'\n\nimport { useResolvePayload } from '../../../contexts/index.ts'\n\nexport const JsonMenuItem: React.FC<MenuItemProps> = (props) => {\n const { huri } = useResolvePayload()\n\n return (\n <>\n {huri\n ? (\n <MenuItem title=\"Source Payload JSON\" onClick={() => window.open(huri, '_blank')} {...props}>\n <ListItemText sx={{ mr: 1 }}>JSON</ListItemText>\n <ListItemIcon sx={{ justifyContent: 'end' }}>\n <OpenInNewIcon fontSize=\"small\" />\n </ListItemIcon>\n </MenuItem>\n )\n : null}\n </>\n )\n}\n","import { CardContent } from '@mui/material'\nimport { FlexGrowRow } from '@xylabs/react-flexbox'\nimport { useListMode } from '@xyo-network/react-shared'\nimport React from 'react'\n\nimport { useEmbedPluginState, useResolvePayload } from '../../../contexts/index.ts'\nimport { EmbedRenderSelect, ListModeSelectFormControl } from '../../controls/index.ts'\nimport { BusyCard, BusyCardProps } from './BusyCard.tsx'\nimport { EmbedCardHeader } from './EmbedCardHeader.tsx'\n\nexport const EmbedPluginCard: React.FC<BusyCardProps> = ({ ...props }) => {\n const { payload } = useResolvePayload()\n const { activePlugin: ActivePlugin, plugins, hideElementsConfig } = useEmbedPluginState()\n const { listMode } = useListMode()\n const supportsListMode = ActivePlugin?.components?.box?.listModes?.length ?? 0 > 1\n\n return (\n <BusyCard {...props}>\n {hideElementsConfig?.hideCardHeader ? null : <EmbedCardHeader />}\n {/* Only show the row if the children are present */}\n {(plugins && plugins.length > 0) || supportsListMode\n ? (\n <FlexGrowRow columnGap={2} rowGap={2} flexWrap=\"wrap\" pb={1}>\n {plugins && plugins.length > 1\n ? <EmbedRenderSelect />\n : null}\n {supportsListMode\n ? <ListModeSelectFormControl />\n : null}\n </FlexGrowRow>\n )\n : null}\n <CardContent sx={{ height: '100%' }}>\n {ActivePlugin\n ? <ActivePlugin.components.box.detailsBox payload={payload} {...(supportsListMode && { listMode })} />\n : null}\n </CardContent>\n </BusyCard>\n )\n}\n","import { FormControl, FormControlProps, InputLabel } from '@mui/material'\nimport { WithChildren } from '@xylabs/react-shared'\nimport React from 'react'\n\ninterface EmbedFormControlProps extends FormControlProps {\n formId?: string\n formLabel?: string\n}\n\nexport const EmbedFormControl: React.FC<WithChildren<EmbedFormControlProps>> = ({ formId, formLabel, children, ...props }) => {\n return (\n <FormControl {...props}>\n <InputLabel id={formId}>{formLabel}</InputLabel>\n {children}\n </FormControl>\n )\n}\n","import { MenuItem } from '@mui/material'\nimport { SelectEx, SelectExProps } from '@xylabs/react-select'\nimport { ListMode, useListMode } from '@xyo-network/react-shared'\nimport React from 'react'\n\nimport { EmbedFormControl } from './EmbedFormControl.tsx'\n\nconst listModeSelectId = 'listmode-select-id'\nconst listModeSelectLabel = 'List Mode'\n\nexport const ListModeSelect: React.FC<SelectExProps<ListMode>> = (props) => {\n const { listMode, setListMode } = useListMode()\n\n return (\n <SelectEx<ListMode>\n value={(listMode ?? 'default') as ListMode}\n onChange={(event) => {\n setListMode?.(event.target.value as ListMode)\n }}\n {...props}\n >\n <MenuItem key=\"default\" value=\"default\">\n Default\n </MenuItem>\n <MenuItem key=\"table\" value=\"table\">\n Table\n </MenuItem>\n <MenuItem key=\"grid\" value=\"grid\">\n Grid\n </MenuItem>\n </SelectEx>\n )\n}\n\nexport const ListModeSelectFormControl: React.FC<SelectExProps<ListMode>> = (props) => {\n return (\n <EmbedFormControl formId={listModeSelectId} formLabel={listModeSelectLabel}>\n <ListModeSelect size=\"small\" label={listModeSelectLabel} labelId={listModeSelectId} {...props} />\n </EmbedFormControl>\n )\n}\n","import { MenuItem } from '@mui/material'\nimport { SelectEx, SelectExProps } from '@xylabs/react-select'\nimport React from 'react'\n\nimport { useEmbedPluginState } from '../../contexts/index.ts'\nimport { EmbedFormControl } from './EmbedFormControl.tsx'\n\nconst renderSelectId = 'render-select-id'\nconst renderSelectLabel = 'Renderer'\n\nexport const EmbedRenderSelect: React.FC<SelectExProps<string>> = (props) => {\n const { activePlugin, setActivePlugin, plugins } = useEmbedPluginState()\n return (\n <EmbedFormControl formId={renderSelectId} formLabel={renderSelectLabel}>\n <SelectEx size=\"small\" value={activePlugin?.name} {...props}>\n {plugins?.map(plugin => (\n <MenuItem value={plugin.name} key={plugin.name} onClick={() => setActivePlugin?.(plugin)}>\n {plugin.name}\n </MenuItem>\n ))}\n </SelectEx>\n </EmbedFormControl>\n )\n}\n","import { useTheme } from '@mui/material'\nimport { WithChildren } from '@xylabs/react-shared'\nimport React from 'react'\n\nimport { useRefreshPayload, useResolvePayload } from '../../contexts/index.ts'\nimport { EmbedPluginProps } from '../../types/index.ts'\nimport { EmbedPluginInner } from '../EmbedPlugin.tsx'\nimport { BusyCardProps, EmbedPluginCard } from './card/index.ts'\nimport { EmbedCardApiErrorRenderer } from './error-handling/index.ts'\n\nexport interface EmbedPluginCardProps extends WithChildren, EmbedPluginProps, BusyCardProps {}\n\nexport const ApiEmbedPluginCard: React.FC<EmbedPluginCardProps> = ({ children, ...props }) => {\n const {\n validateSchema,\n plugins = [],\n huriPayload,\n refreshTitle = '',\n timestampLabel = 'Data From',\n hideElementsConfig,\n embedPluginConfig,\n onRefresh,\n ...busyCardProps\n } = props\n\n return (\n <EmbedPluginInner\n {...{\n embedPluginConfig,\n hideElementsConfig,\n huriPayload,\n onRefresh,\n plugins,\n refreshTitle,\n timestampLabel,\n validateSchema,\n }}\n >\n <EmbedPluginCardInner {...busyCardProps} />\n {children}\n </EmbedPluginInner>\n )\n}\n\nexport const EmbedPluginCardInner: React.FC<BusyCardProps> = (props) => {\n const { payload, huriError } = useResolvePayload()\n const { refreshPayload } = useRefreshPayload()\n const theme = useTheme()\n\n return (\n <EmbedCardApiErrorRenderer xyoError={huriError}>\n <EmbedPluginCard\n elevation={3}\n variant=\"elevation\"\n busy={Boolean(!refreshPayload && payload)}\n busyVariantProps={{ style: { alignItems: 'start', paddingTop: theme.spacing(2), zIndex: 2 } }}\n sx={{ position: 'relative' }}\n {...props}\n />\n </EmbedCardApiErrorRenderer>\n )\n}\n\n/** @deprecated - use EmbedPluginCard and use CardProps instead of FlexBoxProps */\n\nexport { EmbedPluginCard as EmbedPlugin } from './card/index.ts'\n","import { FlexBoxProps } from '@xylabs/react-flexbox'\nimport { WithChildren } from '@xylabs/react-shared'\nimport { ErrorBoundary, ListModeProvider } from '@xyo-network/react-shared'\nimport React from 'react'\n\nimport { EmbedPluginProvider, RefreshPayloadProvider, ResolvePayloadProvider, ValidatePayloadProvider } from '../contexts/index.ts'\nimport { EmbedPluginProps } from '../types/index.ts'\nimport { EmbedResolver } from './EmbedResolver.tsx'\nimport { ValidatePayloadAlert, ValidatePluginsAlert } from './validation-alerts/index.ts'\n\nexport const EmbedPluginInner: React.FC<WithChildren<EmbedPluginProps>> = ({\n validateSchema,\n plugins,\n huriPayload,\n refreshTitle = '',\n timestampLabel = 'Data From',\n hideElementsConfig,\n embedPluginConfig,\n onRefresh,\n children,\n}) => {\n return (\n <ErrorBoundary>\n <EmbedPluginProvider\n refreshTitle={refreshTitle}\n timestampLabel={timestampLabel}\n hideElementsConfig={hideElementsConfig}\n plugins={plugins}\n embedPluginConfig={embedPluginConfig}\n >\n <WithResolvers onRefresh={onRefresh} huriPayload={huriPayload}>\n <WithValidators validateSchema={validateSchema}>\n <ListModeProvider defaultListMode={embedPluginConfig?.listMode}>{children}</ListModeProvider>\n </WithValidators>\n </WithResolvers>\n </EmbedPluginProvider>\n </ErrorBoundary>\n )\n}\n\ninterface WithResolversProps extends Pick<EmbedPluginProps, 'onRefresh' | 'huriPayload'>, FlexBoxProps {}\n\nconst WithResolvers: React.FC<WithChildren<WithResolversProps>> = ({ children, onRefresh, huriPayload }) => {\n return (\n <RefreshPayloadProvider onRefresh={onRefresh}>\n <ResolvePayloadProvider huriPayload={huriPayload}>\n <EmbedResolver>{children}</EmbedResolver>\n </ResolvePayloadProvider>\n </RefreshPayloadProvider>\n )\n}\n\nconst WithValidators: React.FC<WithChildren<{ validateSchema?: boolean }>> = ({ children, validateSchema }) => {\n return (\n <ValidatePayloadProvider enabled={validateSchema}>\n <ValidatePluginsAlert>\n <ValidatePayloadAlert>{children}</ValidatePayloadAlert>\n </ValidatePluginsAlert>\n </ValidatePayloadProvider>\n )\n}\n","import { WithChildren } from '@xylabs/react-shared'\nimport { LoadResult } from '@xyo-network/react-shared'\nimport React from 'react'\n\nimport { useResolvePayload } from '../contexts/index.ts'\n\nexport const EmbedResolver: React.FC<WithChildren> = ({ children }) => {\n const { payload, notFound, huriError } = useResolvePayload()\n\n return (\n <LoadResult searchResult={payload} notFound={!!notFound} error={!!huriError}>\n {children}\n </LoadResult>\n )\n}\n","import { Alert, AlertProps } from '@mui/material'\nimport { WithChildren } from '@xylabs/react-shared'\nimport React from 'react'\n\nimport { useValidatePayload } from '../../contexts/index.ts'\n\nexport const ValidatePayloadAlert: React.FC<WithChildren<AlertProps>> = ({ children, ...props }) => {\n const { validPayload, enabled, schema } = useValidatePayload()\n\n if (enabled && validPayload === false) {\n return (\n <Alert severity=\"error\" title=\"Invalid Payload!\" {...props}>\n Payload schema claimed to be\n {' '}\n {schema}\n {' '}\n but failed to validate.\n </Alert>\n )\n }\n\n return <>{children}</>\n}\n","import { Alert, AlertProps, AlertTitle } from '@mui/material'\nimport { WithChildren } from '@xylabs/react-shared'\nimport React from 'react'\n\nimport { useEmbedPluginState, useResolvePayload } from '../../contexts/index.ts'\n\nexport const ValidatePluginsAlert: React.FC<WithChildren<AlertProps>> = ({ children, ...props }) => {\n const { payload } = useResolvePayload()\n const { plugins } = useEmbedPluginState()\n\n if (payload && plugins?.length === 0) {\n return (\n <Alert severity=\"warning\" {...props}>\n <AlertTitle>Missing plugins!</AlertTitle>\n Payload found but no plugins were present.\n </Alert>\n )\n }\n\n return <>{children}</>\n}\n","import { CardProps } from '@mui/material'\nimport { WithChildren } from '@xylabs/react-shared'\nimport { ModuleError } from '@xyo-network/payload-model'\nimport { ErrorAlert, ErrorRender } from '@xyo-network/react-error'\nimport React from 'react'\n\nimport { EmbedErrorCard } from './EmbedErrorCard.tsx'\n\ninterface EmbedCardApiErrorRendererProps extends CardProps {\n xyoError?: ModuleError\n}\n\nexport const EmbedCardApiErrorRenderer: React.FC<WithChildren<EmbedCardApiErrorRendererProps>> = ({ xyoError, children, ...props }) => {\n return (\n <ErrorRender error={xyoError} noReAuth noErrorDisplay customError={<CustomApiErrorCard xyoError={xyoError} {...props} />}>\n {children}\n </ErrorRender>\n )\n}\n\nconst CustomApiErrorCard: React.FC<EmbedCardApiErrorRendererProps> = ({ xyoError, ...props }) => {\n return (\n <EmbedErrorCard {...props}>\n <ErrorAlert error={xyoError} />\n </EmbedErrorCard>\n )\n}\n","import { Alert, AlertProps, AlertTitle, Card, CardContent, CardProps, Typography } from '@mui/material'\nimport { WithChildren } from '@xylabs/react-shared'\nimport React from 'react'\n\ninterface EmbedErrorCardBaseProps {\n alertProps?: AlertProps\n error?: Error\n hideErrorDetails?: boolean\n scope?: string\n}\n\ninterface EmbedErrorCardProps extends EmbedErrorCardBaseProps, CardProps {}\n\nexport const EmbedErrorCard: React.FC<WithChildren<EmbedErrorCardProps>> = (props) => {\n const { alertProps, error, scope, hideErrorDetails = true, children, ...cardProps } = props\n const errorProps = { alertProps, error, hideErrorDetails, scope }\n return (\n <Card {...cardProps}>\n <CardContent>{children ?? <DefaultErrorAlert {...errorProps} />}</CardContent>\n </Card>\n )\n}\n\nconst DefaultErrorAlert: React.FC<EmbedErrorCardBaseProps> = ({ alertProps, scope, hideErrorDetails, error }) => {\n return (\n <Alert severity=\"error\" {...alertProps}>\n <AlertTitle>Whoops! Something went wrong</AlertTitle>\n {scope\n ? (\n <Typography variant=\"caption\">\n Scope:\n {scope}\n </Typography>\n )\n : null}\n {!hideErrorDetails && error\n ? (\n <>\n <Typography variant=\"caption\">Error: </Typography>\n <Typography variant=\"caption\">{error?.message}</Typography>\n </>\n )\n : (\n <Typography variant=\"caption\" fontSize=\"small\">\n Error Loading Plugin\n </Typography>\n )}\n </Alert>\n )\n}\n"],"mappings":"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","names":["Card","useBusyTiming","BusyCircularProgress","BusyLinearProgress","React","BusyCard","busy","busyMinimum","busyVariant","busyVariantProps","children","props","internalBusy","useBusyTiming","Card","BusyCircularProgress","BusyLinearProgress","Refresh","RefreshIcon","Avatar","CardHeader","Chip","FlexRow","React","createContextEx","EmbedPluginContext","React","useEffect","useState","EmbedPluginProvider","children","refreshTitle","timestampLabel","hideElementsConfig","plugins","embedPluginConfig","activePlugin","setActivePlugin","useState","undefined","useEffect","React","EmbedPluginContext","Provider","value","provided","useContextEx","useEmbedPluginState","useContextEx","EmbedPluginContext","React","useState","createContextEx","RefreshPayloadContext","RefreshPayloadProvider","children","onRefresh","refreshPayload","localRefreshPayload","setRefreshPayload","useState","React","RefreshPayloadContext","Provider","value","provided","useContextEx","useRefreshPayload","useContextEx","RefreshPayloadContext","createContextEx","ResolvePayloadContext","delay","useAsyncEffect","Huri","ModuleErrorSchema","React","useEffect","useState","ResolvePayloadProvider","children","huriPayload","payload","setPayload","useState","huri","setHuri","refreshPayload","setRefreshPayload","onRefresh","useRefreshPayload","useEffect","undefined","notFound","setNotFound","huriError","setHuriError","useAsyncEffect","mounted","huriInstance","Huri","result","fetch","delay","e","error","message","schema","ModuleErrorSchema","sources","refreshHuri","React","ResolvePayloadContext","Provider","value","provided","useContextEx","useResolvePayload","useContextEx","ResolvePayloadContext","Chip","useAsyncEffect","SchemaCache","React","useState","createContextEx","ValidatePayloadContext","ValidatePayloadProvider","children","enabled","payload","useResolvePayload","initialized","setInitialized","useState","valid","setValid","useAsyncEffect","SchemaCache","instance","get","schema","possibleKnownSchema","validators","validator","React","ValidatePayloadContext","Provider","value","provided","validPayload","Chip","label","useContextEx","useValidatePayload","useContextEx","ValidatePayloadContext","MoreVert","MoreVertIcon","IconButton","Menu","React","useState","OpenInNew","OpenInNewIcon","ListItemIcon","ListItemText","MenuItem","React","JsonMenuItem","props","huri","useResolvePayload","React","MenuItem","title","onClick","window","open","ListItemText","sx","mr","ListItemIcon","justifyContent","OpenInNewIcon","fontSize","EmbedMenu","props","anchorEl","setAnchorEl","useState","open","Boolean","handleClick","event","currentTarget","handleClose","React","IconButton","onClick","MoreVertIcon","Menu","onClose","PaperProps","variant","MenuListProps","dense","JsonMenuItem","EmbedCardHeader","refreshHuri","huri","useResolvePayload","activePlugin","timestampLabel","hideElementsConfig","useEmbedPluginState","hideAvatar","hideTitle","hideRefreshButton","hideTimestamp","hideCardActions","timestamp","Date","now","React","CardHeader","sx","flexWrap","rowGap","avatar","Avatar","bgcolor","theme","palette","primary","main","aria-label","name","charAt","action","FlexRow","columnGap","Chip","RefreshIcon","clickable","onClick","label","toLocaleString","undefined","EmbedMenu","title","CardContent","FlexGrowRow","useListMode","React","FormControl","InputLabel","React","EmbedFormControl","formId","formLabel","children","props","React","FormControl","InputLabel","id","MenuItem","SelectEx","useListMode","React","listModeSelectId","listModeSelectLabel","ListModeSelect","props","listMode","setListMode","useListMode","React","SelectEx","value","onChange","event","target","MenuItem","key","ListModeSelectFormControl","EmbedFormControl","formId","formLabel","size","label","labelId","MenuItem","SelectEx","React","renderSelectId","renderSelectLabel","EmbedRenderSelect","props","activePlugin","setActivePlugin","plugins","useEmbedPluginState","React","EmbedFormControl","formId","formLabel","SelectEx","size","value","name","map","plugin","MenuItem","key","onClick","EmbedPluginCard","props","payload","useResolvePayload","activePlugin","ActivePlugin","plugins","hideElementsConfig","useEmbedPluginState","listMode","useListMode","supportsListMode","components","box","listModes","length","React","BusyCard","hideCardHeader","EmbedCardHeader","FlexGrowRow","columnGap","rowGap","flexWrap","pb","EmbedRenderSelect","ListModeSelectFormControl","CardContent","sx","height","detailsBox","useTheme","React","ErrorBoundary","ListModeProvider","React","LoadResult","React","EmbedResolver","children","payload","notFound","huriError","useResolvePayload","React","LoadResult","searchResult","error","Alert","React","ValidatePayloadAlert","children","props","validPayload","enabled","schema","useValidatePayload","React","Alert","severity","title","Alert","AlertTitle","React","ValidatePluginsAlert","children","props","payload","useResolvePayload","plugins","useEmbedPluginState","length","React","Alert","severity","AlertTitle","EmbedPluginInner","validateSchema","plugins","huriPayload","refreshTitle","timestampLabel","hideElementsConfig","embedPluginConfig","onRefresh","children","React","ErrorBoundary","EmbedPluginProvider","WithResolvers","WithValidators","ListModeProvider","defaultListMode","listMode","RefreshPayloadProvider","ResolvePayloadProvider","EmbedResolver","ValidatePayloadProvider","enabled","ValidatePluginsAlert","ValidatePayloadAlert","ErrorAlert","ErrorRender","React","Alert","AlertTitle","Card","CardContent","Typography","React","EmbedErrorCard","props","alertProps","error","scope","hideErrorDetails","children","cardProps","errorProps","React","Card","CardContent","DefaultErrorAlert","Alert","severity","AlertTitle","Typography","variant","message","fontSize","EmbedCardApiErrorRenderer","xyoError","children","props","React","ErrorRender","error","noReAuth","noErrorDisplay","customError","CustomApiErrorCard","EmbedErrorCard","ErrorAlert","ApiEmbedPluginCard","children","props","validateSchema","plugins","huriPayload","refreshTitle","timestampLabel","hideElementsConfig","embedPluginConfig","onRefresh","busyCardProps","React","EmbedPluginInner","EmbedPluginCardInner","payload","huriError","useResolvePayload","refreshPayload","useRefreshPayload","theme","useTheme","EmbedCardApiErrorRenderer","xyoError","EmbedPluginCard","elevation","variant","busy","Boolean","busyVariantProps","style","alignItems","paddingTop","spacing","zIndex","sx","position"]}
|
1
|
+
{"version":3,"sources":["../../src/components/embed-card/card/BusyCard.tsx","../../src/components/embed-card/card/EmbedCardHeader.tsx","../../src/contexts/EmbedPluginContext/Context.ts","../../src/contexts/EmbedPluginContext/Provider.tsx","../../src/contexts/EmbedPluginContext/use.ts","../../src/contexts/RefreshPayloadContext/Provider.tsx","../../src/contexts/RefreshPayloadContext/Context.ts","../../src/contexts/RefreshPayloadContext/use.ts","../../src/contexts/ResolvePayloadContext/Context.ts","../../src/contexts/ResolvePayloadContext/Provider.tsx","../../src/contexts/ResolvePayloadContext/use.ts","../../src/contexts/ValidatePayloadContext/Provider.tsx","../../src/contexts/ValidatePayloadContext/Context.ts","../../src/contexts/ValidatePayloadContext/use.ts","../../src/components/embed-card/menu/EmbedMenu.tsx","../../src/components/embed-card/menu/JsonMenuItem.tsx","../../src/components/embed-card/card/EmbedPluginCard.tsx","../../src/components/controls/EmbedFormControl.tsx","../../src/components/controls/ListModeSelect.tsx","../../src/components/controls/RenderSelect.tsx","../../src/components/embed-card/EmbedPluginCard.tsx","../../src/components/EmbedPlugin.tsx","../../src/components/EmbedResolver.tsx","../../src/components/validation-alerts/ValidatePayload.tsx","../../src/components/validation-alerts/ValidatePlugins.tsx","../../src/components/embed-card/error-handling/EmbedCardApiErrorRenderer.tsx","../../src/components/embed-card/error-handling/EmbedErrorCard.tsx"],"sourcesContent":["import type { CardProps } from '@mui/material'\nimport { Card } from '@mui/material'\nimport { useBusyTiming } from '@xylabs/react-flexbox'\nimport type {\n BusyCircularProgressProps,\n BusyLinearProgressProps,\n BusyVariant,\n WithChildren } from '@xylabs/react-shared'\nimport {\n BusyCircularProgress,\n BusyLinearProgress,\n} from '@xylabs/react-shared'\nimport React from 'react'\n\nexport interface BusyCardProps extends CardProps {\n busy?: boolean\n busyMinimum?: number\n busyVariant?: BusyVariant\n busyVariantProps?: BusyCircularProgressProps | BusyLinearProgressProps\n}\n\nexport const BusyCard: React.FC<WithChildren<BusyCardProps>> = ({\n busy,\n busyMinimum = 500,\n busyVariant = 'circular',\n busyVariantProps,\n children,\n ...props\n}) => {\n const internalBusy = useBusyTiming(busy, busyMinimum)\n return (\n <Card {...props}>\n {children}\n {busyVariant === 'circular' && internalBusy\n ? <BusyCircularProgress {...(busyVariantProps as BusyCircularProgressProps)} />\n : null}\n {busyVariant === 'linear' && internalBusy\n ? <BusyLinearProgress {...(busyVariantProps as BusyLinearProgressProps)} />\n : null}\n </Card>\n )\n}\n","import { Refresh as RefreshIcon } from '@mui/icons-material'\nimport type { CardHeaderProps, Theme } from '@mui/material'\nimport { Avatar, CardHeader, Chip } from '@mui/material'\nimport { FlexRow } from '@xylabs/react-flexbox'\nimport React from 'react'\n\nimport { useEmbedPluginState, useResolvePayload } from '../../../contexts/index.ts'\nimport { EmbedMenu } from '../menu/index.ts'\n\nexport const EmbedCardHeader: React.FC<CardHeaderProps> = () => {\n const { refreshHuri, huri } = useResolvePayload()\n const { activePlugin, timestampLabel, hideElementsConfig } = useEmbedPluginState()\n const { hideAvatar, hideTitle, hideRefreshButton, hideTimestamp, hideCardActions } = hideElementsConfig ?? {}\n // this is temporary so that we can add the ability to get a timestamp via diviner later\n const timestamp = Date.now()\n return (\n <CardHeader\n sx={{ flexWrap: 'wrap', rowGap: 1 }}\n avatar={\n hideAvatar\n ? <></>\n : (\n <Avatar sx={{ bgcolor: (theme: Theme) => theme.palette.primary.main }} aria-label={activePlugin?.name}>\n {activePlugin?.name?.charAt(0)}\n </Avatar>\n )\n }\n action={(\n <FlexRow flexWrap=\"wrap\" columnGap={0.5}>\n {timestamp\n ? hideTimestamp && hideRefreshButton\n ? ''\n : (\n <Chip\n avatar={hideRefreshButton ? <></> : <RefreshIcon />}\n clickable={hideRefreshButton ? false : true}\n onClick={refreshHuri}\n label={hideTimestamp ? '' : `${timestampLabel} ${new Date(timestamp).toLocaleString()}`}\n />\n )\n\n : null}\n {/* Huri case is valid as long as the only menu item is JSON */}\n {hideCardActions || huri === undefined ? null : <EmbedMenu />}\n </FlexRow>\n )}\n title={hideTitle ? '' : activePlugin?.name}\n />\n )\n}\n","import { createContextEx } from '@xyo-network/react-shared'\n\nimport type { EmbedPluginState } from './State.ts'\n\nexport const EmbedPluginContext = createContextEx<EmbedPluginState>()\n","import type { WithChildren } from '@xylabs/react-shared'\nimport type { PayloadRenderPlugin } from '@xyo-network/react-payload-plugin'\nimport React, { useEffect, useState } from 'react'\n\nimport { EmbedPluginContext } from './Context.ts'\nimport type { EmbedPluginBase } from './State.ts'\n\nexport type EmbedPluginProviderProps = EmbedPluginBase\n\n/** Expose passed embed plugin props via context */\nexport const EmbedPluginProvider: React.FC<WithChildren<EmbedPluginProviderProps>> = ({\n children,\n refreshTitle,\n timestampLabel,\n hideElementsConfig,\n plugins,\n embedPluginConfig,\n}) => {\n const [activePlugin, setActivePlugin] = useState<PayloadRenderPlugin | undefined>(plugins ? plugins[0] : undefined)\n\n useEffect(() => {\n setActivePlugin(plugins ? plugins[0] : undefined)\n }, [plugins])\n\n return (\n <EmbedPluginContext.Provider\n // eslint-disable-next-line @eslint-react/no-unstable-context-value\n value={{\n activePlugin,\n embedPluginConfig,\n hideElementsConfig,\n provided: true,\n refreshTitle,\n setActivePlugin,\n timestampLabel,\n }}\n >\n {children}\n </EmbedPluginContext.Provider>\n )\n}\n","import { useContextEx } from '@xyo-network/react-shared'\n\nimport { EmbedPluginContext } from './Context.ts'\n\nexport const useEmbedPluginState = () => useContextEx(EmbedPluginContext, 'EmbedPlugin', true)\n","import type { WithChildren } from '@xylabs/react-shared'\nimport React, { useState } from 'react'\n\nimport { RefreshPayloadContext } from './Context.ts'\n\nexport interface RefreshPayloadProps {\n onRefresh?: () => void\n refreshPayload?: boolean\n}\n\nexport const RefreshPayloadProvider: React.FC<WithChildren<RefreshPayloadProps>> = ({ children, onRefresh, refreshPayload }) => {\n const [localRefreshPayload, setRefreshPayload] = useState(refreshPayload)\n\n return (\n // eslint-disable-next-line @eslint-react/no-unstable-context-value\n <RefreshPayloadContext.Provider value={{ onRefresh, provided: true, refreshPayload: localRefreshPayload, setRefreshPayload }}>\n {children}\n </RefreshPayloadContext.Provider>\n )\n}\n","import { createContextEx } from '@xyo-network/react-shared'\n\nimport type { RefreshPayloadState } from './State.ts'\n\nexport const RefreshPayloadContext = createContextEx<RefreshPayloadState>()\n","import { useContextEx } from '@xyo-network/react-shared'\n\nimport { RefreshPayloadContext } from './Context.ts'\n\nexport const useRefreshPayload = () => useContextEx(RefreshPayloadContext, 'RefreshPayload', true)\n","import { createContextEx } from '@xyo-network/react-shared'\n\nimport type { ResolvePayloadState } from './State.ts'\n\nexport const ResolvePayloadContext = createContextEx<ResolvePayloadState>()\n","import { delay } from '@xylabs/delay'\nimport { useAsyncEffect } from '@xylabs/react-async-effect'\nimport type { WithChildren } from '@xylabs/react-shared'\nimport { Huri } from '@xyo-network/huri'\nimport type { ModuleError, Payload } from '@xyo-network/payload-model'\nimport { ModuleErrorSchema } from '@xyo-network/payload-model'\nimport React, { useEffect, useState } from 'react'\n\nimport { useRefreshPayload } from '../RefreshPayloadContext/index.ts'\nimport { ResolvePayloadContext } from './Context.ts'\nimport type { ResolvePayloadState } from './State.ts'\n\nexport type ResolvePayloadProviderProps = Omit<ResolvePayloadState, 'provided'>\n\nexport const ResolvePayloadProvider: React.FC<WithChildren<ResolvePayloadProviderProps>> = ({ children, huriPayload }) => {\n const [payload, setPayload] = useState<Payload>()\n const [huri, setHuri] = useState<string>()\n const { refreshPayload, setRefreshPayload, onRefresh } = useRefreshPayload()\n\n useEffect(() => {\n // eslint-disable-next-line @typescript-eslint/no-unused-expressions\n typeof huriPayload === 'string' ? setHuri(huriPayload) : undefined\n if (typeof huriPayload === 'object') {\n setPayload(huriPayload)\n setRefreshPayload?.(true)\n }\n }, [huriPayload, setRefreshPayload])\n\n const [notFound, setNotFound] = useState<boolean>()\n const [huriError, setHuriError] = useState<ModuleError>()\n\n useAsyncEffect(\n async (mounted) => {\n if (huri && !refreshPayload) {\n try {\n const huriInstance = new Huri(huri)\n const result = await huriInstance.fetch()\n // ensure the busy state can stay for a moment to avoid flashing too quickly\n await delay(500)\n\n if (mounted()) {\n setNotFound(result === null)\n setPayload(result)\n setRefreshPayload?.(true)\n }\n } catch (e) {\n const error = e as Error\n setHuriError({ message: error.message, schema: ModuleErrorSchema, sources: [] })\n }\n }\n },\n [huri, payload, refreshPayload, setRefreshPayload],\n )\n\n const refreshHuri = () => {\n onRefresh?.()\n if (huri) {\n setRefreshPayload?.(false)\n }\n }\n\n return (\n // eslint-disable-next-line @eslint-react/no-unstable-context-value\n <ResolvePayloadContext.Provider value={{ huri, huriError, notFound, payload, provided: true, refreshHuri, setPayload }}>\n {children}\n </ResolvePayloadContext.Provider>\n )\n}\n","import { useContextEx } from '@xyo-network/react-shared'\n\nimport { ResolvePayloadContext } from './Context.ts'\n\nexport const useResolvePayload = () => useContextEx(ResolvePayloadContext, 'ResolvePayload', true)\n","import { Chip } from '@mui/material'\nimport { useAsyncEffect } from '@xylabs/react-async-effect'\nimport type { WithChildren } from '@xylabs/react-shared'\nimport type { SchemaNameToValidatorMap } from '@xyo-network/schema-cache'\nimport { SchemaCache } from '@xyo-network/schema-cache'\nimport React, { useState } from 'react'\n\nimport { useResolvePayload } from '../ResolvePayloadContext/index.ts'\nimport { ValidatePayloadContext } from './Context.ts'\n\nexport interface ValidatePayloadProviderProps {\n // Opt-in flag to validate payloads for the plugin(s)\n enabled?: boolean\n}\n\nexport const ValidatePayloadProvider: React.FC<WithChildren<ValidatePayloadProviderProps>> = ({ children, enabled = false }) => {\n const { payload } = useResolvePayload()\n const [initialized, setInitialized] = useState(false)\n const [valid, setValid] = useState<boolean>()\n\n useAsyncEffect(\n async () => {\n if (payload && enabled) {\n await SchemaCache.instance.get(payload.schema)\n\n const possibleKnownSchema = payload.schema as keyof SchemaNameToValidatorMap\n\n if (SchemaCache.instance.validators[possibleKnownSchema]) {\n const validator = SchemaCache.instance.validators[possibleKnownSchema]\n setValid(validator?.(payload))\n }\n setInitialized(true)\n }\n },\n [payload, enabled],\n )\n\n return (\n // eslint-disable-next-line @eslint-react/no-unstable-context-value\n <ValidatePayloadContext.Provider value={{ enabled, provided: true, schema: payload?.schema, validPayload: valid }}>\n {enabled\n ? <>{initialized ? children : <Chip label=\"Validating Payload...\" />}</>\n : children}\n </ValidatePayloadContext.Provider>\n )\n}\n","import { createContextEx } from '@xyo-network/react-shared'\n\nimport type { ValidatePayloadState } from './State.ts'\n\nexport const ValidatePayloadContext = createContextEx<ValidatePayloadState>()\n","import { useContextEx } from '@xyo-network/react-shared'\n\nimport { ValidatePayloadContext } from './Context.ts'\n\nexport const useValidatePayload = () => useContextEx(ValidatePayloadContext, 'ValidateSchema', true)\n","import { MoreVert as MoreVertIcon } from '@mui/icons-material'\nimport type { IconButtonProps } from '@mui/material'\nimport { IconButton, Menu } from '@mui/material'\nimport React, { useState } from 'react'\n\nimport { JsonMenuItem } from './JsonMenuItem.tsx'\n\nexport const EmbedMenu: React.FC<IconButtonProps> = (props) => {\n // TODO - link to explore website\n const [anchorEl, setAnchorEl] = useState<null | HTMLElement>(null)\n const open = Boolean(anchorEl)\n\n const handleClick = (event: React.MouseEvent<HTMLButtonElement>) => {\n setAnchorEl(event.currentTarget)\n }\n const handleClose = () => {\n setAnchorEl(null)\n }\n\n return (\n <>\n <IconButton onClick={handleClick} {...props}>\n <MoreVertIcon />\n </IconButton>\n <Menu anchorEl={anchorEl} open={open} onClose={handleClose} PaperProps={{ variant: 'elevation' }} MenuListProps={{ dense: true }}>\n <JsonMenuItem />\n </Menu>\n </>\n )\n}\n","import { OpenInNew as OpenInNewIcon } from '@mui/icons-material'\nimport type { MenuItemProps } from '@mui/material'\nimport { ListItemIcon, ListItemText, MenuItem } from '@mui/material'\nimport React from 'react'\n\nimport { useResolvePayload } from '../../../contexts/index.ts'\n\nexport const JsonMenuItem: React.FC<MenuItemProps> = (props) => {\n const { huri } = useResolvePayload()\n\n return (\n <>\n {huri\n ? (\n <MenuItem title=\"Source Payload JSON\" onClick={() => window.open(huri, '_blank')} {...props}>\n <ListItemText sx={{ mr: 1 }}>JSON</ListItemText>\n <ListItemIcon sx={{ justifyContent: 'end' }}>\n <OpenInNewIcon fontSize=\"small\" />\n </ListItemIcon>\n </MenuItem>\n )\n : null}\n </>\n )\n}\n","import { CardContent } from '@mui/material'\nimport { FlexGrowRow } from '@xylabs/react-flexbox'\nimport { useListMode } from '@xyo-network/react-shared'\nimport React from 'react'\n\nimport { useEmbedPluginState, useResolvePayload } from '../../../contexts/index.ts'\nimport { EmbedRenderSelect, ListModeSelectFormControl } from '../../controls/index.ts'\nimport type { BusyCardProps } from './BusyCard.tsx'\nimport { BusyCard } from './BusyCard.tsx'\nimport { EmbedCardHeader } from './EmbedCardHeader.tsx'\n\nexport const EmbedPluginCard: React.FC<BusyCardProps> = ({ ...props }) => {\n const { payload } = useResolvePayload()\n const { activePlugin: ActivePlugin, plugins, hideElementsConfig } = useEmbedPluginState()\n const { listMode } = useListMode()\n const supportsListMode = ActivePlugin?.components?.box?.listModes?.length ?? 0 > 1\n\n return (\n <BusyCard {...props}>\n {hideElementsConfig?.hideCardHeader ? null : <EmbedCardHeader />}\n {/* Only show the row if the children are present */}\n {(plugins && plugins.length > 0) || supportsListMode\n ? (\n <FlexGrowRow columnGap={2} rowGap={2} flexWrap=\"wrap\" pb={1}>\n {plugins && plugins.length > 1\n ? <EmbedRenderSelect />\n : null}\n {supportsListMode\n ? <ListModeSelectFormControl />\n : null}\n </FlexGrowRow>\n )\n : null}\n <CardContent sx={{ height: '100%' }}>\n {ActivePlugin\n ? <ActivePlugin.components.box.detailsBox payload={payload} {...(supportsListMode && { listMode })} />\n : null}\n </CardContent>\n </BusyCard>\n )\n}\n","import type { FormControlProps } from '@mui/material'\nimport { FormControl, InputLabel } from '@mui/material'\nimport type { WithChildren } from '@xylabs/react-shared'\nimport React from 'react'\n\ninterface EmbedFormControlProps extends FormControlProps {\n formId?: string\n formLabel?: string\n}\n\nexport const EmbedFormControl: React.FC<WithChildren<EmbedFormControlProps>> = ({ formId, formLabel, children, ...props }) => {\n return (\n <FormControl {...props}>\n <InputLabel id={formId}>{formLabel}</InputLabel>\n {children}\n </FormControl>\n )\n}\n","import { MenuItem } from '@mui/material'\nimport type { SelectExProps } from '@xylabs/react-select'\nimport { SelectEx } from '@xylabs/react-select'\nimport type { ListMode } from '@xyo-network/react-shared'\nimport { useListMode } from '@xyo-network/react-shared'\nimport React from 'react'\n\nimport { EmbedFormControl } from './EmbedFormControl.tsx'\n\nconst listModeSelectId = 'listmode-select-id'\nconst listModeSelectLabel = 'List Mode'\n\nexport const ListModeSelect: React.FC<SelectExProps<ListMode>> = (props) => {\n const { listMode, setListMode } = useListMode()\n\n return (\n <SelectEx<ListMode>\n value={(listMode ?? 'default') as ListMode}\n onChange={(event) => {\n setListMode?.(event.target.value as ListMode)\n }}\n {...props}\n >\n <MenuItem key=\"default\" value=\"default\">\n Default\n </MenuItem>\n <MenuItem key=\"table\" value=\"table\">\n Table\n </MenuItem>\n <MenuItem key=\"grid\" value=\"grid\">\n Grid\n </MenuItem>\n </SelectEx>\n )\n}\n\nexport const ListModeSelectFormControl: React.FC<SelectExProps<ListMode>> = (props) => {\n return (\n <EmbedFormControl formId={listModeSelectId} formLabel={listModeSelectLabel}>\n <ListModeSelect size=\"small\" label={listModeSelectLabel} labelId={listModeSelectId} {...props} />\n </EmbedFormControl>\n )\n}\n","import { MenuItem } from '@mui/material'\nimport type { SelectExProps } from '@xylabs/react-select'\nimport { SelectEx } from '@xylabs/react-select'\nimport React from 'react'\n\nimport { useEmbedPluginState } from '../../contexts/index.ts'\nimport { EmbedFormControl } from './EmbedFormControl.tsx'\n\nconst renderSelectId = 'render-select-id'\nconst renderSelectLabel = 'Renderer'\n\nexport const EmbedRenderSelect: React.FC<SelectExProps<string>> = (props) => {\n const { activePlugin, setActivePlugin, plugins } = useEmbedPluginState()\n return (\n <EmbedFormControl formId={renderSelectId} formLabel={renderSelectLabel}>\n <SelectEx size=\"small\" value={activePlugin?.name} {...props}>\n {plugins?.map(plugin => (\n <MenuItem value={plugin.name} key={plugin.name} onClick={() => setActivePlugin?.(plugin)}>\n {plugin.name}\n </MenuItem>\n ))}\n </SelectEx>\n </EmbedFormControl>\n )\n}\n","import { useTheme } from '@mui/material'\nimport type { WithChildren } from '@xylabs/react-shared'\nimport React from 'react'\n\nimport { useRefreshPayload, useResolvePayload } from '../../contexts/index.ts'\nimport type { EmbedPluginProps } from '../../types/index.ts'\nimport { EmbedPluginInner } from '../EmbedPlugin.tsx'\nimport type { BusyCardProps } from './card/index.ts'\nimport { EmbedPluginCard } from './card/index.ts'\nimport { EmbedCardApiErrorRenderer } from './error-handling/index.ts'\n\nexport interface EmbedPluginCardProps extends WithChildren, EmbedPluginProps, BusyCardProps {}\n\nexport const ApiEmbedPluginCard: React.FC<EmbedPluginCardProps> = ({ children, ...props }) => {\n const {\n validateSchema,\n plugins = [],\n huriPayload,\n refreshTitle = '',\n timestampLabel = 'Data From',\n hideElementsConfig,\n embedPluginConfig,\n onRefresh,\n ...busyCardProps\n } = props\n\n return (\n <EmbedPluginInner\n {...{\n embedPluginConfig,\n hideElementsConfig,\n huriPayload,\n onRefresh,\n plugins,\n refreshTitle,\n timestampLabel,\n validateSchema,\n }}\n >\n <EmbedPluginCardInner {...busyCardProps} />\n {children}\n </EmbedPluginInner>\n )\n}\n\nexport const EmbedPluginCardInner: React.FC<BusyCardProps> = (props) => {\n const { payload, huriError } = useResolvePayload()\n const { refreshPayload } = useRefreshPayload()\n const theme = useTheme()\n\n return (\n <EmbedCardApiErrorRenderer xyoError={huriError}>\n <EmbedPluginCard\n elevation={3}\n variant=\"elevation\"\n busy={Boolean(!refreshPayload && payload)}\n busyVariantProps={{ style: { alignItems: 'start', paddingTop: theme.spacing(2), zIndex: 2 } }}\n sx={{ position: 'relative' }}\n {...props}\n />\n </EmbedCardApiErrorRenderer>\n )\n}\n\n/** @deprecated - use EmbedPluginCard and use CardProps instead of FlexBoxProps */\n\nexport { EmbedPluginCard as EmbedPlugin } from './card/index.ts'\n","import type { FlexBoxProps } from '@xylabs/react-flexbox'\nimport type { WithChildren } from '@xylabs/react-shared'\nimport { ErrorBoundary, ListModeProvider } from '@xyo-network/react-shared'\nimport React from 'react'\n\nimport { EmbedPluginProvider, RefreshPayloadProvider, ResolvePayloadProvider, ValidatePayloadProvider } from '../contexts/index.ts'\nimport type { EmbedPluginProps } from '../types/index.ts'\nimport { EmbedResolver } from './EmbedResolver.tsx'\nimport { ValidatePayloadAlert, ValidatePluginsAlert } from './validation-alerts/index.ts'\n\nexport const EmbedPluginInner: React.FC<WithChildren<EmbedPluginProps>> = ({\n validateSchema,\n plugins,\n huriPayload,\n refreshTitle = '',\n timestampLabel = 'Data From',\n hideElementsConfig,\n embedPluginConfig,\n onRefresh,\n children,\n}) => {\n return (\n <ErrorBoundary>\n <EmbedPluginProvider\n refreshTitle={refreshTitle}\n timestampLabel={timestampLabel}\n hideElementsConfig={hideElementsConfig}\n plugins={plugins}\n embedPluginConfig={embedPluginConfig}\n >\n <WithResolvers onRefresh={onRefresh} huriPayload={huriPayload}>\n <WithValidators validateSchema={validateSchema}>\n <ListModeProvider defaultListMode={embedPluginConfig?.listMode}>{children}</ListModeProvider>\n </WithValidators>\n </WithResolvers>\n </EmbedPluginProvider>\n </ErrorBoundary>\n )\n}\n\ninterface WithResolversProps extends Pick<EmbedPluginProps, 'onRefresh' | 'huriPayload'>, FlexBoxProps {}\n\nconst WithResolvers: React.FC<WithChildren<WithResolversProps>> = ({ children, onRefresh, huriPayload }) => {\n return (\n <RefreshPayloadProvider onRefresh={onRefresh}>\n <ResolvePayloadProvider huriPayload={huriPayload}>\n <EmbedResolver>{children}</EmbedResolver>\n </ResolvePayloadProvider>\n </RefreshPayloadProvider>\n )\n}\n\nconst WithValidators: React.FC<WithChildren<{ validateSchema?: boolean }>> = ({ children, validateSchema }) => {\n return (\n <ValidatePayloadProvider enabled={validateSchema}>\n <ValidatePluginsAlert>\n <ValidatePayloadAlert>{children}</ValidatePayloadAlert>\n </ValidatePluginsAlert>\n </ValidatePayloadProvider>\n )\n}\n","import type { WithChildren } from '@xylabs/react-shared'\nimport { LoadResult } from '@xyo-network/react-shared'\nimport React from 'react'\n\nimport { useResolvePayload } from '../contexts/index.ts'\n\nexport const EmbedResolver: React.FC<WithChildren> = ({ children }) => {\n const { payload, notFound, huriError } = useResolvePayload()\n\n return (\n <LoadResult searchResult={payload} notFound={!!notFound} error={!!huriError}>\n {children}\n </LoadResult>\n )\n}\n","import type { AlertProps } from '@mui/material'\nimport { Alert } from '@mui/material'\nimport type { WithChildren } from '@xylabs/react-shared'\nimport React from 'react'\n\nimport { useValidatePayload } from '../../contexts/index.ts'\n\nexport const ValidatePayloadAlert: React.FC<WithChildren<AlertProps>> = ({ children, ...props }) => {\n const { validPayload, enabled, schema } = useValidatePayload()\n\n if (enabled && validPayload === false) {\n return (\n <Alert severity=\"error\" title=\"Invalid Payload!\" {...props}>\n Payload schema claimed to be\n {' '}\n {schema}\n {' '}\n but failed to validate.\n </Alert>\n )\n }\n\n return <>{children}</>\n}\n","import type { AlertProps } from '@mui/material'\nimport { Alert, AlertTitle } from '@mui/material'\nimport type { WithChildren } from '@xylabs/react-shared'\nimport React from 'react'\n\nimport { useEmbedPluginState, useResolvePayload } from '../../contexts/index.ts'\n\nexport const ValidatePluginsAlert: React.FC<WithChildren<AlertProps>> = ({ children, ...props }) => {\n const { payload } = useResolvePayload()\n const { plugins } = useEmbedPluginState()\n\n if (payload && plugins?.length === 0) {\n return (\n <Alert severity=\"warning\" {...props}>\n <AlertTitle>Missing plugins!</AlertTitle>\n Payload found but no plugins were present.\n </Alert>\n )\n }\n\n return <>{children}</>\n}\n","import type { CardProps } from '@mui/material'\nimport type { WithChildren } from '@xylabs/react-shared'\nimport type { ModuleError } from '@xyo-network/payload-model'\nimport { ErrorAlert, ErrorRender } from '@xyo-network/react-error'\nimport React from 'react'\n\nimport { EmbedErrorCard } from './EmbedErrorCard.tsx'\n\ninterface EmbedCardApiErrorRendererProps extends CardProps {\n xyoError?: ModuleError\n}\n\nexport const EmbedCardApiErrorRenderer: React.FC<WithChildren<EmbedCardApiErrorRendererProps>> = ({ xyoError, children, ...props }) => {\n return (\n <ErrorRender error={xyoError} noReAuth noErrorDisplay customError={<CustomApiErrorCard xyoError={xyoError} {...props} />}>\n {children}\n </ErrorRender>\n )\n}\n\nconst CustomApiErrorCard: React.FC<EmbedCardApiErrorRendererProps> = ({ xyoError, ...props }) => {\n return (\n <EmbedErrorCard {...props}>\n <ErrorAlert error={xyoError} />\n </EmbedErrorCard>\n )\n}\n","import type { AlertProps, CardProps } from '@mui/material'\nimport { Alert, AlertTitle, Card, CardContent, Typography } from '@mui/material'\nimport type { WithChildren } from '@xylabs/react-shared'\nimport React from 'react'\n\ninterface EmbedErrorCardBaseProps {\n alertProps?: AlertProps\n error?: Error\n hideErrorDetails?: boolean\n scope?: string\n}\n\ninterface EmbedErrorCardProps extends EmbedErrorCardBaseProps, CardProps {}\n\nexport const EmbedErrorCard: React.FC<WithChildren<EmbedErrorCardProps>> = (props) => {\n const { alertProps, error, scope, hideErrorDetails = true, children, ...cardProps } = props\n const errorProps = { alertProps, error, hideErrorDetails, scope }\n return (\n <Card {...cardProps}>\n <CardContent>{children ?? <DefaultErrorAlert {...errorProps} />}</CardContent>\n </Card>\n )\n}\n\nconst DefaultErrorAlert: React.FC<EmbedErrorCardBaseProps> = ({ alertProps, scope, hideErrorDetails, error }) => {\n return (\n <Alert severity=\"error\" {...alertProps}>\n <AlertTitle>Whoops! Something went wrong</AlertTitle>\n {scope\n ? (\n <Typography variant=\"caption\">\n Scope:\n {scope}\n </Typography>\n )\n : null}\n {!hideErrorDetails && error\n ? (\n <>\n <Typography variant=\"caption\">Error: </Typography>\n <Typography variant=\"caption\">{error?.message}</Typography>\n </>\n )\n : (\n <Typography variant=\"caption\" fontSize=\"small\">\n Error Loading Plugin\n </Typography>\n )}\n </Alert>\n )\n}\n"],"mappings":"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","names":["Card","useBusyTiming","BusyCircularProgress","BusyLinearProgress","React","BusyCard","busy","busyMinimum","busyVariant","busyVariantProps","children","props","internalBusy","useBusyTiming","Card","BusyCircularProgress","BusyLinearProgress","Refresh","RefreshIcon","Avatar","CardHeader","Chip","FlexRow","React","createContextEx","EmbedPluginContext","React","useEffect","useState","EmbedPluginProvider","children","refreshTitle","timestampLabel","hideElementsConfig","plugins","embedPluginConfig","activePlugin","setActivePlugin","useState","undefined","useEffect","React","EmbedPluginContext","Provider","value","provided","useContextEx","useEmbedPluginState","useContextEx","EmbedPluginContext","React","useState","createContextEx","RefreshPayloadContext","RefreshPayloadProvider","children","onRefresh","refreshPayload","localRefreshPayload","setRefreshPayload","useState","React","RefreshPayloadContext","Provider","value","provided","useContextEx","useRefreshPayload","useContextEx","RefreshPayloadContext","createContextEx","ResolvePayloadContext","delay","useAsyncEffect","Huri","ModuleErrorSchema","React","useEffect","useState","ResolvePayloadProvider","children","huriPayload","payload","setPayload","useState","huri","setHuri","refreshPayload","setRefreshPayload","onRefresh","useRefreshPayload","useEffect","undefined","notFound","setNotFound","huriError","setHuriError","useAsyncEffect","mounted","huriInstance","Huri","result","fetch","delay","e","error","message","schema","ModuleErrorSchema","sources","refreshHuri","React","ResolvePayloadContext","Provider","value","provided","useContextEx","useResolvePayload","useContextEx","ResolvePayloadContext","Chip","useAsyncEffect","SchemaCache","React","useState","createContextEx","ValidatePayloadContext","ValidatePayloadProvider","children","enabled","payload","useResolvePayload","initialized","setInitialized","useState","valid","setValid","useAsyncEffect","SchemaCache","instance","get","schema","possibleKnownSchema","validators","validator","React","ValidatePayloadContext","Provider","value","provided","validPayload","Chip","label","useContextEx","useValidatePayload","useContextEx","ValidatePayloadContext","MoreVert","MoreVertIcon","IconButton","Menu","React","useState","OpenInNew","OpenInNewIcon","ListItemIcon","ListItemText","MenuItem","React","JsonMenuItem","props","huri","useResolvePayload","React","MenuItem","title","onClick","window","open","ListItemText","sx","mr","ListItemIcon","justifyContent","OpenInNewIcon","fontSize","EmbedMenu","props","anchorEl","setAnchorEl","useState","open","Boolean","handleClick","event","currentTarget","handleClose","React","IconButton","onClick","MoreVertIcon","Menu","onClose","PaperProps","variant","MenuListProps","dense","JsonMenuItem","EmbedCardHeader","refreshHuri","huri","useResolvePayload","activePlugin","timestampLabel","hideElementsConfig","useEmbedPluginState","hideAvatar","hideTitle","hideRefreshButton","hideTimestamp","hideCardActions","timestamp","Date","now","React","CardHeader","sx","flexWrap","rowGap","avatar","Avatar","bgcolor","theme","palette","primary","main","aria-label","name","charAt","action","FlexRow","columnGap","Chip","RefreshIcon","clickable","onClick","label","toLocaleString","undefined","EmbedMenu","title","CardContent","FlexGrowRow","useListMode","React","FormControl","InputLabel","React","EmbedFormControl","formId","formLabel","children","props","React","FormControl","InputLabel","id","MenuItem","SelectEx","useListMode","React","listModeSelectId","listModeSelectLabel","ListModeSelect","props","listMode","setListMode","useListMode","React","SelectEx","value","onChange","event","target","MenuItem","key","ListModeSelectFormControl","EmbedFormControl","formId","formLabel","size","label","labelId","MenuItem","SelectEx","React","renderSelectId","renderSelectLabel","EmbedRenderSelect","props","activePlugin","setActivePlugin","plugins","useEmbedPluginState","React","EmbedFormControl","formId","formLabel","SelectEx","size","value","name","map","plugin","MenuItem","key","onClick","EmbedPluginCard","props","payload","useResolvePayload","activePlugin","ActivePlugin","plugins","hideElementsConfig","useEmbedPluginState","listMode","useListMode","supportsListMode","components","box","listModes","length","React","BusyCard","hideCardHeader","EmbedCardHeader","FlexGrowRow","columnGap","rowGap","flexWrap","pb","EmbedRenderSelect","ListModeSelectFormControl","CardContent","sx","height","detailsBox","useTheme","React","ErrorBoundary","ListModeProvider","React","LoadResult","React","EmbedResolver","children","payload","notFound","huriError","useResolvePayload","React","LoadResult","searchResult","error","Alert","React","ValidatePayloadAlert","children","props","validPayload","enabled","schema","useValidatePayload","React","Alert","severity","title","Alert","AlertTitle","React","ValidatePluginsAlert","children","props","payload","useResolvePayload","plugins","useEmbedPluginState","length","React","Alert","severity","AlertTitle","EmbedPluginInner","validateSchema","plugins","huriPayload","refreshTitle","timestampLabel","hideElementsConfig","embedPluginConfig","onRefresh","children","React","ErrorBoundary","EmbedPluginProvider","WithResolvers","WithValidators","ListModeProvider","defaultListMode","listMode","RefreshPayloadProvider","ResolvePayloadProvider","EmbedResolver","ValidatePayloadProvider","enabled","ValidatePluginsAlert","ValidatePayloadAlert","ErrorAlert","ErrorRender","React","Alert","AlertTitle","Card","CardContent","Typography","React","EmbedErrorCard","props","alertProps","error","scope","hideErrorDetails","children","cardProps","errorProps","React","Card","CardContent","DefaultErrorAlert","Alert","severity","AlertTitle","Typography","variant","message","fontSize","EmbedCardApiErrorRenderer","xyoError","children","props","React","ErrorRender","error","noReAuth","noErrorDisplay","customError","CustomApiErrorCard","EmbedErrorCard","ErrorAlert","ApiEmbedPluginCard","children","props","validateSchema","plugins","huriPayload","refreshTitle","timestampLabel","hideElementsConfig","embedPluginConfig","onRefresh","busyCardProps","React","EmbedPluginInner","EmbedPluginCardInner","payload","huriError","useResolvePayload","refreshPayload","useRefreshPayload","theme","useTheme","EmbedCardApiErrorRenderer","xyoError","EmbedPluginCard","elevation","variant","busy","Boolean","busyVariantProps","style","alignItems","paddingTop","spacing","zIndex","sx","position"]}
|
package/package.json
CHANGED
@@ -7,33 +7,33 @@
|
|
7
7
|
},
|
8
8
|
"bugs": {
|
9
9
|
"email": "support@xyo.network",
|
10
|
-
"url": "https://github.com/XYOracleNetwork/sdk-xyo-react-js/issues"
|
10
|
+
"url": "git+https://github.com/XYOracleNetwork/sdk-xyo-react-js/issues"
|
11
11
|
},
|
12
12
|
"dependencies": {
|
13
13
|
"@mui/icons-material": "^5.16.7",
|
14
14
|
"@mui/material": "^5.16.7",
|
15
15
|
"@mui/styles": "^5.16.7",
|
16
|
-
"@xylabs/delay": "^4.0.
|
17
|
-
"@xylabs/react-async-effect": "^4.0.
|
18
|
-
"@xylabs/react-flexbox": "^4.0.
|
19
|
-
"@xylabs/react-select": "^4.0.
|
20
|
-
"@xylabs/react-shared": "^4.0.
|
21
|
-
"@xyo-network/huri": "^3.0.
|
22
|
-
"@xyo-network/payload-model": "^3.0.
|
23
|
-
"@xyo-network/react-error": "^3.0.
|
24
|
-
"@xyo-network/react-payload-plugin": "^3.0.
|
25
|
-
"@xyo-network/react-shared": "^3.0.
|
26
|
-
"@xyo-network/schema-cache": "^3.0.
|
16
|
+
"@xylabs/delay": "^4.0.2",
|
17
|
+
"@xylabs/react-async-effect": "^4.0.3",
|
18
|
+
"@xylabs/react-flexbox": "^4.0.3",
|
19
|
+
"@xylabs/react-select": "^4.0.3",
|
20
|
+
"@xylabs/react-shared": "^4.0.3",
|
21
|
+
"@xyo-network/huri": "^3.0.3",
|
22
|
+
"@xyo-network/payload-model": "^3.0.3",
|
23
|
+
"@xyo-network/react-error": "^3.0.2",
|
24
|
+
"@xyo-network/react-payload-plugin": "^3.0.2",
|
25
|
+
"@xyo-network/react-shared": "^3.0.2",
|
26
|
+
"@xyo-network/schema-cache": "^3.0.3",
|
27
27
|
"react": "^18.3.1",
|
28
28
|
"react-dom": "^18.3.1"
|
29
29
|
},
|
30
30
|
"devDependencies": {
|
31
31
|
"@storybook/react": "^8.2.9",
|
32
|
-
"@xylabs/ts-scripts-yarn3": "^4.0.0-rc.
|
33
|
-
"@xylabs/tsconfig-react": "^4.0.0-rc.
|
34
|
-
"@xyo-network/react-aggregate-price-plugin": "^3.0.
|
35
|
-
"@xyo-network/react-crypto-market-uniswap-plugin": "^3.0.
|
36
|
-
"react-router-dom": "^6.26.
|
32
|
+
"@xylabs/ts-scripts-yarn3": "^4.0.0-rc.20",
|
33
|
+
"@xylabs/tsconfig-react": "^4.0.0-rc.20",
|
34
|
+
"@xyo-network/react-aggregate-price-plugin": "^3.0.2",
|
35
|
+
"@xyo-network/react-crypto-market-uniswap-plugin": "^3.0.2",
|
36
|
+
"react-router-dom": "^6.26.1",
|
37
37
|
"typescript": "^5.5.4"
|
38
38
|
},
|
39
39
|
"peerDependencies": {
|
@@ -67,7 +67,7 @@
|
|
67
67
|
},
|
68
68
|
"repository": {
|
69
69
|
"type": "git",
|
70
|
-
"url": "https://github.com/XYOracleNetwork/sdk-xyo-react-js.git"
|
70
|
+
"url": "git+https://github.com/XYOracleNetwork/sdk-xyo-react-js.git"
|
71
71
|
},
|
72
72
|
"scripts": {
|
73
73
|
"lint-pkg": "npmPkgJsonLint .",
|
@@ -75,6 +75,6 @@
|
|
75
75
|
},
|
76
76
|
"sideEffects": false,
|
77
77
|
"types": "dist/browser/index.d.ts",
|
78
|
-
"version": "3.0.
|
78
|
+
"version": "3.0.2",
|
79
79
|
"type": "module"
|
80
80
|
}
|
@@ -1,10 +1,10 @@
|
|
1
|
-
import { FlexBoxProps } from '@xylabs/react-flexbox'
|
2
|
-
import { WithChildren } from '@xylabs/react-shared'
|
1
|
+
import type { FlexBoxProps } from '@xylabs/react-flexbox'
|
2
|
+
import type { WithChildren } from '@xylabs/react-shared'
|
3
3
|
import { ErrorBoundary, ListModeProvider } from '@xyo-network/react-shared'
|
4
4
|
import React from 'react'
|
5
5
|
|
6
6
|
import { EmbedPluginProvider, RefreshPayloadProvider, ResolvePayloadProvider, ValidatePayloadProvider } from '../contexts/index.ts'
|
7
|
-
import { EmbedPluginProps } from '../types/index.ts'
|
7
|
+
import type { EmbedPluginProps } from '../types/index.ts'
|
8
8
|
import { EmbedResolver } from './EmbedResolver.tsx'
|
9
9
|
import { ValidatePayloadAlert, ValidatePluginsAlert } from './validation-alerts/index.ts'
|
10
10
|
|
@@ -1,5 +1,6 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
1
|
+
import type { FormControlProps } from '@mui/material'
|
2
|
+
import { FormControl, InputLabel } from '@mui/material'
|
3
|
+
import type { WithChildren } from '@xylabs/react-shared'
|
3
4
|
import React from 'react'
|
4
5
|
|
5
6
|
interface EmbedFormControlProps extends FormControlProps {
|
@@ -1,6 +1,8 @@
|
|
1
1
|
import { MenuItem } from '@mui/material'
|
2
|
-
import {
|
3
|
-
import {
|
2
|
+
import type { SelectExProps } from '@xylabs/react-select'
|
3
|
+
import { SelectEx } from '@xylabs/react-select'
|
4
|
+
import type { ListMode } from '@xyo-network/react-shared'
|
5
|
+
import { useListMode } from '@xyo-network/react-shared'
|
4
6
|
import React from 'react'
|
5
7
|
|
6
8
|
import { EmbedFormControl } from './EmbedFormControl.tsx'
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import { MenuItem } from '@mui/material'
|
2
|
-
import {
|
2
|
+
import type { SelectExProps } from '@xylabs/react-select'
|
3
|
+
import { SelectEx } from '@xylabs/react-select'
|
3
4
|
import React from 'react'
|
4
5
|
|
5
6
|
import { useEmbedPluginState } from '../../contexts/index.ts'
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import { useTheme } from '@mui/material'
|
2
|
-
import { FlexBoxProps
|
3
|
-
import {
|
2
|
+
import type { FlexBoxProps } from '@xylabs/react-flexbox'
|
3
|
+
import { FlexCol } from '@xylabs/react-flexbox'
|
4
|
+
import type { WithChildren } from '@xylabs/react-shared'
|
4
5
|
import { LoadResult } from '@xyo-network/react-shared'
|
5
6
|
import React from 'react'
|
6
7
|
|
@@ -1,11 +1,12 @@
|
|
1
1
|
import { useTheme } from '@mui/material'
|
2
|
-
import { WithChildren } from '@xylabs/react-shared'
|
2
|
+
import type { WithChildren } from '@xylabs/react-shared'
|
3
3
|
import React from 'react'
|
4
4
|
|
5
5
|
import { useRefreshPayload, useResolvePayload } from '../../contexts/index.ts'
|
6
|
-
import { EmbedPluginProps } from '../../types/index.ts'
|
6
|
+
import type { EmbedPluginProps } from '../../types/index.ts'
|
7
7
|
import { EmbedPluginInner } from '../EmbedPlugin.tsx'
|
8
|
-
import { BusyCardProps
|
8
|
+
import type { BusyCardProps } from './card/index.ts'
|
9
|
+
import { EmbedPluginCard } from './card/index.ts'
|
9
10
|
import { EmbedCardApiErrorRenderer } from './error-handling/index.ts'
|
10
11
|
|
11
12
|
export interface EmbedPluginCardProps extends WithChildren, EmbedPluginProps, BusyCardProps {}
|
@@ -1,12 +1,14 @@
|
|
1
|
-
import {
|
1
|
+
import type { CardProps } from '@mui/material'
|
2
|
+
import { Card } from '@mui/material'
|
2
3
|
import { useBusyTiming } from '@xylabs/react-flexbox'
|
3
|
-
import {
|
4
|
-
BusyCircularProgress,
|
4
|
+
import type {
|
5
5
|
BusyCircularProgressProps,
|
6
|
-
BusyLinearProgress,
|
7
6
|
BusyLinearProgressProps,
|
8
7
|
BusyVariant,
|
9
|
-
WithChildren
|
8
|
+
WithChildren } from '@xylabs/react-shared'
|
9
|
+
import {
|
10
|
+
BusyCircularProgress,
|
11
|
+
BusyLinearProgress,
|
10
12
|
} from '@xylabs/react-shared'
|
11
13
|
import React from 'react'
|
12
14
|
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import { Refresh as RefreshIcon } from '@mui/icons-material'
|
2
|
-
import {
|
2
|
+
import type { CardHeaderProps, Theme } from '@mui/material'
|
3
|
+
import { Avatar, CardHeader, Chip } from '@mui/material'
|
3
4
|
import { FlexRow } from '@xylabs/react-flexbox'
|
4
5
|
import React from 'react'
|
5
6
|
|
@@ -5,7 +5,8 @@ import React from 'react'
|
|
5
5
|
|
6
6
|
import { useEmbedPluginState, useResolvePayload } from '../../../contexts/index.ts'
|
7
7
|
import { EmbedRenderSelect, ListModeSelectFormControl } from '../../controls/index.ts'
|
8
|
-
import {
|
8
|
+
import type { BusyCardProps } from './BusyCard.tsx'
|
9
|
+
import { BusyCard } from './BusyCard.tsx'
|
9
10
|
import { EmbedCardHeader } from './EmbedCardHeader.tsx'
|
10
11
|
|
11
12
|
export const EmbedPluginCard: React.FC<BusyCardProps> = ({ ...props }) => {
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import { CardProps } from '@mui/material'
|
2
|
-
import { WithChildren } from '@xylabs/react-shared'
|
3
|
-
import { ModuleError } from '@xyo-network/payload-model'
|
1
|
+
import type { CardProps } from '@mui/material'
|
2
|
+
import type { WithChildren } from '@xylabs/react-shared'
|
3
|
+
import type { ModuleError } from '@xyo-network/payload-model'
|
4
4
|
import { ErrorAlert, ErrorRender } from '@xyo-network/react-error'
|
5
5
|
import React from 'react'
|
6
6
|
|
@@ -1,5 +1,6 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
1
|
+
import type { AlertProps, CardProps } from '@mui/material'
|
2
|
+
import { Alert, AlertTitle, Card, CardContent, Typography } from '@mui/material'
|
3
|
+
import type { WithChildren } from '@xylabs/react-shared'
|
3
4
|
import React from 'react'
|
4
5
|
|
5
6
|
interface EmbedErrorCardBaseProps {
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import { MoreVert as MoreVertIcon } from '@mui/icons-material'
|
2
|
-
import {
|
2
|
+
import type { IconButtonProps } from '@mui/material'
|
3
|
+
import { IconButton, Menu } from '@mui/material'
|
3
4
|
import React, { useState } from 'react'
|
4
5
|
|
5
6
|
import { JsonMenuItem } from './JsonMenuItem.tsx'
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import { OpenInNew as OpenInNewIcon } from '@mui/icons-material'
|
2
|
-
import {
|
2
|
+
import type { MenuItemProps } from '@mui/material'
|
3
|
+
import { ListItemIcon, ListItemText, MenuItem } from '@mui/material'
|
3
4
|
import React from 'react'
|
4
5
|
|
5
6
|
import { useResolvePayload } from '../../../contexts/index.ts'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Meta } from '@storybook/react'
|
1
|
+
import type { Meta } from '@storybook/react'
|
2
2
|
import { CryptoAssetRenderPlugin } from '@xyo-network/react-aggregate-price-plugin'
|
3
3
|
import { UniswapPairsRenderPlugin } from '@xyo-network/react-crypto-market-uniswap-plugin'
|
4
4
|
import { createPayloadRenderPlugin } from '@xyo-network/react-payload-plugin'
|
@@ -1,5 +1,6 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
1
|
+
import type { AlertProps } from '@mui/material'
|
2
|
+
import { Alert } from '@mui/material'
|
3
|
+
import type { WithChildren } from '@xylabs/react-shared'
|
3
4
|
import React from 'react'
|
4
5
|
|
5
6
|
import { useValidatePayload } from '../../contexts/index.ts'
|
@@ -1,5 +1,6 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
1
|
+
import type { AlertProps } from '@mui/material'
|
2
|
+
import { Alert, AlertTitle } from '@mui/material'
|
3
|
+
import type { WithChildren } from '@xylabs/react-shared'
|
3
4
|
import React from 'react'
|
4
5
|
|
5
6
|
import { useEmbedPluginState, useResolvePayload } from '../../contexts/index.ts'
|
@@ -1,9 +1,9 @@
|
|
1
|
-
import { WithChildren } from '@xylabs/react-shared'
|
2
|
-
import { PayloadRenderPlugin } from '@xyo-network/react-payload-plugin'
|
1
|
+
import type { WithChildren } from '@xylabs/react-shared'
|
2
|
+
import type { PayloadRenderPlugin } from '@xyo-network/react-payload-plugin'
|
3
3
|
import React, { useEffect, useState } from 'react'
|
4
4
|
|
5
5
|
import { EmbedPluginContext } from './Context.ts'
|
6
|
-
import { EmbedPluginBase } from './State.ts'
|
6
|
+
import type { EmbedPluginBase } from './State.ts'
|
7
7
|
|
8
8
|
export type EmbedPluginProviderProps = EmbedPluginBase
|
9
9
|
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import { PayloadRenderPlugin } from '@xyo-network/react-payload-plugin'
|
2
|
-
import { ContextExState, ListMode } from '@xyo-network/react-shared'
|
3
|
-
import { Dispatch, SetStateAction } from 'react'
|
1
|
+
import type { PayloadRenderPlugin } from '@xyo-network/react-payload-plugin'
|
2
|
+
import type { ContextExState, ListMode } from '@xyo-network/react-shared'
|
3
|
+
import type { Dispatch, SetStateAction } from 'react'
|
4
4
|
|
5
5
|
export interface EmbedPluginVisibilityConfig {
|
6
6
|
hideAvatar?: boolean
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import { ContextExState } from '@xyo-network/react-shared'
|
2
|
-
import { Dispatch, SetStateAction } from 'react'
|
1
|
+
import type { ContextExState } from '@xyo-network/react-shared'
|
2
|
+
import type { Dispatch, SetStateAction } from 'react'
|
3
3
|
|
4
4
|
export interface RefreshPayloadState extends ContextExState {
|
5
5
|
onRefresh?: () => void
|
@@ -1,13 +1,14 @@
|
|
1
1
|
import { delay } from '@xylabs/delay'
|
2
2
|
import { useAsyncEffect } from '@xylabs/react-async-effect'
|
3
|
-
import { WithChildren } from '@xylabs/react-shared'
|
3
|
+
import type { WithChildren } from '@xylabs/react-shared'
|
4
4
|
import { Huri } from '@xyo-network/huri'
|
5
|
-
import { ModuleError,
|
5
|
+
import type { ModuleError, Payload } from '@xyo-network/payload-model'
|
6
|
+
import { ModuleErrorSchema } from '@xyo-network/payload-model'
|
6
7
|
import React, { useEffect, useState } from 'react'
|
7
8
|
|
8
9
|
import { useRefreshPayload } from '../RefreshPayloadContext/index.ts'
|
9
10
|
import { ResolvePayloadContext } from './Context.ts'
|
10
|
-
import { ResolvePayloadState } from './State.ts'
|
11
|
+
import type { ResolvePayloadState } from './State.ts'
|
11
12
|
|
12
13
|
export type ResolvePayloadProviderProps = Omit<ResolvePayloadState, 'provided'>
|
13
14
|
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import { ModuleError, Payload } from '@xyo-network/payload-model'
|
2
|
-
import { ContextExState } from '@xyo-network/react-shared'
|
3
|
-
import { Dispatch, SetStateAction } from 'react'
|
1
|
+
import type { ModuleError, Payload } from '@xyo-network/payload-model'
|
2
|
+
import type { ContextExState } from '@xyo-network/react-shared'
|
3
|
+
import type { Dispatch, SetStateAction } from 'react'
|
4
4
|
|
5
5
|
export interface ResolvePayloadState extends ContextExState {
|
6
6
|
huri?: string
|
@@ -1,11 +1,14 @@
|
|
1
1
|
import { Typography } from '@mui/material'
|
2
|
-
import { Decorator, Meta, StoryFn } from '@storybook/react'
|
2
|
+
import type { Decorator, Meta, StoryFn } from '@storybook/react'
|
3
3
|
import React from 'react'
|
4
4
|
|
5
|
-
import {
|
5
|
+
import type { EmbedPluginState } from '../EmbedPluginContext/index.ts'
|
6
|
+
import { EmbedPluginContext } from '../EmbedPluginContext/index.ts'
|
6
7
|
import { RefreshPayloadProvider } from '../RefreshPayloadContext/index.ts'
|
7
|
-
import {
|
8
|
-
import {
|
8
|
+
import type { ResolvePayloadState } from '../ResolvePayloadContext/index.ts'
|
9
|
+
import { ResolvePayloadContext } from '../ResolvePayloadContext/index.ts'
|
10
|
+
import type { ValidatePayloadProviderProps } from './Provider.tsx'
|
11
|
+
import { ValidatePayloadProvider } from './Provider.tsx'
|
9
12
|
import { useValidatePayload } from './use.ts'
|
10
13
|
|
11
14
|
const EmbedDecorator: Decorator<ValidatePayloadProviderPropsEx> = (Story, { args }) => {
|
@@ -1,7 +1,8 @@
|
|
1
1
|
import { Chip } from '@mui/material'
|
2
2
|
import { useAsyncEffect } from '@xylabs/react-async-effect'
|
3
|
-
import { WithChildren } from '@xylabs/react-shared'
|
4
|
-
import {
|
3
|
+
import type { WithChildren } from '@xylabs/react-shared'
|
4
|
+
import type { SchemaNameToValidatorMap } from '@xyo-network/schema-cache'
|
5
|
+
import { SchemaCache } from '@xyo-network/schema-cache'
|
5
6
|
import React, { useState } from 'react'
|
6
7
|
|
7
8
|
import { useResolvePayload } from '../ResolvePayloadContext/index.ts'
|
@@ -1,6 +1,6 @@
|
|
1
|
-
import { Payload } from '@xyo-network/payload-model'
|
1
|
+
import type { Payload } from '@xyo-network/payload-model'
|
2
2
|
|
3
|
-
import { EmbedPluginBase, EmbedPluginVisibilityConfig } from '../contexts/index.ts'
|
3
|
+
import type { EmbedPluginBase, EmbedPluginVisibilityConfig } from '../contexts/index.ts'
|
4
4
|
|
5
5
|
export interface EmbedPluginProps extends EmbedPluginBase {
|
6
6
|
hideElementsConfig?: EmbedPluginVisibilityConfig
|
package/xy.config.ts
CHANGED