{"version":3,"file":"AppLayout-DbfWnEzi.js","sources":["../../../node_modules/@mantine/core/esm/core/utils/get-breakpoint-value/get-breakpoint-value.mjs","../../../node_modules/@mantine/core/esm/core/utils/get-sorted-breakpoints/get-sorted-breakpoints.mjs","../../../node_modules/@mantine/hooks/esm/use-hover/use-hover.mjs","../../../node_modules/@mantine/hooks/esm/use-previous/use-previous.mjs","../../../node_modules/@mantine/core/esm/components/AppShell/AppShell.context.mjs","../../../node_modules/@mantine/core/esm/components/AppShell/AppShell.module.css.mjs","../../../node_modules/@mantine/core/esm/components/AppShell/AppShellAside/AppShellAside.mjs","../../../node_modules/@mantine/core/esm/components/AppShell/AppShellFooter/AppShellFooter.mjs","../../../node_modules/@mantine/core/esm/components/AppShell/AppShellHeader/AppShellHeader.mjs","../../../node_modules/@mantine/core/esm/components/AppShell/AppShellMain/AppShellMain.mjs","../../../node_modules/@mantine/core/esm/components/AppShell/AppShellMediaStyles/get-base-size/get-base-size.mjs","../../../node_modules/@mantine/core/esm/components/AppShell/AppShellMediaStyles/is-primitive-size/is-primitive-size.mjs","../../../node_modules/@mantine/core/esm/components/AppShell/AppShellMediaStyles/is-responsive-size/is-responsive-size.mjs","../../../node_modules/@mantine/core/esm/components/AppShell/AppShellMediaStyles/assign-aside-variables/assign-aside-variables.mjs","../../../node_modules/@mantine/core/esm/components/AppShell/AppShellMediaStyles/assign-footer-variables/assign-footer-variables.mjs","../../../node_modules/@mantine/core/esm/components/AppShell/AppShellMediaStyles/assign-header-variables/assign-header-variables.mjs","../../../node_modules/@mantine/core/esm/components/AppShell/AppShellMediaStyles/assign-navbar-variables/assign-navbar-variables.mjs","../../../node_modules/@mantine/core/esm/components/AppShell/AppShellMediaStyles/get-padding-value/get-padding-value.mjs","../../../node_modules/@mantine/core/esm/components/AppShell/AppShellMediaStyles/assign-padding-variables/assign-padding-variables.mjs","../../../node_modules/@mantine/core/esm/components/AppShell/AppShellMediaStyles/get-variables/get-variables.mjs","../../../node_modules/@mantine/core/esm/components/AppShell/AppShellMediaStyles/AppShellMediaStyles.mjs","../../../node_modules/@mantine/core/esm/components/AppShell/AppShellNavbar/AppShellNavbar.mjs","../../../node_modules/@mantine/core/esm/components/AppShell/AppShellSection/AppShellSection.mjs","../../../node_modules/@mantine/core/esm/components/AppShell/use-resizing/use-resizing.mjs","../../../node_modules/@mantine/core/esm/components/AppShell/AppShell.mjs","../../../node_modules/@mantine/core/esm/components/Breadcrumbs/Breadcrumbs.module.css.mjs","../../../node_modules/@mantine/core/esm/components/Breadcrumbs/Breadcrumbs.mjs","../../../node_modules/@mantine/core/esm/components/Burger/Burger.module.css.mjs","../../../node_modules/@mantine/core/esm/components/Burger/Burger.mjs","../../../node_modules/@mantine/core/esm/components/Image/Image.module.css.mjs","../../../node_modules/@mantine/core/esm/components/Image/Image.mjs","../../../node_modules/@mantine/core/esm/components/LoadingOverlay/LoadingOverlay.module.css.mjs","../../../node_modules/@mantine/core/esm/components/LoadingOverlay/LoadingOverlay.mjs","../../../node_modules/timeago.js/esm/utils/date.js","../../../node_modules/timeago.js/esm/format.js","../../../app/components/TimeAgo.tsx","../../../app/helpers/layout.ts","../../../app/assets/images/logo-circle.png","../../../app/helpers/sidebar.ts","../../../app/helpers/contact.tsx","../../../app/components/AppMenu.tsx","../../../node_modules/react-fast-marquee/dist/index.js","../../../app/helpers/currentlyPlaying.tsx","../../../app/components/CurrentlyPlayingLyricsTooltip.tsx","../../../node_modules/swr/dist/subscription/index.mjs","../../../app/helpers/actioncable/subscription.ts","../../../app/components/CurrentlyPlayingIsland.tsx","../../../app/components/AppHeader.tsx","../../../app/assets/images/heart.png","../../../app/components/Attribution.tsx","../../../app/components/SidebarControlsProvider.tsx","../../../app/components/AppLayout.tsx"],"sourcesContent":["'use client';\nimport { px } from '../units-converters/px.mjs';\n\nfunction getBreakpointValue(breakpoint, breakpoints) {\n if (breakpoint in breakpoints) {\n return px(breakpoints[breakpoint]);\n }\n return px(breakpoint);\n}\n\nexport { getBreakpointValue };\n//# sourceMappingURL=get-breakpoint-value.mjs.map\n","'use client';\nimport { getBreakpointValue } from '../get-breakpoint-value/get-breakpoint-value.mjs';\n\nfunction getSortedBreakpoints(values, breakpoints) {\n const convertedBreakpoints = values.map((breakpoint) => ({\n value: breakpoint,\n px: getBreakpointValue(breakpoint, breakpoints)\n }));\n convertedBreakpoints.sort((a, b) => a.px - b.px);\n return convertedBreakpoints;\n}\n\nexport { getSortedBreakpoints };\n//# sourceMappingURL=get-sorted-breakpoints.mjs.map\n","'use client';\nimport { useState, useRef, useCallback, useEffect } from 'react';\n\nfunction useHover() {\n const [hovered, setHovered] = useState(false);\n const ref = useRef(null);\n const onMouseEnter = useCallback(() => setHovered(true), []);\n const onMouseLeave = useCallback(() => setHovered(false), []);\n useEffect(() => {\n const node = ref.current;\n if (node) {\n node.addEventListener(\"mouseenter\", onMouseEnter);\n node.addEventListener(\"mouseleave\", onMouseLeave);\n return () => {\n node?.removeEventListener(\"mouseenter\", onMouseEnter);\n node?.removeEventListener(\"mouseleave\", onMouseLeave);\n };\n }\n return void 0;\n }, [ref.current]);\n return { ref, hovered };\n}\n\nexport { useHover };\n//# sourceMappingURL=use-hover.mjs.map\n","'use client';\nimport { useRef, useEffect } from 'react';\n\nfunction usePrevious(value) {\n const ref = useRef(void 0);\n useEffect(() => {\n ref.current = value;\n }, [value]);\n return ref.current;\n}\n\nexport { usePrevious };\n//# sourceMappingURL=use-previous.mjs.map\n","'use client';\nimport 'react';\nimport { createSafeContext } from '../../core/utils/create-safe-context/create-safe-context.mjs';\nimport 'react/jsx-runtime';\nimport '@mantine/hooks';\nimport 'clsx';\nimport '../../core/MantineProvider/Mantine.context.mjs';\nimport '../../core/MantineProvider/default-theme.mjs';\nimport '../../core/MantineProvider/MantineProvider.mjs';\nimport '../../core/MantineProvider/MantineThemeProvider/MantineThemeProvider.mjs';\nimport '../../core/MantineProvider/MantineCssVariables/MantineCssVariables.mjs';\nimport '../../core/Box/Box.mjs';\nimport '../../core/DirectionProvider/DirectionProvider.mjs';\n\nconst [AppShellProvider, useAppShellContext] = createSafeContext(\n \"AppShell was not found in tree\"\n);\n\nexport { AppShellProvider, useAppShellContext };\n//# sourceMappingURL=AppShell.context.mjs.map\n","'use client';\nvar classes = {\"root\":\"m_89ab340\",\"navbar\":\"m_45252eee\",\"aside\":\"m_9cdde9a\",\"header\":\"m_3b16f56b\",\"main\":\"m_8983817\",\"footer\":\"m_3840c879\",\"section\":\"m_6dcfc7c7\"};\n\nexport { classes as default };\n//# sourceMappingURL=AppShell.module.css.mjs.map\n","'use client';\nimport { jsx } from 'react/jsx-runtime';\nimport 'react';\nimport '@mantine/hooks';\nimport 'clsx';\nimport '../../../core/MantineProvider/Mantine.context.mjs';\nimport '../../../core/MantineProvider/default-theme.mjs';\nimport '../../../core/MantineProvider/MantineProvider.mjs';\nimport '../../../core/MantineProvider/MantineThemeProvider/MantineThemeProvider.mjs';\nimport { useProps } from '../../../core/MantineProvider/use-props/use-props.mjs';\nimport '../../../core/MantineProvider/MantineCssVariables/MantineCssVariables.mjs';\nimport { Box } from '../../../core/Box/Box.mjs';\nimport { factory } from '../../../core/factory/factory.mjs';\nimport '../../../core/DirectionProvider/DirectionProvider.mjs';\nimport { useAppShellContext } from '../AppShell.context.mjs';\nimport classes from '../AppShell.module.css.mjs';\n\nconst defaultProps = {};\nconst AppShellAside = factory((_props, ref) => {\n const props = useProps(\"AppShellAside\", defaultProps, _props);\n const {\n classNames,\n className,\n style,\n styles,\n unstyled,\n vars,\n withBorder,\n zIndex,\n mod,\n ...others\n } = props;\n const ctx = useAppShellContext();\n if (ctx.disabled) {\n return null;\n }\n return /* @__PURE__ */ jsx(\n Box,\n {\n component: \"aside\",\n ref,\n mod: [{ \"with-border\": withBorder ?? ctx.withBorder }, mod],\n ...ctx.getStyles(\"aside\", { className, classNames, styles, style }),\n ...others,\n __vars: {\n \"--app-shell-aside-z-index\": `calc(${zIndex ?? ctx.zIndex} + 1)`\n }\n }\n );\n});\nAppShellAside.classes = classes;\nAppShellAside.displayName = \"@mantine/core/AppShellAside\";\n\nexport { AppShellAside };\n//# sourceMappingURL=AppShellAside.mjs.map\n","'use client';\nimport { jsx } from 'react/jsx-runtime';\nimport cx from 'clsx';\nimport { RemoveScroll } from 'react-remove-scroll';\nimport 'react';\nimport '@mantine/hooks';\nimport '../../../core/MantineProvider/Mantine.context.mjs';\nimport '../../../core/MantineProvider/default-theme.mjs';\nimport '../../../core/MantineProvider/MantineProvider.mjs';\nimport '../../../core/MantineProvider/MantineThemeProvider/MantineThemeProvider.mjs';\nimport { useProps } from '../../../core/MantineProvider/use-props/use-props.mjs';\nimport '../../../core/MantineProvider/MantineCssVariables/MantineCssVariables.mjs';\nimport { Box } from '../../../core/Box/Box.mjs';\nimport { factory } from '../../../core/factory/factory.mjs';\nimport '../../../core/DirectionProvider/DirectionProvider.mjs';\nimport { useAppShellContext } from '../AppShell.context.mjs';\nimport classes from '../AppShell.module.css.mjs';\n\nconst defaultProps = {};\nconst AppShellFooter = factory((_props, ref) => {\n const props = useProps(\"AppShellFooter\", defaultProps, _props);\n const {\n classNames,\n className,\n style,\n styles,\n unstyled,\n vars,\n withBorder,\n zIndex,\n mod,\n ...others\n } = props;\n const ctx = useAppShellContext();\n if (ctx.disabled) {\n return null;\n }\n return /* @__PURE__ */ jsx(\n Box,\n {\n component: \"footer\",\n ref,\n mod: [{ \"with-border\": withBorder ?? ctx.withBorder }, mod],\n ...ctx.getStyles(\"footer\", {\n className: cx({ [RemoveScroll.classNames.zeroRight]: ctx.offsetScrollbars }, className),\n classNames,\n styles,\n style\n }),\n ...others,\n __vars: { \"--app-shell-footer-z-index\": (zIndex ?? ctx.zIndex)?.toString() }\n }\n );\n});\nAppShellFooter.classes = classes;\nAppShellFooter.displayName = \"@mantine/core/AppShellFooter\";\n\nexport { AppShellFooter };\n//# sourceMappingURL=AppShellFooter.mjs.map\n","'use client';\nimport { jsx } from 'react/jsx-runtime';\nimport cx from 'clsx';\nimport { RemoveScroll } from 'react-remove-scroll';\nimport 'react';\nimport '@mantine/hooks';\nimport '../../../core/MantineProvider/Mantine.context.mjs';\nimport '../../../core/MantineProvider/default-theme.mjs';\nimport '../../../core/MantineProvider/MantineProvider.mjs';\nimport '../../../core/MantineProvider/MantineThemeProvider/MantineThemeProvider.mjs';\nimport { useProps } from '../../../core/MantineProvider/use-props/use-props.mjs';\nimport '../../../core/MantineProvider/MantineCssVariables/MantineCssVariables.mjs';\nimport { Box } from '../../../core/Box/Box.mjs';\nimport { factory } from '../../../core/factory/factory.mjs';\nimport '../../../core/DirectionProvider/DirectionProvider.mjs';\nimport { useAppShellContext } from '../AppShell.context.mjs';\nimport classes from '../AppShell.module.css.mjs';\n\nconst defaultProps = {};\nconst AppShellHeader = factory((_props, ref) => {\n const props = useProps(\"AppShellHeader\", defaultProps, _props);\n const {\n classNames,\n className,\n style,\n styles,\n unstyled,\n vars,\n withBorder,\n zIndex,\n mod,\n ...others\n } = props;\n const ctx = useAppShellContext();\n if (ctx.disabled) {\n return null;\n }\n return /* @__PURE__ */ jsx(\n Box,\n {\n component: \"header\",\n ref,\n mod: [{ \"with-border\": withBorder ?? ctx.withBorder }, mod],\n ...ctx.getStyles(\"header\", {\n className: cx({ [RemoveScroll.classNames.zeroRight]: ctx.offsetScrollbars }, className),\n classNames,\n styles,\n style\n }),\n ...others,\n __vars: { \"--app-shell-header-z-index\": (zIndex ?? ctx.zIndex)?.toString() }\n }\n );\n});\nAppShellHeader.classes = classes;\nAppShellHeader.displayName = \"@mantine/core/AppShellHeader\";\n\nexport { AppShellHeader };\n//# sourceMappingURL=AppShellHeader.mjs.map\n","'use client';\nimport { jsx } from 'react/jsx-runtime';\nimport 'react';\nimport '@mantine/hooks';\nimport 'clsx';\nimport '../../../core/MantineProvider/Mantine.context.mjs';\nimport '../../../core/MantineProvider/default-theme.mjs';\nimport '../../../core/MantineProvider/MantineProvider.mjs';\nimport '../../../core/MantineProvider/MantineThemeProvider/MantineThemeProvider.mjs';\nimport { useProps } from '../../../core/MantineProvider/use-props/use-props.mjs';\nimport '../../../core/MantineProvider/MantineCssVariables/MantineCssVariables.mjs';\nimport { Box } from '../../../core/Box/Box.mjs';\nimport { factory } from '../../../core/factory/factory.mjs';\nimport '../../../core/DirectionProvider/DirectionProvider.mjs';\nimport { useAppShellContext } from '../AppShell.context.mjs';\nimport classes from '../AppShell.module.css.mjs';\n\nconst defaultProps = {};\nconst AppShellMain = factory((_props, ref) => {\n const props = useProps(\"AppShellMain\", defaultProps, _props);\n const { classNames, className, style, styles, vars, ...others } = props;\n const ctx = useAppShellContext();\n return /* @__PURE__ */ jsx(\n Box,\n {\n component: \"main\",\n ref,\n ...ctx.getStyles(\"main\", { className, style, classNames, styles }),\n ...others\n }\n );\n});\nAppShellMain.classes = classes;\nAppShellMain.displayName = \"@mantine/core/AppShellMain\";\n\nexport { AppShellMain };\n//# sourceMappingURL=AppShellMain.mjs.map\n","'use client';\nfunction getBaseSize(size) {\n if (typeof size === \"object\") {\n return size.base;\n }\n return size;\n}\n\nexport { getBaseSize };\n//# sourceMappingURL=get-base-size.mjs.map\n","'use client';\nfunction isPrimitiveSize(size) {\n const isBaseSize = typeof size === \"object\" && size !== null && typeof size.base !== \"undefined\" && Object.keys(size).length === 1;\n return typeof size === \"number\" || typeof size === \"string\" || isBaseSize;\n}\n\nexport { isPrimitiveSize };\n//# sourceMappingURL=is-primitive-size.mjs.map\n","'use client';\nfunction isResponsiveSize(size) {\n if (typeof size !== \"object\" || size === null) {\n return false;\n }\n if (Object.keys(size).length === 1 && \"base\" in size) {\n return false;\n }\n return true;\n}\n\nexport { isResponsiveSize };\n//# sourceMappingURL=is-responsive-size.mjs.map\n","'use client';\nimport { keys } from '../../../../core/utils/keys/keys.mjs';\nimport { rem } from '../../../../core/utils/units-converters/rem.mjs';\nimport 'react';\nimport 'react/jsx-runtime';\nimport { getBreakpointValue } from '../../../../core/utils/get-breakpoint-value/get-breakpoint-value.mjs';\nimport '@mantine/hooks';\nimport 'clsx';\nimport '../../../../core/MantineProvider/Mantine.context.mjs';\nimport '../../../../core/MantineProvider/default-theme.mjs';\nimport '../../../../core/MantineProvider/MantineProvider.mjs';\nimport '../../../../core/MantineProvider/MantineThemeProvider/MantineThemeProvider.mjs';\nimport '../../../../core/MantineProvider/MantineCssVariables/MantineCssVariables.mjs';\nimport '../../../../core/Box/Box.mjs';\nimport '../../../../core/DirectionProvider/DirectionProvider.mjs';\nimport { getBaseSize } from '../get-base-size/get-base-size.mjs';\nimport { isPrimitiveSize } from '../is-primitive-size/is-primitive-size.mjs';\nimport { isResponsiveSize } from '../is-responsive-size/is-responsive-size.mjs';\n\nfunction assignAsideVariables({\n baseStyles,\n minMediaStyles,\n maxMediaStyles,\n aside,\n theme\n}) {\n const asideWidth = aside?.width;\n const collapsedAsideTransform = \"translateX(var(--app-shell-aside-width))\";\n const collapsedAsideTransformRtl = \"translateX(calc(var(--app-shell-aside-width) * -1))\";\n if (aside?.breakpoint && !aside?.collapsed?.mobile) {\n maxMediaStyles[aside?.breakpoint] = maxMediaStyles[aside?.breakpoint] || {};\n maxMediaStyles[aside?.breakpoint][\"--app-shell-aside-width\"] = \"100%\";\n maxMediaStyles[aside?.breakpoint][\"--app-shell-aside-offset\"] = \"0px\";\n }\n if (isPrimitiveSize(asideWidth)) {\n const baseSize = rem(getBaseSize(asideWidth));\n baseStyles[\"--app-shell-aside-width\"] = baseSize;\n baseStyles[\"--app-shell-aside-offset\"] = baseSize;\n }\n if (isResponsiveSize(asideWidth)) {\n if (typeof asideWidth.base !== \"undefined\") {\n baseStyles[\"--app-shell-aside-width\"] = rem(asideWidth.base);\n baseStyles[\"--app-shell-aside-offset\"] = rem(asideWidth.base);\n }\n keys(asideWidth).forEach((key) => {\n if (key !== \"base\") {\n minMediaStyles[key] = minMediaStyles[key] || {};\n minMediaStyles[key][\"--app-shell-aside-width\"] = rem(asideWidth[key]);\n minMediaStyles[key][\"--app-shell-aside-offset\"] = rem(asideWidth[key]);\n }\n });\n }\n if (aside?.collapsed?.desktop) {\n const breakpointValue = aside.breakpoint;\n minMediaStyles[breakpointValue] = minMediaStyles[breakpointValue] || {};\n minMediaStyles[breakpointValue][\"--app-shell-aside-transform\"] = collapsedAsideTransform;\n minMediaStyles[breakpointValue][\"--app-shell-aside-transform-rtl\"] = collapsedAsideTransformRtl;\n minMediaStyles[breakpointValue][\"--app-shell-aside-offset\"] = \"0px !important\";\n }\n if (aside?.collapsed?.mobile) {\n const breakpointValue = getBreakpointValue(aside.breakpoint, theme.breakpoints) - 0.1;\n maxMediaStyles[breakpointValue] = maxMediaStyles[breakpointValue] || {};\n maxMediaStyles[breakpointValue][\"--app-shell-aside-width\"] = \"100%\";\n maxMediaStyles[breakpointValue][\"--app-shell-aside-offset\"] = \"0px\";\n maxMediaStyles[breakpointValue][\"--app-shell-aside-transform\"] = collapsedAsideTransform;\n maxMediaStyles[breakpointValue][\"--app-shell-aside-transform-rtl\"] = collapsedAsideTransformRtl;\n }\n}\n\nexport { assignAsideVariables };\n//# sourceMappingURL=assign-aside-variables.mjs.map\n","'use client';\nimport { keys } from '../../../../core/utils/keys/keys.mjs';\nimport { rem } from '../../../../core/utils/units-converters/rem.mjs';\nimport 'react';\nimport 'react/jsx-runtime';\nimport '@mantine/hooks';\nimport 'clsx';\nimport '../../../../core/MantineProvider/Mantine.context.mjs';\nimport '../../../../core/MantineProvider/default-theme.mjs';\nimport '../../../../core/MantineProvider/MantineProvider.mjs';\nimport '../../../../core/MantineProvider/MantineThemeProvider/MantineThemeProvider.mjs';\nimport '../../../../core/MantineProvider/MantineCssVariables/MantineCssVariables.mjs';\nimport '../../../../core/Box/Box.mjs';\nimport '../../../../core/DirectionProvider/DirectionProvider.mjs';\nimport { getBaseSize } from '../get-base-size/get-base-size.mjs';\nimport { isPrimitiveSize } from '../is-primitive-size/is-primitive-size.mjs';\nimport { isResponsiveSize } from '../is-responsive-size/is-responsive-size.mjs';\n\nfunction assignFooterVariables({\n baseStyles,\n minMediaStyles,\n footer\n}) {\n const footerHeight = footer?.height;\n const collapsedFooterTransform = \"translateY(var(--app-shell-footer-height))\";\n const shouldOffset = footer?.offset ?? true;\n if (isPrimitiveSize(footerHeight)) {\n const baseSize = rem(getBaseSize(footerHeight));\n baseStyles[\"--app-shell-footer-height\"] = baseSize;\n if (shouldOffset) {\n baseStyles[\"--app-shell-footer-offset\"] = baseSize;\n }\n }\n if (isResponsiveSize(footerHeight)) {\n if (typeof footerHeight.base !== \"undefined\") {\n baseStyles[\"--app-shell-footer-height\"] = rem(footerHeight.base);\n if (shouldOffset) {\n baseStyles[\"--app-shell-footer-offset\"] = rem(footerHeight.base);\n }\n }\n keys(footerHeight).forEach((key) => {\n if (key !== \"base\") {\n minMediaStyles[key] = minMediaStyles[key] || {};\n minMediaStyles[key][\"--app-shell-footer-height\"] = rem(footerHeight[key]);\n if (shouldOffset) {\n minMediaStyles[key][\"--app-shell-footer-offset\"] = rem(footerHeight[key]);\n }\n }\n });\n }\n if (footer?.collapsed) {\n baseStyles[\"--app-shell-footer-transform\"] = collapsedFooterTransform;\n baseStyles[\"--app-shell-footer-offset\"] = \"0px !important\";\n }\n}\n\nexport { assignFooterVariables };\n//# sourceMappingURL=assign-footer-variables.mjs.map\n","'use client';\nimport { keys } from '../../../../core/utils/keys/keys.mjs';\nimport { rem } from '../../../../core/utils/units-converters/rem.mjs';\nimport 'react';\nimport 'react/jsx-runtime';\nimport '@mantine/hooks';\nimport 'clsx';\nimport '../../../../core/MantineProvider/Mantine.context.mjs';\nimport '../../../../core/MantineProvider/default-theme.mjs';\nimport '../../../../core/MantineProvider/MantineProvider.mjs';\nimport '../../../../core/MantineProvider/MantineThemeProvider/MantineThemeProvider.mjs';\nimport '../../../../core/MantineProvider/MantineCssVariables/MantineCssVariables.mjs';\nimport '../../../../core/Box/Box.mjs';\nimport '../../../../core/DirectionProvider/DirectionProvider.mjs';\nimport { getBaseSize } from '../get-base-size/get-base-size.mjs';\nimport { isPrimitiveSize } from '../is-primitive-size/is-primitive-size.mjs';\nimport { isResponsiveSize } from '../is-responsive-size/is-responsive-size.mjs';\n\nfunction assignHeaderVariables({\n baseStyles,\n minMediaStyles,\n header\n}) {\n const headerHeight = header?.height;\n const collapsedHeaderTransform = \"translateY(calc(var(--app-shell-header-height) * -1))\";\n const shouldOffset = header?.offset ?? true;\n if (isPrimitiveSize(headerHeight)) {\n const baseSize = rem(getBaseSize(headerHeight));\n baseStyles[\"--app-shell-header-height\"] = baseSize;\n if (shouldOffset) {\n baseStyles[\"--app-shell-header-offset\"] = baseSize;\n }\n }\n if (isResponsiveSize(headerHeight)) {\n if (typeof headerHeight.base !== \"undefined\") {\n baseStyles[\"--app-shell-header-height\"] = rem(headerHeight.base);\n if (shouldOffset) {\n baseStyles[\"--app-shell-header-offset\"] = rem(headerHeight.base);\n }\n }\n keys(headerHeight).forEach((key) => {\n if (key !== \"base\") {\n minMediaStyles[key] = minMediaStyles[key] || {};\n minMediaStyles[key][\"--app-shell-header-height\"] = rem(headerHeight[key]);\n if (shouldOffset) {\n minMediaStyles[key][\"--app-shell-header-offset\"] = rem(headerHeight[key]);\n }\n }\n });\n }\n if (header?.collapsed) {\n baseStyles[\"--app-shell-header-transform\"] = collapsedHeaderTransform;\n baseStyles[\"--app-shell-header-offset\"] = \"0px !important\";\n }\n}\n\nexport { assignHeaderVariables };\n//# sourceMappingURL=assign-header-variables.mjs.map\n","'use client';\nimport { keys } from '../../../../core/utils/keys/keys.mjs';\nimport { rem } from '../../../../core/utils/units-converters/rem.mjs';\nimport 'react';\nimport 'react/jsx-runtime';\nimport { getBreakpointValue } from '../../../../core/utils/get-breakpoint-value/get-breakpoint-value.mjs';\nimport '@mantine/hooks';\nimport 'clsx';\nimport '../../../../core/MantineProvider/Mantine.context.mjs';\nimport '../../../../core/MantineProvider/default-theme.mjs';\nimport '../../../../core/MantineProvider/MantineProvider.mjs';\nimport '../../../../core/MantineProvider/MantineThemeProvider/MantineThemeProvider.mjs';\nimport '../../../../core/MantineProvider/MantineCssVariables/MantineCssVariables.mjs';\nimport '../../../../core/Box/Box.mjs';\nimport '../../../../core/DirectionProvider/DirectionProvider.mjs';\nimport { getBaseSize } from '../get-base-size/get-base-size.mjs';\nimport { isPrimitiveSize } from '../is-primitive-size/is-primitive-size.mjs';\nimport { isResponsiveSize } from '../is-responsive-size/is-responsive-size.mjs';\n\nfunction assignNavbarVariables({\n baseStyles,\n minMediaStyles,\n maxMediaStyles,\n navbar,\n theme\n}) {\n const navbarWidth = navbar?.width;\n const collapsedNavbarTransform = \"translateX(calc(var(--app-shell-navbar-width) * -1))\";\n const collapsedNavbarTransformRtl = \"translateX(var(--app-shell-navbar-width))\";\n if (navbar?.breakpoint && !navbar?.collapsed?.mobile) {\n maxMediaStyles[navbar?.breakpoint] = maxMediaStyles[navbar?.breakpoint] || {};\n maxMediaStyles[navbar?.breakpoint][\"--app-shell-navbar-width\"] = \"100%\";\n maxMediaStyles[navbar?.breakpoint][\"--app-shell-navbar-offset\"] = \"0px\";\n }\n if (isPrimitiveSize(navbarWidth)) {\n const baseSize = rem(getBaseSize(navbarWidth));\n baseStyles[\"--app-shell-navbar-width\"] = baseSize;\n baseStyles[\"--app-shell-navbar-offset\"] = baseSize;\n }\n if (isResponsiveSize(navbarWidth)) {\n if (typeof navbarWidth.base !== \"undefined\") {\n baseStyles[\"--app-shell-navbar-width\"] = rem(navbarWidth.base);\n baseStyles[\"--app-shell-navbar-offset\"] = rem(navbarWidth.base);\n }\n keys(navbarWidth).forEach((key) => {\n if (key !== \"base\") {\n minMediaStyles[key] = minMediaStyles[key] || {};\n minMediaStyles[key][\"--app-shell-navbar-width\"] = rem(navbarWidth[key]);\n minMediaStyles[key][\"--app-shell-navbar-offset\"] = rem(navbarWidth[key]);\n }\n });\n }\n if (navbar?.collapsed?.desktop) {\n const breakpointValue = navbar.breakpoint;\n minMediaStyles[breakpointValue] = minMediaStyles[breakpointValue] || {};\n minMediaStyles[breakpointValue][\"--app-shell-navbar-transform\"] = collapsedNavbarTransform;\n minMediaStyles[breakpointValue][\"--app-shell-navbar-transform-rtl\"] = collapsedNavbarTransformRtl;\n minMediaStyles[breakpointValue][\"--app-shell-navbar-offset\"] = \"0px !important\";\n }\n if (navbar?.collapsed?.mobile) {\n const breakpointValue = getBreakpointValue(navbar.breakpoint, theme.breakpoints) - 0.1;\n maxMediaStyles[breakpointValue] = maxMediaStyles[breakpointValue] || {};\n maxMediaStyles[breakpointValue][\"--app-shell-navbar-width\"] = \"100%\";\n maxMediaStyles[breakpointValue][\"--app-shell-navbar-offset\"] = \"0px\";\n maxMediaStyles[breakpointValue][\"--app-shell-navbar-transform\"] = collapsedNavbarTransform;\n maxMediaStyles[breakpointValue][\"--app-shell-navbar-transform-rtl\"] = collapsedNavbarTransformRtl;\n }\n}\n\nexport { assignNavbarVariables };\n//# sourceMappingURL=assign-navbar-variables.mjs.map\n","'use client';\nimport 'react';\nimport 'react/jsx-runtime';\nimport { getSpacing } from '../../../../core/utils/get-size/get-size.mjs';\nimport '@mantine/hooks';\nimport 'clsx';\nimport '../../../../core/MantineProvider/Mantine.context.mjs';\nimport '../../../../core/MantineProvider/default-theme.mjs';\nimport '../../../../core/MantineProvider/MantineProvider.mjs';\nimport '../../../../core/MantineProvider/MantineThemeProvider/MantineThemeProvider.mjs';\nimport '../../../../core/MantineProvider/MantineCssVariables/MantineCssVariables.mjs';\nimport '../../../../core/Box/Box.mjs';\nimport '../../../../core/DirectionProvider/DirectionProvider.mjs';\n\nfunction getPaddingValue(padding) {\n return Number(padding) === 0 ? \"0px\" : getSpacing(padding);\n}\n\nexport { getPaddingValue };\n//# sourceMappingURL=get-padding-value.mjs.map\n","'use client';\nimport { keys } from '../../../../core/utils/keys/keys.mjs';\nimport 'react';\nimport 'react/jsx-runtime';\nimport '@mantine/hooks';\nimport 'clsx';\nimport '../../../../core/MantineProvider/Mantine.context.mjs';\nimport '../../../../core/MantineProvider/default-theme.mjs';\nimport '../../../../core/MantineProvider/MantineProvider.mjs';\nimport '../../../../core/MantineProvider/MantineThemeProvider/MantineThemeProvider.mjs';\nimport '../../../../core/MantineProvider/MantineCssVariables/MantineCssVariables.mjs';\nimport '../../../../core/Box/Box.mjs';\nimport '../../../../core/DirectionProvider/DirectionProvider.mjs';\nimport { getBaseSize } from '../get-base-size/get-base-size.mjs';\nimport { getPaddingValue } from '../get-padding-value/get-padding-value.mjs';\nimport { isPrimitiveSize } from '../is-primitive-size/is-primitive-size.mjs';\nimport { isResponsiveSize } from '../is-responsive-size/is-responsive-size.mjs';\n\nfunction assignPaddingVariables({\n padding,\n baseStyles,\n minMediaStyles\n}) {\n if (isPrimitiveSize(padding)) {\n baseStyles[\"--app-shell-padding\"] = getPaddingValue(getBaseSize(padding));\n }\n if (isResponsiveSize(padding)) {\n if (padding.base) {\n baseStyles[\"--app-shell-padding\"] = getPaddingValue(padding.base);\n }\n keys(padding).forEach((key) => {\n if (key !== \"base\") {\n minMediaStyles[key] = minMediaStyles[key] || {};\n minMediaStyles[key][\"--app-shell-padding\"] = getPaddingValue(padding[key]);\n }\n });\n }\n}\n\nexport { assignPaddingVariables };\n//# sourceMappingURL=assign-padding-variables.mjs.map\n","'use client';\nimport { keys } from '../../../../core/utils/keys/keys.mjs';\nimport { em } from '../../../../core/utils/units-converters/rem.mjs';\nimport 'react';\nimport 'react/jsx-runtime';\nimport { getSortedBreakpoints } from '../../../../core/utils/get-sorted-breakpoints/get-sorted-breakpoints.mjs';\nimport '@mantine/hooks';\nimport 'clsx';\nimport '../../../../core/MantineProvider/Mantine.context.mjs';\nimport '../../../../core/MantineProvider/default-theme.mjs';\nimport '../../../../core/MantineProvider/MantineProvider.mjs';\nimport '../../../../core/MantineProvider/MantineThemeProvider/MantineThemeProvider.mjs';\nimport '../../../../core/MantineProvider/MantineCssVariables/MantineCssVariables.mjs';\nimport '../../../../core/Box/Box.mjs';\nimport '../../../../core/DirectionProvider/DirectionProvider.mjs';\nimport { assignAsideVariables } from '../assign-aside-variables/assign-aside-variables.mjs';\nimport { assignFooterVariables } from '../assign-footer-variables/assign-footer-variables.mjs';\nimport { assignHeaderVariables } from '../assign-header-variables/assign-header-variables.mjs';\nimport { assignNavbarVariables } from '../assign-navbar-variables/assign-navbar-variables.mjs';\nimport { assignPaddingVariables } from '../assign-padding-variables/assign-padding-variables.mjs';\n\nfunction getVariables({ navbar, header, footer, aside, padding, theme }) {\n const minMediaStyles = {};\n const maxMediaStyles = {};\n const baseStyles = {};\n assignNavbarVariables({\n baseStyles,\n minMediaStyles,\n maxMediaStyles,\n navbar,\n theme\n });\n assignAsideVariables({\n baseStyles,\n minMediaStyles,\n maxMediaStyles,\n aside,\n theme\n });\n assignHeaderVariables({ baseStyles, minMediaStyles, header });\n assignFooterVariables({ baseStyles, minMediaStyles, footer });\n assignPaddingVariables({ baseStyles, minMediaStyles, padding });\n const minMedia = getSortedBreakpoints(keys(minMediaStyles), theme.breakpoints).map(\n (breakpoint) => ({\n query: `(min-width: ${em(breakpoint.px)})`,\n styles: minMediaStyles[breakpoint.value]\n })\n );\n const maxMedia = getSortedBreakpoints(keys(maxMediaStyles), theme.breakpoints).map(\n (breakpoint) => ({\n query: `(max-width: ${em(breakpoint.px)})`,\n styles: maxMediaStyles[breakpoint.value]\n })\n );\n const media = [...minMedia, ...maxMedia];\n return { baseStyles, media };\n}\n\nexport { getVariables };\n//# sourceMappingURL=get-variables.mjs.map\n","'use client';\nimport { jsx } from 'react/jsx-runtime';\nimport 'react';\nimport '@mantine/hooks';\nimport 'clsx';\nimport { useMantineContext } from '../../../core/MantineProvider/Mantine.context.mjs';\nimport '../../../core/MantineProvider/default-theme.mjs';\nimport '../../../core/MantineProvider/MantineProvider.mjs';\nimport { useMantineTheme } from '../../../core/MantineProvider/MantineThemeProvider/MantineThemeProvider.mjs';\nimport '../../../core/MantineProvider/MantineCssVariables/MantineCssVariables.mjs';\nimport { InlineStyles } from '../../../core/InlineStyles/InlineStyles.mjs';\nimport '../../../core/Box/Box.mjs';\nimport '../../../core/DirectionProvider/DirectionProvider.mjs';\nimport { getVariables } from './get-variables/get-variables.mjs';\n\nfunction AppShellMediaStyles({\n navbar,\n header,\n aside,\n footer,\n padding\n}) {\n const theme = useMantineTheme();\n const ctx = useMantineContext();\n const { media, baseStyles } = getVariables({ navbar, header, footer, aside, padding, theme });\n return /* @__PURE__ */ jsx(InlineStyles, { media, styles: baseStyles, selector: ctx.cssVariablesSelector });\n}\n\nexport { AppShellMediaStyles };\n//# sourceMappingURL=AppShellMediaStyles.mjs.map\n","'use client';\nimport { jsx } from 'react/jsx-runtime';\nimport 'react';\nimport '@mantine/hooks';\nimport 'clsx';\nimport '../../../core/MantineProvider/Mantine.context.mjs';\nimport '../../../core/MantineProvider/default-theme.mjs';\nimport '../../../core/MantineProvider/MantineProvider.mjs';\nimport '../../../core/MantineProvider/MantineThemeProvider/MantineThemeProvider.mjs';\nimport { useProps } from '../../../core/MantineProvider/use-props/use-props.mjs';\nimport '../../../core/MantineProvider/MantineCssVariables/MantineCssVariables.mjs';\nimport { Box } from '../../../core/Box/Box.mjs';\nimport { factory } from '../../../core/factory/factory.mjs';\nimport '../../../core/DirectionProvider/DirectionProvider.mjs';\nimport { useAppShellContext } from '../AppShell.context.mjs';\nimport classes from '../AppShell.module.css.mjs';\n\nconst defaultProps = {};\nconst AppShellNavbar = factory((_props, ref) => {\n const props = useProps(\"AppShellNavbar\", defaultProps, _props);\n const {\n classNames,\n className,\n style,\n styles,\n unstyled,\n vars,\n withBorder,\n zIndex,\n mod,\n ...others\n } = props;\n const ctx = useAppShellContext();\n if (ctx.disabled) {\n return null;\n }\n return /* @__PURE__ */ jsx(\n Box,\n {\n component: \"nav\",\n ref,\n mod: [{ \"with-border\": withBorder ?? ctx.withBorder }, mod],\n ...ctx.getStyles(\"navbar\", { className, classNames, styles, style }),\n ...others,\n __vars: {\n \"--app-shell-navbar-z-index\": `calc(${zIndex ?? ctx.zIndex} + 1)`\n }\n }\n );\n});\nAppShellNavbar.classes = classes;\nAppShellNavbar.displayName = \"@mantine/core/AppShellNavbar\";\n\nexport { AppShellNavbar };\n//# sourceMappingURL=AppShellNavbar.mjs.map\n","'use client';\nimport { jsx } from 'react/jsx-runtime';\nimport 'react';\nimport '@mantine/hooks';\nimport 'clsx';\nimport '../../../core/MantineProvider/Mantine.context.mjs';\nimport '../../../core/MantineProvider/default-theme.mjs';\nimport '../../../core/MantineProvider/MantineProvider.mjs';\nimport '../../../core/MantineProvider/MantineThemeProvider/MantineThemeProvider.mjs';\nimport { useProps } from '../../../core/MantineProvider/use-props/use-props.mjs';\nimport '../../../core/MantineProvider/MantineCssVariables/MantineCssVariables.mjs';\nimport { Box } from '../../../core/Box/Box.mjs';\nimport { polymorphicFactory } from '../../../core/factory/polymorphic-factory.mjs';\nimport '../../../core/DirectionProvider/DirectionProvider.mjs';\nimport { useAppShellContext } from '../AppShell.context.mjs';\nimport classes from '../AppShell.module.css.mjs';\n\nconst defaultProps = {};\nconst AppShellSection = polymorphicFactory((_props, ref) => {\n const props = useProps(\"AppShellSection\", defaultProps, _props);\n const { classNames, className, style, styles, vars, grow, mod, ...others } = props;\n const ctx = useAppShellContext();\n return /* @__PURE__ */ jsx(\n Box,\n {\n ref,\n mod: [{ grow }, mod],\n ...ctx.getStyles(\"section\", { className, style, classNames, styles }),\n ...others\n }\n );\n});\nAppShellSection.classes = classes;\nAppShellSection.displayName = \"@mantine/core/AppShellSection\";\n\nexport { AppShellSection };\n//# sourceMappingURL=AppShellSection.mjs.map\n","'use client';\nimport { useState, useRef, startTransition } from 'react';\nimport { useWindowEvent, useIsomorphicEffect } from '@mantine/hooks';\n\nfunction useResizing({ transitionDuration, disabled }) {\n const [resizing, setResizing] = useState(true);\n const resizingTimeout = useRef(-1);\n const disabledTimeout = useRef(-1);\n useWindowEvent(\"resize\", () => {\n setResizing(true);\n clearTimeout(resizingTimeout.current);\n resizingTimeout.current = window.setTimeout(\n () => startTransition(() => {\n setResizing(false);\n }),\n 200\n );\n });\n useIsomorphicEffect(() => {\n setResizing(true);\n clearTimeout(disabledTimeout.current);\n disabledTimeout.current = window.setTimeout(\n () => startTransition(() => {\n setResizing(false);\n }),\n transitionDuration || 0\n );\n }, [disabled, transitionDuration]);\n return resizing;\n}\n\nexport { useResizing };\n//# sourceMappingURL=use-resizing.mjs.map\n","'use client';\nimport { jsxs, jsx } from 'react/jsx-runtime';\nimport 'react';\nimport { getDefaultZIndex } from '../../core/utils/get-default-z-index/get-default-z-index.mjs';\nimport '@mantine/hooks';\nimport { createVarsResolver } from '../../core/styles-api/create-vars-resolver/create-vars-resolver.mjs';\nimport 'clsx';\nimport '../../core/MantineProvider/Mantine.context.mjs';\nimport '../../core/MantineProvider/default-theme.mjs';\nimport '../../core/MantineProvider/MantineProvider.mjs';\nimport '../../core/MantineProvider/MantineThemeProvider/MantineThemeProvider.mjs';\nimport { useProps } from '../../core/MantineProvider/use-props/use-props.mjs';\nimport '../../core/MantineProvider/MantineCssVariables/MantineCssVariables.mjs';\nimport { useStyles } from '../../core/styles-api/use-styles/use-styles.mjs';\nimport { Box } from '../../core/Box/Box.mjs';\nimport { factory } from '../../core/factory/factory.mjs';\nimport '../../core/DirectionProvider/DirectionProvider.mjs';\nimport { AppShellProvider } from './AppShell.context.mjs';\nimport { AppShellAside } from './AppShellAside/AppShellAside.mjs';\nimport { AppShellFooter } from './AppShellFooter/AppShellFooter.mjs';\nimport { AppShellHeader } from './AppShellHeader/AppShellHeader.mjs';\nimport { AppShellMain } from './AppShellMain/AppShellMain.mjs';\nimport { AppShellMediaStyles } from './AppShellMediaStyles/AppShellMediaStyles.mjs';\nimport { AppShellNavbar } from './AppShellNavbar/AppShellNavbar.mjs';\nimport { AppShellSection } from './AppShellSection/AppShellSection.mjs';\nimport { useResizing } from './use-resizing/use-resizing.mjs';\nimport classes from './AppShell.module.css.mjs';\n\nconst defaultProps = {\n withBorder: true,\n padding: 0,\n transitionDuration: 200,\n transitionTimingFunction: \"ease\",\n zIndex: getDefaultZIndex(\"app\")\n};\nconst varsResolver = createVarsResolver(\n (_, { transitionDuration, transitionTimingFunction }) => ({\n root: {\n \"--app-shell-transition-duration\": `${transitionDuration}ms`,\n \"--app-shell-transition-timing-function\": transitionTimingFunction\n }\n })\n);\nconst AppShell = factory((_props, ref) => {\n const props = useProps(\"AppShell\", defaultProps, _props);\n const {\n classNames,\n className,\n style,\n styles,\n unstyled,\n vars,\n navbar,\n withBorder,\n padding,\n transitionDuration,\n transitionTimingFunction,\n header,\n zIndex,\n layout,\n disabled,\n aside,\n footer,\n offsetScrollbars = layout !== \"alt\",\n mod,\n ...others\n } = props;\n const getStyles = useStyles({\n name: \"AppShell\",\n classes,\n props,\n className,\n style,\n classNames,\n styles,\n unstyled,\n vars,\n varsResolver\n });\n const resizing = useResizing({ disabled, transitionDuration });\n return /* @__PURE__ */ jsxs(AppShellProvider, { value: { getStyles, withBorder, zIndex, disabled, offsetScrollbars }, children: [\n /* @__PURE__ */ jsx(\n AppShellMediaStyles,\n {\n navbar,\n header,\n aside,\n footer,\n padding\n }\n ),\n /* @__PURE__ */ jsx(\n Box,\n {\n ref,\n ...getStyles(\"root\"),\n mod: [{ resizing, layout, disabled }, mod],\n ...others\n }\n )\n ] });\n});\nAppShell.classes = classes;\nAppShell.displayName = \"@mantine/core/AppShell\";\nAppShell.Navbar = AppShellNavbar;\nAppShell.Header = AppShellHeader;\nAppShell.Main = AppShellMain;\nAppShell.Aside = AppShellAside;\nAppShell.Footer = AppShellFooter;\nAppShell.Section = AppShellSection;\n\nexport { AppShell };\n//# sourceMappingURL=AppShell.mjs.map\n","'use client';\nvar classes = {\"root\":\"m_8b3717df\",\"breadcrumb\":\"m_f678d540\",\"separator\":\"m_3b8f2208\"};\n\nexport { classes as default };\n//# sourceMappingURL=Breadcrumbs.module.css.mjs.map\n","'use client';\nimport { jsx } from 'react/jsx-runtime';\nimport { Children, cloneElement, createElement } from 'react';\nimport { isElement } from '../../core/utils/is-element/is-element.mjs';\nimport { getSpacing } from '../../core/utils/get-size/get-size.mjs';\nimport '@mantine/hooks';\nimport { createVarsResolver } from '../../core/styles-api/create-vars-resolver/create-vars-resolver.mjs';\nimport 'clsx';\nimport '../../core/MantineProvider/Mantine.context.mjs';\nimport '../../core/MantineProvider/default-theme.mjs';\nimport '../../core/MantineProvider/MantineProvider.mjs';\nimport '../../core/MantineProvider/MantineThemeProvider/MantineThemeProvider.mjs';\nimport { useProps } from '../../core/MantineProvider/use-props/use-props.mjs';\nimport '../../core/MantineProvider/MantineCssVariables/MantineCssVariables.mjs';\nimport { useStyles } from '../../core/styles-api/use-styles/use-styles.mjs';\nimport { Box } from '../../core/Box/Box.mjs';\nimport { factory } from '../../core/factory/factory.mjs';\nimport '../../core/DirectionProvider/DirectionProvider.mjs';\nimport classes from './Breadcrumbs.module.css.mjs';\n\nconst defaultProps = {\n separator: \"/\"\n};\nconst varsResolver = createVarsResolver((_, { separatorMargin }) => ({\n root: {\n \"--bc-separator-margin\": getSpacing(separatorMargin)\n }\n}));\nconst Breadcrumbs = factory((_props, ref) => {\n const props = useProps(\"Breadcrumbs\", defaultProps, _props);\n const {\n classNames,\n className,\n style,\n styles,\n unstyled,\n vars,\n children,\n separator,\n separatorMargin,\n ...others\n } = props;\n const getStyles = useStyles({\n name: \"Breadcrumbs\",\n classes,\n props,\n className,\n style,\n classNames,\n styles,\n unstyled,\n vars,\n varsResolver\n });\n const items = Children.toArray(children).reduce((acc, child, index, array) => {\n const item = isElement(child) ? cloneElement(child, {\n ...getStyles(\"breadcrumb\", { className: child.props?.className }),\n key: index\n }) : /* @__PURE__ */ createElement(\"div\", { ...getStyles(\"breadcrumb\"), key: index }, child);\n acc.push(item);\n if (index !== array.length - 1) {\n acc.push(\n /* @__PURE__ */ createElement(Box, { ...getStyles(\"separator\"), key: `separator-${index}` }, separator)\n );\n }\n return acc;\n }, []);\n return /* @__PURE__ */ jsx(Box, { ref, ...getStyles(\"root\"), ...others, children: items });\n});\nBreadcrumbs.classes = classes;\nBreadcrumbs.displayName = \"@mantine/core/Breadcrumbs\";\n\nexport { Breadcrumbs };\n//# sourceMappingURL=Breadcrumbs.mjs.map\n","'use client';\nvar classes = {\"root\":\"m_fea6bf1a\",\"burger\":\"m_d4fb9cad\"};\n\nexport { classes as default };\n//# sourceMappingURL=Burger.module.css.mjs.map\n","'use client';\nimport { jsxs, jsx } from 'react/jsx-runtime';\nimport { rem } from '../../core/utils/units-converters/rem.mjs';\nimport 'react';\nimport { getSize } from '../../core/utils/get-size/get-size.mjs';\nimport '@mantine/hooks';\nimport { createVarsResolver } from '../../core/styles-api/create-vars-resolver/create-vars-resolver.mjs';\nimport 'clsx';\nimport { getThemeColor } from '../../core/MantineProvider/color-functions/get-theme-color/get-theme-color.mjs';\nimport '../../core/MantineProvider/Mantine.context.mjs';\nimport '../../core/MantineProvider/default-theme.mjs';\nimport '../../core/MantineProvider/MantineProvider.mjs';\nimport '../../core/MantineProvider/MantineThemeProvider/MantineThemeProvider.mjs';\nimport { useProps } from '../../core/MantineProvider/use-props/use-props.mjs';\nimport '../../core/MantineProvider/MantineCssVariables/MantineCssVariables.mjs';\nimport { useStyles } from '../../core/styles-api/use-styles/use-styles.mjs';\nimport { Box } from '../../core/Box/Box.mjs';\nimport { factory } from '../../core/factory/factory.mjs';\nimport '../../core/DirectionProvider/DirectionProvider.mjs';\nimport { UnstyledButton } from '../UnstyledButton/UnstyledButton.mjs';\nimport classes from './Burger.module.css.mjs';\n\nconst defaultProps = {};\nconst varsResolver = createVarsResolver(\n (theme, { color, size, lineSize, transitionDuration, transitionTimingFunction }) => ({\n root: {\n \"--burger-color\": color ? getThemeColor(color, theme) : void 0,\n \"--burger-size\": getSize(size, \"burger-size\"),\n \"--burger-line-size\": lineSize ? rem(lineSize) : void 0,\n \"--burger-transition-duration\": transitionDuration === void 0 ? void 0 : `${transitionDuration}ms`,\n \"--burger-transition-timing-function\": transitionTimingFunction\n }\n })\n);\nconst Burger = factory((_props, ref) => {\n const props = useProps(\"Burger\", defaultProps, _props);\n const {\n classNames,\n className,\n style,\n styles,\n unstyled,\n vars,\n opened,\n children,\n transitionDuration,\n transitionTimingFunction,\n lineSize,\n ...others\n } = props;\n const getStyles = useStyles({\n name: \"Burger\",\n classes,\n props,\n className,\n style,\n classNames,\n styles,\n unstyled,\n vars,\n varsResolver\n });\n return /* @__PURE__ */ jsxs(UnstyledButton, { ...getStyles(\"root\"), ref, ...others, children: [\n /* @__PURE__ */ jsx(Box, { mod: [\"reduce-motion\", { opened }], ...getStyles(\"burger\") }),\n children\n ] });\n});\nBurger.classes = classes;\nBurger.displayName = \"@mantine/core/Burger\";\n\nexport { Burger };\n//# sourceMappingURL=Burger.mjs.map\n","'use client';\nvar classes = {\"root\":\"m_9e117634\"};\n\nexport { classes as default };\n//# sourceMappingURL=Image.module.css.mjs.map\n","'use client';\nimport { jsx } from 'react/jsx-runtime';\nimport { useState, useEffect } from 'react';\nimport { getRadius } from '../../core/utils/get-size/get-size.mjs';\nimport '@mantine/hooks';\nimport { createVarsResolver } from '../../core/styles-api/create-vars-resolver/create-vars-resolver.mjs';\nimport 'clsx';\nimport '../../core/MantineProvider/Mantine.context.mjs';\nimport '../../core/MantineProvider/default-theme.mjs';\nimport '../../core/MantineProvider/MantineProvider.mjs';\nimport '../../core/MantineProvider/MantineThemeProvider/MantineThemeProvider.mjs';\nimport { useProps } from '../../core/MantineProvider/use-props/use-props.mjs';\nimport '../../core/MantineProvider/MantineCssVariables/MantineCssVariables.mjs';\nimport { useStyles } from '../../core/styles-api/use-styles/use-styles.mjs';\nimport { Box } from '../../core/Box/Box.mjs';\nimport { polymorphicFactory } from '../../core/factory/polymorphic-factory.mjs';\nimport '../../core/DirectionProvider/DirectionProvider.mjs';\nimport classes from './Image.module.css.mjs';\n\nconst defaultProps = {};\nconst varsResolver = createVarsResolver((_, { radius, fit }) => ({\n root: {\n \"--image-radius\": radius === void 0 ? void 0 : getRadius(radius),\n \"--image-object-fit\": fit\n }\n}));\nconst Image = polymorphicFactory((_props, ref) => {\n const props = useProps(\"Image\", defaultProps, _props);\n const {\n classNames,\n className,\n style,\n styles,\n unstyled,\n vars,\n onError,\n src,\n radius,\n fit,\n fallbackSrc,\n mod,\n ...others\n } = props;\n const [error, setError] = useState(!src);\n useEffect(() => setError(!src), [src]);\n const getStyles = useStyles({\n name: \"Image\",\n classes,\n props,\n className,\n style,\n classNames,\n styles,\n unstyled,\n vars,\n varsResolver\n });\n if (error && fallbackSrc) {\n return /* @__PURE__ */ jsx(\n Box,\n {\n component: \"img\",\n ref,\n src: fallbackSrc,\n ...getStyles(\"root\"),\n onError,\n mod: [\"fallback\", mod],\n ...others\n }\n );\n }\n return /* @__PURE__ */ jsx(\n Box,\n {\n component: \"img\",\n ref,\n ...getStyles(\"root\"),\n src,\n onError: (event) => {\n onError?.(event);\n setError(true);\n },\n mod,\n ...others\n }\n );\n});\nImage.classes = classes;\nImage.displayName = \"@mantine/core/Image\";\n\nexport { Image };\n//# sourceMappingURL=Image.mjs.map\n","'use client';\nvar classes = {\"root\":\"m_6e45937b\",\"loader\":\"m_e8eb006c\",\"overlay\":\"m_df587f17\"};\n\nexport { classes as default };\n//# sourceMappingURL=LoadingOverlay.module.css.mjs.map\n","'use client';\nimport { jsx, jsxs } from 'react/jsx-runtime';\nimport 'react';\nimport { getDefaultZIndex } from '../../core/utils/get-default-z-index/get-default-z-index.mjs';\nimport '@mantine/hooks';\nimport { createVarsResolver } from '../../core/styles-api/create-vars-resolver/create-vars-resolver.mjs';\nimport 'clsx';\nimport '../../core/MantineProvider/Mantine.context.mjs';\nimport '../../core/MantineProvider/default-theme.mjs';\nimport '../../core/MantineProvider/MantineProvider.mjs';\nimport { useMantineTheme } from '../../core/MantineProvider/MantineThemeProvider/MantineThemeProvider.mjs';\nimport { useProps } from '../../core/MantineProvider/use-props/use-props.mjs';\nimport '../../core/MantineProvider/MantineCssVariables/MantineCssVariables.mjs';\nimport { useStyles } from '../../core/styles-api/use-styles/use-styles.mjs';\nimport { Box } from '../../core/Box/Box.mjs';\nimport { factory } from '../../core/factory/factory.mjs';\nimport '../../core/DirectionProvider/DirectionProvider.mjs';\nimport { Loader } from '../Loader/Loader.mjs';\nimport { Overlay } from '../Overlay/Overlay.mjs';\nimport { Transition } from '../Transition/Transition.mjs';\nimport classes from './LoadingOverlay.module.css.mjs';\n\nconst defaultProps = {\n transitionProps: { transition: \"fade\", duration: 0 },\n overlayProps: { backgroundOpacity: 0.75 },\n zIndex: getDefaultZIndex(\"overlay\")\n};\nconst varsResolver = createVarsResolver((_, { zIndex }) => ({\n root: {\n \"--lo-z-index\": zIndex?.toString()\n }\n}));\nconst LoadingOverlay = factory((_props, ref) => {\n const props = useProps(\"LoadingOverlay\", defaultProps, _props);\n const {\n classNames,\n className,\n style,\n styles,\n unstyled,\n vars,\n transitionProps,\n loaderProps,\n overlayProps,\n visible,\n zIndex,\n ...others\n } = props;\n const theme = useMantineTheme();\n const getStyles = useStyles({\n name: \"LoadingOverlay\",\n classes,\n props,\n className,\n style,\n classNames,\n styles,\n unstyled,\n vars,\n varsResolver\n });\n const _overlayProps = { ...defaultProps.overlayProps, ...overlayProps };\n return /* @__PURE__ */ jsx(Transition, { transition: \"fade\", ...transitionProps, mounted: !!visible, children: (transitionStyles) => /* @__PURE__ */ jsxs(Box, { ...getStyles(\"root\", { style: transitionStyles }), ref, ...others, children: [\n /* @__PURE__ */ jsx(Loader, { ...getStyles(\"loader\"), unstyled, ...loaderProps }),\n /* @__PURE__ */ jsx(\n Overlay,\n {\n ..._overlayProps,\n ...getStyles(\"overlay\"),\n darkHidden: true,\n unstyled,\n color: overlayProps?.color || theme.white\n }\n ),\n /* @__PURE__ */ jsx(\n Overlay,\n {\n ..._overlayProps,\n ...getStyles(\"overlay\"),\n lightHidden: true,\n unstyled,\n color: overlayProps?.color || theme.colors.dark[5]\n }\n )\n ] }) });\n});\nLoadingOverlay.classes = classes;\nLoadingOverlay.displayName = \"@mantine/core/LoadingOverlay\";\n\nexport { LoadingOverlay };\n//# sourceMappingURL=LoadingOverlay.mjs.map\n","/**\n * Created by hustcc on 18/5/20.\n * Contract: i@hust.cc\n */\nvar SEC_ARRAY = [\n 60,\n 60,\n 24,\n 7,\n 365 / 7 / 12,\n 12,\n];\n/**\n * format Date / string / timestamp to timestamp\n * @param input\n * @returns {*}\n */\nexport function toDate(input) {\n if (input instanceof Date)\n return input;\n // @ts-ignore\n if (!isNaN(input) || /^\\d+$/.test(input))\n return new Date(parseInt(input));\n input = (input || '')\n // @ts-ignore\n .trim()\n .replace(/\\.\\d+/, '') // remove milliseconds\n .replace(/-/, '/')\n .replace(/-/, '/')\n .replace(/(\\d)T(\\d)/, '$1 $2')\n .replace(/Z/, ' UTC') // 2017-2-5T3:57:52Z -> 2017-2-5 3:57:52UTC\n .replace(/([+-]\\d\\d):?(\\d\\d)/, ' $1$2'); // -04:00 -> -0400\n return new Date(input);\n}\n/**\n * format the diff second to *** time ago, with setting locale\n * @param diff\n * @param localeFunc\n * @returns\n */\nexport function formatDiff(diff, localeFunc) {\n /**\n * if locale is not exist, use defaultLocale.\n * if defaultLocale is not exist, use build-in `en`.\n * be sure of no error when locale is not exist.\n *\n * If `time in`, then 1\n * If `time ago`, then 0\n */\n var agoIn = diff < 0 ? 1 : 0;\n /**\n * Get absolute value of number (|diff| is non-negative) value of x\n * |diff| = diff if diff is positive\n * |diff| = -diff if diff is negative\n * |0| = 0\n */\n diff = Math.abs(diff);\n /**\n * Time in seconds\n */\n var totalSec = diff;\n /**\n * Unit of time\n */\n var idx = 0;\n for (; diff >= SEC_ARRAY[idx] && idx < SEC_ARRAY.length; idx++) {\n diff /= SEC_ARRAY[idx];\n }\n /**\n * Math.floor() is alternative of ~~\n *\n * The differences and bugs:\n * Math.floor(3.7) -> 4 but ~~3.7 -> 3\n * Math.floor(1559125440000.6) -> 1559125440000 but ~~1559125440000.6 -> 52311552\n *\n * More information about the performance of algebraic:\n * https://www.youtube.com/watch?v=65-RbBwZQdU\n */\n diff = Math.floor(diff);\n idx *= 2;\n if (diff > (idx === 0 ? 9 : 1))\n idx += 1;\n return localeFunc(diff, idx, totalSec)[agoIn].replace('%s', diff.toString());\n}\n/**\n * calculate the diff second between date to be formatted an now date.\n * @param date\n * @param relativeDate\n * @returns {number}\n */\nexport function diffSec(date, relativeDate) {\n var relDate = relativeDate ? toDate(relativeDate) : new Date();\n return (+relDate - +toDate(date)) / 1000;\n}\n/**\n * nextInterval: calculate the next interval time.\n * - diff: the diff sec between now and date to be formatted.\n *\n * What's the meaning?\n * diff = 61 then return 59\n * diff = 3601 (an hour + 1 second), then return 3599\n * make the interval with high performance.\n **/\nexport function nextInterval(diff) {\n var rst = 1, i = 0, d = Math.abs(diff);\n for (; diff >= SEC_ARRAY[i] && i < SEC_ARRAY.length; i++) {\n diff /= SEC_ARRAY[i];\n rst *= SEC_ARRAY[i];\n }\n d = d % rst;\n d = d ? rst - d : rst;\n return Math.ceil(d);\n}\n//# sourceMappingURL=date.js.map","import { formatDiff, diffSec } from './utils/date';\nimport { getLocale } from './register';\n/**\n * format a TDate into string\n * @param date\n * @param locale\n * @param opts\n */\nexport var format = function (date, locale, opts) {\n // diff seconds\n var sec = diffSec(date, opts && opts.relativeDate);\n // format it with locale\n return formatDiff(sec, getLocale(locale));\n};\n//# sourceMappingURL=format.js.map","import { Text } from \"@mantine/core\";\nimport { DateTime } from \"luxon\";\nimport { format as formatTimeAgo } from \"timeago.js\";\n\nexport interface TimeAgoProps\n extends TextProps,\n Omit, \"color\" | \"style\" | \"children\"> {\n children: string | DateTime;\n}\n\nconst TimeAgo: FC = ({ children, ...otherProps }) => {\n const date = useMemo(() => {\n const time =\n typeof children === \"string\" ? DateTime.fromISO(children) : children;\n return time.toJSDate();\n }, [children]);\n const [text, setText] = useState(() => formatTimeAgo(date));\n useEffect(() => {\n const interval = setInterval(() => {\n setText(formatTimeAgo(date));\n }, 1000);\n return () => {\n clearInterval(interval);\n };\n }, [date]);\n return (\n \n {text}\n \n );\n};\n\nexport default TimeAgo;\n","import { type Page } from \"@inertiajs/core\";\n\nimport { usePage } from \"./inertia/page\";\n\nexport type DynamicProp =\n | T\n | ((props: PageProps, page: Page) => T);\n\nexport const useResolveDynamicProp = (\n prop: T | ((props: PageProps, page: Page) => T),\n) => {\n const page = usePage();\n return useMemo(() => resolveDynamicProp(prop, page), [prop, page]);\n};\n\nexport const resolveDynamicProp = (\n prop: T | ((props: PageProps, page: Page) => T),\n page: Page,\n) => (prop instanceof Function ? prop(page.props, page) : prop);\n","export default \"__VITE_ASSET__DdV82cPX__\"","import { createContext, useContext } from \"react\";\n\nexport interface SidebarControls {\n opened: boolean;\n open: () => void;\n close: () => void;\n toggle: () => void;\n}\n\nexport const SidebarControlsContext = createContext(\n null,\n);\n\nexport const useSidebarControls = (): SidebarControls | null => {\n return useContext(SidebarControlsContext);\n};\n","import { useCallback, useState } from \"react\";\n\nimport { fetchRoute } from \"./routes/fetch\";\n\nexport interface UseContactOptions {\n type?: \"email\" | \"sms\";\n subject?: string;\n body?: string;\n onTriggered?: () => void;\n}\n\nexport interface UseContactResult {\n loading: boolean;\n error?: Error;\n}\n\nexport const useContact = (\n options?: UseContactOptions,\n): [(options?: UseContactOptions) => void, UseContactResult] => {\n const [result, setResult] = useState({\n loading: false,\n });\n const contact = useCallback(() => {\n setResult(result => ({ ...result, loading: true }));\n const { onTriggered, ...params } = options ?? {};\n fetchRoute<{ mailto: string; sms: string }>(routes.contactUrls.show, {\n descriptor: \"load contact info\",\n params: { query: params },\n })\n .then(\n ({ mailto, sms }): void => {\n location.href = params.type === \"sms\" ? sms : mailto;\n onTriggered?.();\n },\n (error: Error) => {\n setResult(result => ({ ...result, error }));\n },\n )\n .finally(() => {\n setResult(result => ({ ...result, loading: false }));\n });\n }, [options]);\n return [contact, result];\n};\n","import { type InertiaLinkProps } from \"@inertiajs/react\";\nimport { Loader, type MenuItemProps, Text } from \"@mantine/core\";\n\nimport LocateIcon from \"~icons/basil/current-location-solid\";\nimport MenuIcon from \"~icons/heroicons/bars-3-20-solid\";\nimport SmileIcon from \"~icons/heroicons/face-smile-20-solid\";\n\nimport { useContact } from \"~/helpers/contact\";\n\nimport classes from \"./AppMenu.module.css\";\n\nexport interface AppMenuProps\n extends BoxProps,\n Omit, \"style\" | \"children\" | \"onChange\"> {}\n\nconst AppMenu: FC = ({ ...otherProps }) => {\n const currentUser = useCurrentUser();\n const [opened, setOpened] = useState(false);\n\n // == Link items\n interface MenuLinkProps\n extends MenuItemProps,\n Omit {}\n const MenuLink: FC = props => (\n \n );\n\n return (\n \n \n }\n >\n menu\n \n \n \n }>\n home\n \n }\n >\n locate kai\n \n }\n >\n hang out w/ kai\n \n {\n setOpened(false);\n }}\n />\n \n {currentUser ? (\n <>\n }\n >\n account\n \n {currentUser.is_owner && (\n }\n >\n admin\n \n )}\n {\n setOpened(false);\n }}\n />\n \n ) : (\n }\n component={Link}\n href={routes.usersSessions.new.path()}\n >\n sign in\n \n )}\n \n \n \n \n );\n};\n\nexport default AppMenu;\n\ninterface LogoutItemProps extends BoxProps {\n onClose: () => void;\n}\n\nconst LogoutItem: FC = ({ onClose, ...otherProps }) => {\n const { trigger, mutating } = useRouteMutation(routes.usersSessions.destroy, {\n descriptor: \"sign out\",\n onSuccess: () => {\n onClose();\n toast.success(\"signed out successfully\");\n router.visit(routes.home.show.path(), { preserveScroll: true });\n },\n });\n\n return (\n : }\n closeMenuOnClick={false}\n onClick={() => {\n void trigger();\n }}\n {...otherProps}\n >\n sign out\n \n );\n};\n\ninterface ContactItemProps extends BoxProps {\n onClose: () => void;\n}\n\nconst ContactItem: FC = ({ onClose, ...otherProps }) => {\n const [contact, { loading }] = useContact({\n onTriggered: onClose,\n });\n\n return (\n : }\n closeMenuOnClick={false}\n onClick={() => {\n contact();\n }}\n {...otherProps}\n >\n shoot kai a msg\n \n );\n};\n\nconst ServerInfoItem: FC = props => {\n const { data } = useRouteSWR<{ bootedAt: string }>(\n routes.healthcheckHealthchecks.check,\n {\n descriptor: \"load server info\",\n },\n );\n const { bootedAt } = data ?? {};\n\n return (\n \n server booted{\" \"}\n {bootedAt ? (\n \n {bootedAt}\n \n ) : (\n \n \n 2 minutes ago\n \n \n )}\n \n );\n};\n","\"use client\"\n\n\nfunction ___$insertStyle(css) {\n if (!css || typeof window === 'undefined') {\n return;\n }\n const style = document.createElement('style');\n style.setAttribute('type', 'text/css');\n style.innerHTML = css;\n document.head.appendChild(style);\n return css;\n}\n\nObject.defineProperty(exports, '__esModule', { value: true });\n\nvar React = require('react');\n\nfunction _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }\n\nvar React__default = /*#__PURE__*/_interopDefaultLegacy(React);\n\n___$insertStyle(\".rfm-marquee-container {\\n overflow-x: hidden;\\n display: flex;\\n flex-direction: row;\\n position: relative;\\n width: var(--width);\\n transform: var(--transform);\\n}\\n.rfm-marquee-container:hover div {\\n animation-play-state: var(--pause-on-hover);\\n}\\n.rfm-marquee-container:active div {\\n animation-play-state: var(--pause-on-click);\\n}\\n\\n.rfm-overlay {\\n position: absolute;\\n width: 100%;\\n height: 100%;\\n}\\n.rfm-overlay::before, .rfm-overlay::after {\\n background: linear-gradient(to right, var(--gradient-color), rgba(255, 255, 255, 0));\\n content: \\\"\\\";\\n height: 100%;\\n position: absolute;\\n width: var(--gradient-width);\\n z-index: 2;\\n pointer-events: none;\\n touch-action: none;\\n}\\n.rfm-overlay::after {\\n right: 0;\\n top: 0;\\n transform: rotateZ(180deg);\\n}\\n.rfm-overlay::before {\\n left: 0;\\n top: 0;\\n}\\n\\n.rfm-marquee {\\n flex: 0 0 auto;\\n min-width: var(--min-width);\\n z-index: 1;\\n display: flex;\\n flex-direction: row;\\n align-items: center;\\n animation: scroll var(--duration) linear var(--delay) var(--iteration-count);\\n animation-play-state: var(--play);\\n animation-delay: var(--delay);\\n animation-direction: var(--direction);\\n}\\n@keyframes scroll {\\n 0% {\\n transform: translateX(0%);\\n }\\n 100% {\\n transform: translateX(-100%);\\n }\\n}\\n\\n.rfm-initial-child-container {\\n flex: 0 0 auto;\\n display: flex;\\n min-width: auto;\\n flex-direction: row;\\n align-items: center;\\n}\\n\\n.rfm-child {\\n transform: var(--transform);\\n}\");\n\nconst Marquee = React.forwardRef(function Marquee({ style = {}, className = \"\", autoFill = false, play = true, pauseOnHover = false, pauseOnClick = false, direction = \"left\", speed = 50, delay = 0, loop = 0, gradient = false, gradientColor = \"white\", gradientWidth = 200, onFinish, onCycleComplete, onMount, children, }, ref) {\r\n // React Hooks\r\n const [containerWidth, setContainerWidth] = React.useState(0);\r\n const [marqueeWidth, setMarqueeWidth] = React.useState(0);\r\n const [multiplier, setMultiplier] = React.useState(1);\r\n const [isMounted, setIsMounted] = React.useState(false);\r\n const rootRef = React.useRef(null);\r\n const containerRef = ref || rootRef;\r\n const marqueeRef = React.useRef(null);\r\n // Calculate width of container and marquee and set multiplier\r\n const calculateWidth = React.useCallback(() => {\r\n if (marqueeRef.current && containerRef.current) {\r\n const containerRect = containerRef.current.getBoundingClientRect();\r\n const marqueeRect = marqueeRef.current.getBoundingClientRect();\r\n let containerWidth = containerRect.width;\r\n let marqueeWidth = marqueeRect.width;\r\n // Swap width and height if direction is up or down\r\n if (direction === \"up\" || direction === \"down\") {\r\n containerWidth = containerRect.height;\r\n marqueeWidth = marqueeRect.height;\r\n }\r\n if (autoFill && containerWidth && marqueeWidth) {\r\n setMultiplier(marqueeWidth < containerWidth\r\n ? Math.ceil(containerWidth / marqueeWidth)\r\n : 1);\r\n }\r\n else {\r\n setMultiplier(1);\r\n }\r\n setContainerWidth(containerWidth);\r\n setMarqueeWidth(marqueeWidth);\r\n }\r\n }, [autoFill, containerRef, direction]);\r\n // Calculate width and multiplier on mount and on window resize\r\n React.useEffect(() => {\r\n if (!isMounted)\r\n return;\r\n calculateWidth();\r\n if (marqueeRef.current && containerRef.current) {\r\n const resizeObserver = new ResizeObserver(() => calculateWidth());\r\n resizeObserver.observe(containerRef.current);\r\n resizeObserver.observe(marqueeRef.current);\r\n return () => {\r\n if (!resizeObserver)\r\n return;\r\n resizeObserver.disconnect();\r\n };\r\n }\r\n }, [calculateWidth, containerRef, isMounted]);\r\n // Recalculate width when children change\r\n React.useEffect(() => {\r\n calculateWidth();\r\n }, [calculateWidth, children]);\r\n React.useEffect(() => {\r\n setIsMounted(true);\r\n }, []);\r\n // Runs the onMount callback, if it is a function, when Marquee is mounted.\r\n React.useEffect(() => {\r\n if (typeof onMount === \"function\") {\r\n onMount();\r\n }\r\n }, []);\r\n // Animation duration\r\n const duration = React.useMemo(() => {\r\n if (autoFill) {\r\n return (marqueeWidth * multiplier) / speed;\r\n }\r\n else {\r\n return marqueeWidth < containerWidth\r\n ? containerWidth / speed\r\n : marqueeWidth / speed;\r\n }\r\n }, [autoFill, containerWidth, marqueeWidth, multiplier, speed]);\r\n const containerStyle = React.useMemo(() => (Object.assign(Object.assign({}, style), { [\"--pause-on-hover\"]: !play || pauseOnHover ? \"paused\" : \"running\", [\"--pause-on-click\"]: !play || (pauseOnHover && !pauseOnClick) || pauseOnClick\r\n ? \"paused\"\r\n : \"running\", [\"--width\"]: direction === \"up\" || direction === \"down\" ? `100vh` : \"100%\", [\"--transform\"]: direction === \"up\"\r\n ? \"rotate(-90deg)\"\r\n : direction === \"down\"\r\n ? \"rotate(90deg)\"\r\n : \"none\" })), [style, play, pauseOnHover, pauseOnClick, direction]);\r\n const gradientStyle = React.useMemo(() => ({\r\n [\"--gradient-color\"]: gradientColor,\r\n [\"--gradient-width\"]: typeof gradientWidth === \"number\"\r\n ? `${gradientWidth}px`\r\n : gradientWidth,\r\n }), [gradientColor, gradientWidth]);\r\n const marqueeStyle = React.useMemo(() => ({\r\n [\"--play\"]: play ? \"running\" : \"paused\",\r\n [\"--direction\"]: direction === \"left\" ? \"normal\" : \"reverse\",\r\n [\"--duration\"]: `${duration}s`,\r\n [\"--delay\"]: `${delay}s`,\r\n [\"--iteration-count\"]: !!loop ? `${loop}` : \"infinite\",\r\n [\"--min-width\"]: autoFill ? `auto` : \"100%\",\r\n }), [play, direction, duration, delay, loop, autoFill]);\r\n const childStyle = React.useMemo(() => ({\r\n [\"--transform\"]: direction === \"up\"\r\n ? \"rotate(90deg)\"\r\n : direction === \"down\"\r\n ? \"rotate(-90deg)\"\r\n : \"none\",\r\n }), [direction]);\r\n // Render {multiplier} number of children\r\n const multiplyChildren = React.useCallback((multiplier) => {\r\n return [\r\n ...Array(Number.isFinite(multiplier) && multiplier >= 0 ? multiplier : 0),\r\n ].map((_, i) => (React__default['default'].createElement(React.Fragment, { key: i }, React.Children.map(children, (child) => {\r\n return (React__default['default'].createElement(\"div\", { style: childStyle, className: \"rfm-child\" }, child));\r\n }))));\r\n }, [childStyle, children]);\r\n return !isMounted ? null : (React__default['default'].createElement(\"div\", { ref: containerRef, style: containerStyle, className: \"rfm-marquee-container \" + className },\r\n gradient && React__default['default'].createElement(\"div\", { style: gradientStyle, className: \"rfm-overlay\" }),\r\n React__default['default'].createElement(\"div\", { className: \"rfm-marquee\", style: marqueeStyle, onAnimationIteration: onCycleComplete, onAnimationEnd: onFinish },\r\n React__default['default'].createElement(\"div\", { className: \"rfm-initial-child-container\", ref: marqueeRef }, React.Children.map(children, (child) => {\r\n return (React__default['default'].createElement(\"div\", { style: childStyle, className: \"rfm-child\" }, child));\r\n })),\r\n multiplyChildren(multiplier - 1)),\r\n React__default['default'].createElement(\"div\", { className: \"rfm-marquee\", style: marqueeStyle }, multiplyChildren(multiplier))));\r\n});\n\nexports.default = Marquee;\n//# sourceMappingURL=index.js.map\n","import { type LyricLine } from \"~/types\";\n\nexport interface InterpolatedProgressMsParams {\n progressMs: number;\n interpolationMs: number;\n}\n\nexport const useInterpolatedProgressMs = ({\n interpolationMs,\n progressMs,\n}: InterpolatedProgressMsParams): number => {\n const [interpolatedProgressMs, setInterpolatedProgressMs] =\n useState(0);\n useEffect(() => {\n const roundedProgressMs =\n Math.round(progressMs / interpolationMs) * interpolationMs;\n setInterpolatedProgressMs(roundedProgressMs);\n const interval = setInterval(() => {\n setInterpolatedProgressMs(progressMs => progressMs + interpolationMs);\n }, interpolationMs);\n return () => {\n clearInterval(interval);\n };\n }, [progressMs, interpolationMs]);\n return interpolatedProgressMs;\n};\n\nexport interface ProgressLyricsIndexMappingParams {\n lyrics: Pick[] | null | undefined;\n durationMs: number;\n interpolationMs: number;\n}\n\nexport const useProgressLyricsIndexMapping = ({\n durationMs,\n interpolationMs,\n lyrics,\n}: ProgressLyricsIndexMappingParams): Record => {\n const [mapping, setMapping] = useState>({});\n useEffect(() => {\n if (lyrics) {\n requestIdleCallback(() => {\n const mapping: Record = {};\n lyrics.forEach((lyric, index) => {\n const roundedStartTimeMs =\n Math.round(lyric.start_time_ms / interpolationMs) * interpolationMs;\n mapping[roundedStartTimeMs] = index;\n });\n for (\n let incrementMs = 0;\n incrementMs <= durationMs;\n incrementMs += interpolationMs\n ) {\n if (!(incrementMs in mapping)) {\n const coalescedIndex = mapping[incrementMs - interpolationMs];\n mapping[incrementMs] = coalescedIndex ?? null;\n }\n }\n setMapping(mapping);\n });\n } else {\n setMapping({});\n }\n }, [lyrics, durationMs, interpolationMs]);\n return mapping;\n};\n","import { type TooltipProps } from \"@mantine/core\";\nimport { useHover } from \"@mantine/hooks\";\nimport { type ReactNode } from \"react\";\n\nimport {\n useInterpolatedProgressMs,\n useProgressLyricsIndexMapping,\n} from \"~/helpers/currentlyPlaying\";\nimport { type LyricLine, type RSpotifyTrack } from \"~/types\";\n\nimport classes from \"./CurrentlyPlayingLyricsTooltip.module.css\";\n\nexport interface CurrentlyPlayingLyricsTooltipProps\n extends Omit {\n track: RSpotifyTrack;\n durationMs: number;\n progressMs: number | undefined;\n children: (currentLyricLine: LyricLine | null | undefined) => ReactNode;\n}\n\nconst CurrentlyPlayingLyricsTooltip: FC = ({\n children,\n disabled,\n durationMs,\n progressMs = 0,\n track,\n ...otherProps\n}) => {\n const interpolationMs = 250;\n const transitionDuration = 200;\n const { hovered, ref } = useHover();\n\n // == Progress\n const interpolatedProgressMs = useInterpolatedProgressMs({\n progressMs,\n interpolationMs,\n });\n\n // == Load lyrics\n const lyricsParams = useMemo(\n () => ({ spotify_track_id: track.id }),\n [track.id],\n );\n const { data } = useRouteSWR<{ lyrics: LyricLine[] }>(\n routes.spotifyTracks.lyrics,\n {\n params: lyricsParams,\n descriptor: \"load lyrics\",\n failSilently: true,\n },\n );\n const { lyrics } = data ?? {};\n\n // == Current lyric\n const progressLyricsIndexMapping = useProgressLyricsIndexMapping({\n lyrics,\n durationMs,\n interpolationMs,\n });\n const currentLyric = useMemo(() => {\n if (lyrics) {\n const currentLyricIndex =\n progressLyricsIndexMapping[interpolatedProgressMs];\n if (typeof currentLyricIndex === \"number\") {\n return lyrics[currentLyricIndex];\n }\n return null;\n }\n }, [lyrics, progressLyricsIndexMapping, interpolatedProgressMs]);\n\n const hasWords = !!currentLyric?.words;\n const label = useMemo(\n () => (hovered ? \"Click to join listening session!\" : currentLyric?.words),\n [currentLyric, hovered],\n );\n const prevLabel = usePrevious(label);\n return (\n \n {children(currentLyric)}\n \n );\n};\n\nexport default CurrentlyPlayingLyricsTooltip;\n","import 'client-only';\nimport ReactExports, { useRef, useMemo, useCallback, useDebugValue } from 'react';\nimport { useSyncExternalStore } from 'use-sync-external-store/shim/index.js';\nimport { OBJECT, SWRConfig, defaultConfig, withArgs, SWRGlobalState, serialize, createCacheHelper, isUndefined, getTimestamp, UNDEFINED, isFunction, revalidateEvents, internalMutate, useIsomorphicLayoutEffect, subscribeCallback, IS_SERVER, rAF, IS_REACT_LEGACY, mergeObjects, withMiddleware } from 'swr/_internal';\n\n/// \nconst use = ReactExports.use || ((promise)=>{\n if (promise.status === 'pending') {\n throw promise;\n } else if (promise.status === 'fulfilled') {\n return promise.value;\n } else if (promise.status === 'rejected') {\n throw promise.reason;\n } else {\n promise.status = 'pending';\n promise.then((v)=>{\n promise.status = 'fulfilled';\n promise.value = v;\n }, (e)=>{\n promise.status = 'rejected';\n promise.reason = e;\n });\n throw promise;\n }\n});\nconst WITH_DEDUPE = {\n dedupe: true\n};\nconst useSWRHandler = (_key, fetcher, config)=>{\n const { cache, compare, suspense, fallbackData, revalidateOnMount, revalidateIfStale, refreshInterval, refreshWhenHidden, refreshWhenOffline, keepPreviousData } = config;\n const [EVENT_REVALIDATORS, MUTATION, FETCH, PRELOAD] = SWRGlobalState.get(cache);\n // `key` is the identifier of the SWR internal state,\n // `fnArg` is the argument/arguments parsed from the key, which will be passed\n // to the fetcher.\n // All of them are derived from `_key`.\n const [key, fnArg] = serialize(_key);\n // If it's the initial render of this hook.\n const initialMountedRef = useRef(false);\n // If the hook is unmounted already. This will be used to prevent some effects\n // to be called after unmounting.\n const unmountedRef = useRef(false);\n // Refs to keep the key and config.\n const keyRef = useRef(key);\n const fetcherRef = useRef(fetcher);\n const configRef = useRef(config);\n const getConfig = ()=>configRef.current;\n const isActive = ()=>getConfig().isVisible() && getConfig().isOnline();\n const [getCache, setCache, subscribeCache, getInitialCache] = createCacheHelper(cache, key);\n const stateDependencies = useRef({}).current;\n const fallback = isUndefined(fallbackData) ? config.fallback[key] : fallbackData;\n const isEqual = (prev, current)=>{\n for(const _ in stateDependencies){\n const t = _;\n if (t === 'data') {\n if (!compare(prev[t], current[t])) {\n if (!isUndefined(prev[t])) {\n return false;\n }\n if (!compare(returnedData, current[t])) {\n return false;\n }\n }\n } else {\n if (current[t] !== prev[t]) {\n return false;\n }\n }\n }\n return true;\n };\n const getSnapshot = useMemo(()=>{\n const shouldStartRequest = (()=>{\n if (!key) return false;\n if (!fetcher) return false;\n // If `revalidateOnMount` is set, we take the value directly.\n if (!isUndefined(revalidateOnMount)) return revalidateOnMount;\n // If it's paused, we skip revalidation.\n if (getConfig().isPaused()) return false;\n if (suspense) return false;\n if (!isUndefined(revalidateIfStale)) return revalidateIfStale;\n return true;\n })();\n // Get the cache and merge it with expected states.\n const getSelectedCache = (state)=>{\n // We only select the needed fields from the state.\n const snapshot = mergeObjects(state);\n delete snapshot._k;\n if (!shouldStartRequest) {\n return snapshot;\n }\n return {\n isValidating: true,\n isLoading: true,\n ...snapshot\n };\n };\n const cachedData = getCache();\n const initialData = getInitialCache();\n const clientSnapshot = getSelectedCache(cachedData);\n const serverSnapshot = cachedData === initialData ? clientSnapshot : getSelectedCache(initialData);\n // To make sure that we are returning the same object reference to avoid\n // unnecessary re-renders, we keep the previous snapshot and use deep\n // comparison to check if we need to return a new one.\n let memorizedSnapshot = clientSnapshot;\n return [\n ()=>{\n const newSnapshot = getSelectedCache(getCache());\n const compareResult = isEqual(newSnapshot, memorizedSnapshot);\n if (compareResult) {\n // Mentally, we should always return the `memorizedSnapshot` here\n // as there's no change between the new and old snapshots.\n // However, since the `isEqual` function only compares selected fields,\n // the values of the unselected fields might be changed. That's\n // simply because we didn't track them.\n // To support the case in https://github.com/vercel/swr/pull/2576,\n // we need to update these fields in the `memorizedSnapshot` too\n // with direct mutations to ensure the snapshot is always up-to-date\n // even for the unselected fields, but only trigger re-renders when\n // the selected fields are changed.\n memorizedSnapshot.data = newSnapshot.data;\n memorizedSnapshot.isLoading = newSnapshot.isLoading;\n memorizedSnapshot.isValidating = newSnapshot.isValidating;\n memorizedSnapshot.error = newSnapshot.error;\n return memorizedSnapshot;\n } else {\n memorizedSnapshot = newSnapshot;\n return newSnapshot;\n }\n },\n ()=>serverSnapshot\n ];\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, [\n cache,\n key\n ]);\n // Get the current state that SWR should return.\n const cached = useSyncExternalStore(useCallback((callback)=>subscribeCache(key, (current, prev)=>{\n if (!isEqual(prev, current)) callback();\n }), // eslint-disable-next-line react-hooks/exhaustive-deps\n [\n cache,\n key\n ]), getSnapshot[0], getSnapshot[1]);\n const isInitialMount = !initialMountedRef.current;\n const hasRevalidator = EVENT_REVALIDATORS[key] && EVENT_REVALIDATORS[key].length > 0;\n const cachedData = cached.data;\n const data = isUndefined(cachedData) ? fallback : cachedData;\n const error = cached.error;\n // Use a ref to store previously returned data. Use the initial data as its initial value.\n const laggyDataRef = useRef(data);\n const returnedData = keepPreviousData ? isUndefined(cachedData) ? laggyDataRef.current : cachedData : data;\n // - Suspense mode and there's stale data for the initial render.\n // - Not suspense mode and there is no fallback data and `revalidateIfStale` is enabled.\n // - `revalidateIfStale` is enabled but `data` is not defined.\n const shouldDoInitialRevalidation = (()=>{\n // if a key already has revalidators and also has error, we should not trigger revalidation\n if (hasRevalidator && !isUndefined(error)) return false;\n // If `revalidateOnMount` is set, we take the value directly.\n if (isInitialMount && !isUndefined(revalidateOnMount)) return revalidateOnMount;\n // If it's paused, we skip revalidation.\n if (getConfig().isPaused()) return false;\n // Under suspense mode, it will always fetch on render if there is no\n // stale data so no need to revalidate immediately mount it again.\n // If data exists, only revalidate if `revalidateIfStale` is true.\n if (suspense) return isUndefined(data) ? false : revalidateIfStale;\n // If there is no stale data, we need to revalidate when mount;\n // If `revalidateIfStale` is set to true, we will always revalidate.\n return isUndefined(data) || revalidateIfStale;\n })();\n // Resolve the default validating state:\n // If it's able to validate, and it should revalidate when mount, this will be true.\n const defaultValidatingState = !!(key && fetcher && isInitialMount && shouldDoInitialRevalidation);\n const isValidating = isUndefined(cached.isValidating) ? defaultValidatingState : cached.isValidating;\n const isLoading = isUndefined(cached.isLoading) ? defaultValidatingState : cached.isLoading;\n // The revalidation function is a carefully crafted wrapper of the original\n // `fetcher`, to correctly handle the many edge cases.\n const revalidate = useCallback(async (revalidateOpts)=>{\n const currentFetcher = fetcherRef.current;\n if (!key || !currentFetcher || unmountedRef.current || getConfig().isPaused()) {\n return false;\n }\n let newData;\n let startAt;\n let loading = true;\n const opts = revalidateOpts || {};\n // If there is no ongoing concurrent request, or `dedupe` is not set, a\n // new request should be initiated.\n const shouldStartNewRequest = !FETCH[key] || !opts.dedupe;\n /*\n For React 17\n Do unmount check for calls:\n If key has changed during the revalidation, or the component has been\n unmounted, old dispatch and old event callbacks should not take any\n effect\n\n For React 18\n only check if key has changed\n https://github.com/reactwg/react-18/discussions/82\n */ const callbackSafeguard = ()=>{\n if (IS_REACT_LEGACY) {\n return !unmountedRef.current && key === keyRef.current && initialMountedRef.current;\n }\n return key === keyRef.current;\n };\n // The final state object when the request finishes.\n const finalState = {\n isValidating: false,\n isLoading: false\n };\n const finishRequestAndUpdateState = ()=>{\n setCache(finalState);\n };\n const cleanupState = ()=>{\n // Check if it's still the same request before deleting it.\n const requestInfo = FETCH[key];\n if (requestInfo && requestInfo[1] === startAt) {\n delete FETCH[key];\n }\n };\n // Start fetching. Change the `isValidating` state, update the cache.\n const initialState = {\n isValidating: true\n };\n // It is in the `isLoading` state, if and only if there is no cached data.\n // This bypasses fallback data and laggy data.\n if (isUndefined(getCache().data)) {\n initialState.isLoading = true;\n }\n try {\n if (shouldStartNewRequest) {\n setCache(initialState);\n // If no cache is being rendered currently (it shows a blank page),\n // we trigger the loading slow event.\n if (config.loadingTimeout && isUndefined(getCache().data)) {\n setTimeout(()=>{\n if (loading && callbackSafeguard()) {\n getConfig().onLoadingSlow(key, config);\n }\n }, config.loadingTimeout);\n }\n // Start the request and save the timestamp.\n // Key must be truthy if entering here.\n FETCH[key] = [\n currentFetcher(fnArg),\n getTimestamp()\n ];\n }\n [newData, startAt] = FETCH[key];\n newData = await newData;\n if (shouldStartNewRequest) {\n // If the request isn't interrupted, clean it up after the\n // deduplication interval.\n setTimeout(cleanupState, config.dedupingInterval);\n }\n // If there're other ongoing request(s), started after the current one,\n // we need to ignore the current one to avoid possible race conditions:\n // req1------------------>res1 (current one)\n // req2---------------->res2\n // the request that fired later will always be kept.\n // The timestamp maybe be `undefined` or a number\n if (!FETCH[key] || FETCH[key][1] !== startAt) {\n if (shouldStartNewRequest) {\n if (callbackSafeguard()) {\n getConfig().onDiscarded(key);\n }\n }\n return false;\n }\n // Clear error.\n finalState.error = UNDEFINED;\n // If there're other mutations(s), that overlapped with the current revalidation:\n // case 1:\n // req------------------>res\n // mutate------>end\n // case 2:\n // req------------>res\n // mutate------>end\n // case 3:\n // req------------------>res\n // mutate-------...---------->\n // we have to ignore the revalidation result (res) because it's no longer fresh.\n // meanwhile, a new revalidation should be triggered when the mutation ends.\n const mutationInfo = MUTATION[key];\n if (!isUndefined(mutationInfo) && // case 1\n (startAt <= mutationInfo[0] || // case 2\n startAt <= mutationInfo[1] || // case 3\n mutationInfo[1] === 0)) {\n finishRequestAndUpdateState();\n if (shouldStartNewRequest) {\n if (callbackSafeguard()) {\n getConfig().onDiscarded(key);\n }\n }\n return false;\n }\n // Deep compare with the latest state to avoid extra re-renders.\n // For local state, compare and assign.\n const cacheData = getCache().data;\n // Since the compare fn could be custom fn\n // cacheData might be different from newData even when compare fn returns True\n finalState.data = compare(cacheData, newData) ? cacheData : newData;\n // Trigger the successful callback if it's the original request.\n if (shouldStartNewRequest) {\n if (callbackSafeguard()) {\n getConfig().onSuccess(newData, key, config);\n }\n }\n } catch (err) {\n cleanupState();\n const currentConfig = getConfig();\n const { shouldRetryOnError } = currentConfig;\n // Not paused, we continue handling the error. Otherwise, discard it.\n if (!currentConfig.isPaused()) {\n // Get a new error, don't use deep comparison for errors.\n finalState.error = err;\n // Error event and retry logic. Only for the actual request, not\n // deduped ones.\n if (shouldStartNewRequest && callbackSafeguard()) {\n currentConfig.onError(err, key, currentConfig);\n if (shouldRetryOnError === true || isFunction(shouldRetryOnError) && shouldRetryOnError(err)) {\n if (!getConfig().revalidateOnFocus || !getConfig().revalidateOnReconnect || isActive()) {\n // If it's inactive, stop. It will auto-revalidate when\n // refocusing or reconnecting.\n // When retrying, deduplication is always enabled.\n currentConfig.onErrorRetry(err, key, currentConfig, (_opts)=>{\n const revalidators = EVENT_REVALIDATORS[key];\n if (revalidators && revalidators[0]) {\n revalidators[0](revalidateEvents.ERROR_REVALIDATE_EVENT, _opts);\n }\n }, {\n retryCount: (opts.retryCount || 0) + 1,\n dedupe: true\n });\n }\n }\n }\n }\n }\n // Mark loading as stopped.\n loading = false;\n // Update the current hook's state.\n finishRequestAndUpdateState();\n return true;\n }, // `setState` is immutable, and `eventsCallback`, `fnArg`, and\n // `keyValidating` are depending on `key`, so we can exclude them from\n // the deps array.\n //\n // FIXME:\n // `fn` and `config` might be changed during the lifecycle,\n // but they might be changed every render like this.\n // `useSWR('key', () => fetch('/api/'), { suspense: true })`\n // So we omit the values from the deps array\n // even though it might cause unexpected behaviors.\n // eslint-disable-next-line react-hooks/exhaustive-deps\n [\n key,\n cache\n ]);\n // Similar to the global mutate but bound to the current cache and key.\n // `cache` isn't allowed to change during the lifecycle.\n const boundMutate = useCallback(// Use callback to make sure `keyRef.current` returns latest result every time\n (...args)=>{\n return internalMutate(cache, keyRef.current, ...args);\n }, // eslint-disable-next-line react-hooks/exhaustive-deps\n []);\n // The logic for updating refs.\n useIsomorphicLayoutEffect(()=>{\n fetcherRef.current = fetcher;\n configRef.current = config;\n // Handle laggy data updates. If there's cached data of the current key,\n // it'll be the correct reference.\n if (!isUndefined(cachedData)) {\n laggyDataRef.current = cachedData;\n }\n });\n // After mounted or key changed.\n useIsomorphicLayoutEffect(()=>{\n if (!key) return;\n const softRevalidate = revalidate.bind(UNDEFINED, WITH_DEDUPE);\n // Expose revalidators to global event listeners. So we can trigger\n // revalidation from the outside.\n let nextFocusRevalidatedAt = 0;\n const onRevalidate = (type, opts = {})=>{\n if (type == revalidateEvents.FOCUS_EVENT) {\n const now = Date.now();\n if (getConfig().revalidateOnFocus && now > nextFocusRevalidatedAt && isActive()) {\n nextFocusRevalidatedAt = now + getConfig().focusThrottleInterval;\n softRevalidate();\n }\n } else if (type == revalidateEvents.RECONNECT_EVENT) {\n if (getConfig().revalidateOnReconnect && isActive()) {\n softRevalidate();\n }\n } else if (type == revalidateEvents.MUTATE_EVENT) {\n return revalidate();\n } else if (type == revalidateEvents.ERROR_REVALIDATE_EVENT) {\n return revalidate(opts);\n }\n return;\n };\n const unsubEvents = subscribeCallback(key, EVENT_REVALIDATORS, onRevalidate);\n // Mark the component as mounted and update corresponding refs.\n unmountedRef.current = false;\n keyRef.current = key;\n initialMountedRef.current = true;\n // Keep the original key in the cache.\n setCache({\n _k: fnArg\n });\n // Trigger a revalidation\n if (shouldDoInitialRevalidation) {\n if (isUndefined(data) || IS_SERVER) {\n // Revalidate immediately.\n softRevalidate();\n } else {\n // Delay the revalidate if we have data to return so we won't block\n // rendering.\n rAF(softRevalidate);\n }\n }\n return ()=>{\n // Mark it as unmounted.\n unmountedRef.current = true;\n unsubEvents();\n };\n }, [\n key\n ]);\n // Polling\n useIsomorphicLayoutEffect(()=>{\n let timer;\n function next() {\n // Use the passed interval\n // ...or invoke the function with the updated data to get the interval\n const interval = isFunction(refreshInterval) ? refreshInterval(getCache().data) : refreshInterval;\n // We only start the next interval if `refreshInterval` is not 0, and:\n // - `force` is true, which is the start of polling\n // - or `timer` is not 0, which means the effect wasn't canceled\n if (interval && timer !== -1) {\n timer = setTimeout(execute, interval);\n }\n }\n function execute() {\n // Check if it's OK to execute:\n // Only revalidate when the page is visible, online, and not errored.\n if (!getCache().error && (refreshWhenHidden || getConfig().isVisible()) && (refreshWhenOffline || getConfig().isOnline())) {\n revalidate(WITH_DEDUPE).then(next);\n } else {\n // Schedule the next interval to check again.\n next();\n }\n }\n next();\n return ()=>{\n if (timer) {\n clearTimeout(timer);\n timer = -1;\n }\n };\n }, [\n refreshInterval,\n refreshWhenHidden,\n refreshWhenOffline,\n key\n ]);\n // Display debug info in React DevTools.\n useDebugValue(returnedData);\n // In Suspense mode, we can't return the empty `data` state.\n // If there is an `error`, the `error` needs to be thrown to the error boundary.\n // If there is no `error`, the `revalidation` promise needs to be thrown to\n // the suspense boundary.\n if (suspense && isUndefined(data) && key) {\n // SWR should throw when trying to use Suspense on the server with React 18,\n // without providing any initial data. See:\n // https://github.com/vercel/swr/issues/1832\n if (!IS_REACT_LEGACY && IS_SERVER) {\n throw new Error('Fallback data is required when using suspense in SSR.');\n }\n // Always update fetcher and config refs even with the Suspense mode.\n fetcherRef.current = fetcher;\n configRef.current = config;\n unmountedRef.current = false;\n const req = PRELOAD[key];\n if (!isUndefined(req)) {\n const promise = boundMutate(req);\n use(promise);\n }\n if (isUndefined(error)) {\n const promise = revalidate(WITH_DEDUPE);\n if (!isUndefined(returnedData)) {\n promise.status = 'fulfilled';\n promise.value = true;\n }\n use(promise);\n } else {\n throw error;\n }\n }\n return {\n mutate: boundMutate,\n get data () {\n stateDependencies.data = true;\n return returnedData;\n },\n get error () {\n stateDependencies.error = true;\n return error;\n },\n get isValidating () {\n stateDependencies.isValidating = true;\n return isValidating;\n },\n get isLoading () {\n stateDependencies.isLoading = true;\n return isLoading;\n }\n };\n};\nOBJECT.defineProperty(SWRConfig, 'defaultValue', {\n value: defaultConfig\n});\n/**\n * A hook to fetch data.\n *\n * @link https://swr.vercel.app\n * @example\n * ```jsx\n * import useSWR from 'swr'\n * function Profile() {\n * const { data, error, isLoading } = useSWR('/api/user', fetcher)\n * if (error) return
failed to load
\n * if (isLoading) return
loading...
\n * return
hello {data.name}!
\n * }\n * ```\n */ const useSWR = withArgs(useSWRHandler);\n\nconst subscriptionStorage = new WeakMap();\nconst SUBSCRIPTION_PREFIX = '$sub$';\nconst subscription = (useSWRNext)=>(_key, subscribe, config)=>{\n const [key, args] = serialize(_key);\n // Prefix the key to avoid conflicts with other SWR resources.\n const subscriptionKey = key ? SUBSCRIPTION_PREFIX + key : undefined;\n const swr = useSWRNext(subscriptionKey, null, config);\n const { cache } = config;\n // Ensure that the subscription state is scoped by the cache boundary, so\n // you can have multiple SWR zones with subscriptions having the same key.\n if (!subscriptionStorage.has(cache)) {\n subscriptionStorage.set(cache, [\n new Map(),\n new Map()\n ]);\n }\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n const [subscriptions, disposers] = subscriptionStorage.get(cache);\n useIsomorphicLayoutEffect(()=>{\n if (!subscriptionKey) return;\n const [, set] = createCacheHelper(cache, subscriptionKey);\n const refCount = subscriptions.get(subscriptionKey) || 0;\n const next = (error, data)=>{\n if (error !== null && typeof error !== 'undefined') {\n set({\n error\n });\n } else {\n set({\n error: undefined\n });\n swr.mutate(data, false);\n }\n };\n // Increment the ref count.\n subscriptions.set(subscriptionKey, refCount + 1);\n if (!refCount) {\n const dispose = subscribe(args, {\n next\n });\n if (typeof dispose !== 'function') {\n throw new Error('The `subscribe` function must return a function to unsubscribe.');\n }\n disposers.set(subscriptionKey, dispose);\n }\n return ()=>{\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n const count = subscriptions.get(subscriptionKey) - 1;\n subscriptions.set(subscriptionKey, count);\n // Dispose if it's the last one.\n if (!count) {\n const dispose = disposers.get(subscriptionKey);\n dispose == null ? void 0 : dispose();\n }\n };\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, [\n subscriptionKey\n ]);\n return {\n get data () {\n return swr.data;\n },\n get error () {\n return swr.error;\n }\n };\n };\n/**\n * A hook to subscribe a SWR resource to an external data source for continuous updates.\n * @experimental This API is experimental and might change in the future.\n * @example\n * ```jsx\n * import useSWRSubscription from 'swr/subscription'\n *\n * const { data, error } = useSWRSubscription(key, (key, { next }) => {\n * const unsubscribe = dataSource.subscribe(key, (err, data) => {\n * next(err, data)\n * })\n * return unsubscribe\n * })\n * ```\n */ const useSWRSubscription = withMiddleware(useSWR, subscription);\n\nexport { useSWRSubscription as default, subscription };\n","import { useIsFirstRender, useNetwork } from \"@mantine/hooks\";\nimport { type Subscription } from \"@rails/actioncable\";\nimport { type SWRConfiguration } from \"swr\";\nimport useSWRSubscription, {\n type SWRSubscriptionResponse,\n} from \"swr/subscription\";\n\nimport { useCable } from \".\";\n\nexport interface UseSubscriptionOptions extends SWRConfiguration {\n descriptor: string;\n failSilently?: boolean;\n params?: Record | null;\n onConnected?: () => void;\n onData?: (data: Data) => void;\n onError?: (error: Error) => void;\n}\n\nexport interface SubscriptionResponse\n extends SWRSubscriptionResponse {\n subscription: Subscription | undefined;\n}\n\nexport const useSubscription = <\n Data extends Record & { error?: never },\n>(\n channel: string,\n options?: UseSubscriptionOptions,\n): SubscriptionResponse => {\n const cable = useCable();\n const {\n params,\n descriptor,\n failSilently,\n onConnected,\n onData,\n onError,\n ...swrConfiguration\n } = options ?? {};\n\n // == Key\n const computeKey = useCallback(\n (\n channel: string,\n params: UseSubscriptionOptions[\"params\"],\n ): { channel: string; [param: string]: any } | null =>\n params === null ? null : { channel, ...params },\n [],\n );\n const [key, setKey] = useState(() => computeKey(channel, params));\n const isFirstRender = useIsFirstRender();\n useShallowEffect(() => {\n if (!isFirstRender) {\n setKey(computeKey(channel, params));\n }\n }, [channel, params]); // eslint-disable-line react-hooks/exhaustive-deps\n\n // == SWR\n const { online } = useNetwork();\n const { data: swrData, error } = useSWRSubscription<\n { subscription?: Subscription; data?: Data },\n Error,\n typeof key\n >(\n cable ? key : null,\n (params, { next }) => {\n invariant(cable);\n const subscription = cable.subscriptions.create(params, {\n connected: () => {\n next(undefined, { subscription });\n },\n rejected: () => {\n const error = new Error(\n `failed to ${descriptor}: connection rejected`,\n );\n console.error(error);\n next(error);\n },\n received: (data: Data | { error?: string }) => {\n if (\"error\" in data) {\n const error = new Error(data.error);\n console.error(`failed to ${descriptor}`, error);\n if (!failSilently) {\n toast.error(`failed to ${descriptor}`, {\n description: data.error,\n });\n }\n next(error, { subscription });\n } else {\n const nonErrorData = data as Data;\n next(undefined, { subscription, data: nonErrorData });\n }\n },\n });\n return () => {\n next(undefined, {});\n subscription.unsubscribe();\n };\n },\n {\n isOnline: () => online,\n ...swrConfiguration,\n },\n );\n const { subscription, data } = swrData ?? {};\n useDidUpdate(() => {\n if (subscription) {\n onConnected?.();\n }\n }, [subscription]); // eslint-disable-line react-hooks/exhaustive-deps\n useEffect(() => {\n if (data) {\n onData?.(data);\n }\n }, [data]); // eslint-disable-line react-hooks/exhaustive-deps\n useEffect(() => {\n if (error) {\n onError?.(error);\n }\n }, [error]); // eslint-disable-line react-hooks/exhaustive-deps\n return { subscription, data, error };\n};\n","import { Image, Text } from \"@mantine/core\";\nimport { useNetwork } from \"@mantine/hooks\";\nimport { type ReactNode, useLayoutEffect } from \"react\";\nimport Marquee from \"react-fast-marquee\";\n\nimport PlayIcon from \"~icons/heroicons/play-circle-20-solid\";\n\nimport {\n type CurrentlyPlaying,\n type CurrentlyPlayingMetadata,\n type RSpotifyTrack,\n} from \"~/types\";\n\nimport CurrentlyPlayingLyricsTooltip from \"./CurrentlyPlayingLyricsTooltip\";\n\nimport classes from \"./CurrentlyPlayingIsland.module.css\";\n\nexport interface CurrentlyPlayingIslandProps\n extends BoxProps,\n Omit, \"style\" | \"children\"> {}\n\nconst CurrentlyPlayingIsland: FC = ({\n ...otherProps\n}) => {\n // == Load currently playing track\n const { data, mutate } = useRouteSWR<{\n currentlyPlaying: CurrentlyPlaying | null;\n }>(routes.currentlyPlayings.show, {\n descriptor: \"load currently playing track\",\n });\n const { track } = data?.currentlyPlaying ?? {};\n\n // == Mounting & transitioning\n const { online } = useNetwork();\n const [mounted, setMounted] = useState(() => !!track && online);\n const [transitioning, setTransitioning] = useState(false);\n useDidUpdate(() => {\n setTransitioning(true);\n }, [mounted]); // eslint-disable-line react-hooks/exhaustive-deps\n useDidUpdate(() => {\n if (!transitioning) {\n setMounted(!!track && online);\n }\n }, [track, online, transitioning]);\n\n // == Subscribe to track progression\n const { data: subscriptionData } = useSubscription<{\n currentlyPlaying: CurrentlyPlayingMetadata | null;\n }>(\"CurrentlyPlayingChannel\", {\n descriptor: \"subscribe to currently playing feed\",\n failSilently: true,\n onData: ({ currentlyPlaying }) => {\n if (currentlyPlaying?.track_id !== track?.id) {\n setMounted(false);\n void mutate();\n }\n },\n });\n\n // == Calculate progress\n const progressMs = useMemo(() => {\n if (subscriptionData?.currentlyPlaying) {\n const { currentlyPlaying } = subscriptionData;\n const timestamp = DateTime.fromISO(currentlyPlaying.timestamp);\n const elappsedMs = DateTime.now().diff(timestamp).as(\"milliseconds\");\n return currentlyPlaying.progress_ms + elappsedMs - 1200;\n }\n }, [subscriptionData]);\n\n return (\n {\n setTransitioning(false);\n }}\n onExited={() => {\n setTransitioning(false);\n }}\n {...{ mounted }}\n >\n {style => (\n \n {track => (\n \n )}\n \n )}\n \n );\n};\n\nexport default CurrentlyPlayingIsland;\n\ninterface TrackCoalescerProps {\n track?: RSpotifyTrack | null;\n children: (track: RSpotifyTrack) => ReactNode;\n}\n\nconst TrackCoalescer: FC = ({\n children,\n track: trackProp,\n}) => {\n const [track, setTrack] = useState(\n trackProp,\n );\n useEffect(() => {\n if (trackProp) {\n setTrack(trackProp);\n }\n }, [trackProp]);\n return <>{!!track && children(track)};\n};\n\ntype IslandContentProps = BoxProps & {\n track: RSpotifyTrack;\n progressMs?: number;\n transitioning: boolean;\n};\n\nconst IslandContent: FC = ({\n progressMs,\n track,\n transitioning,\n ...otherProps\n}) => {\n const { album, artists } = track;\n const artistNames = useMemo(\n () => artists.map(({ name }) => name).join(\", \") || \"(missing artists)\",\n [artists],\n );\n\n // == Join jam session\n const { trigger: joinJam, mutating: joiningJam } = useRouteMutation<{\n joinUrl: string;\n }>(routes.spotifyJamSessions.join, {\n descriptor: \"join Spotify jam session\",\n onSuccess: ({ joinUrl }) => {\n open(joinUrl, \"_blank\");\n },\n });\n\n return (\n \n {currentLyricLine => {\n const { words: currentWords } = currentLyricLine ?? {};\n const hasLyrics = !!currentWords;\n return (\n \n \n ({ color: white })}\n >\n \n \n \n }\n variant=\"default\"\n className={classes.badge}\n styles={{\n section: {\n margin: 0,\n },\n label: {\n maxWidth: rem(200),\n textTransform: \"none\",\n },\n }}\n mod={{\n \"with-lyrics\": hasLyrics,\n }}\n onClick={() => {\n void joinJam();\n }}\n {...otherProps}\n >\n \n {track.name}\n \n \n {artistNames}\n \n \n \n );\n }}\n \n );\n};\n\ntype MarqueeTextProps = TextProps & ComponentPropsWithoutRef<\"p\">;\n\nconst MarqueeText: FC = ({ children, ...otherProps }) => {\n const textRef = useRef(null);\n\n // == Play state\n const [play, setPlay] = useState(false);\n useLayoutEffect(() => {\n const el = textRef.current;\n if (el) {\n if (el.clientWidth > 200) {\n setPlay(true);\n }\n }\n }, []);\n\n return (\n \n \n {children}\n \n \n );\n};\n","import { AppShell, type AppShellHeaderProps, Burger } from \"@mantine/core\";\nimport { Image } from \"@mantine/core\";\n\nimport logoSrc from \"~/assets/images/logo-circle.png\";\n\nimport { useSidebarControls } from \"~/helpers/sidebar\";\n\nimport AppMenu from \"./AppMenu\";\nimport CurrentlyPlayingIsland from \"./CurrentlyPlayingIsland\";\n\nimport classes from \"./AppHeader.module.css\";\n\nexport interface AppHeaderProps extends Omit {\n logoHref?: string;\n}\n\nconst AppHeader = forwardRef(\n ({ className, logoHref, ...otherProps }, ref) => {\n const isStandalone = useIsStandalone();\n const sidebarControls = useSidebarControls();\n return (\n \n \n \n {sidebarControls && (\n \n )}\n }\n className={classes.logoButton}\n >\n it's kai\n \n \n \n {!isStandalone && }\n \n \n );\n },\n);\n\nexport default AppHeader;\n","export default \"__VITE_ASSET__ln9QzdsH__\"","import { HoverCard, Image, Text } from \"@mantine/core\";\n\nimport CodeIcon from \"~icons/heroicons/code-bracket-20-solid\";\n\nimport heartSrc from \"~/assets/images/heart.png\";\n\nimport classes from \"./Attribution.module.css\";\n\nexport interface AttributionProps\n extends BoxProps,\n Omit, \"style\" | \"children\"> {}\n\nconst Attribution: FC = ({ ...otherProps }) => (\n \n \n \n \n made by{\" \"}\n \n kai\n {\" \"}\n with\n \n \n \n \n ({ borderRadius: radius.md })}>\n \n \n did you know this website is{\" \"}\n \n open source\n \n ?\n \n }\n radius=\"xl\"\n px={8}\n py={4}\n >\n take me to the code!\n \n \n \n \n);\n\nexport default Attribution;\n","import {\n type SidebarControls,\n SidebarControlsContext,\n} from \"~/helpers/sidebar\";\n\nexport interface SidebarControlsProviderProps {\n controls: SidebarControls | null;\n}\n\nexport const SidebarControlsProvider: FC<\n PropsWithChildren\n> = ({ controls, children }) => (\n \n {children}\n \n);\n","import {\n AppShell,\n type AppShellProps,\n Breadcrumbs,\n type ContainerProps,\n type MantineSize,\n} from \"@mantine/core\";\nimport { useDisclosure } from \"@mantine/hooks\";\n\nimport {\n type DynamicProp,\n resolveDynamicProp,\n useResolveDynamicProp,\n} from \"~/helpers/layout\";\nimport { useClearAppBadge } from \"~/helpers/pwa\";\nimport { type SidebarControls } from \"~/helpers/sidebar\";\n\nimport AppHeader, { type AppHeaderProps } from \"./AppHeader\";\nimport AppMeta, { type AppMetaProps } from \"./AppMeta\";\nimport Attribution from \"./Attribution\";\nimport PageContainer from \"./PageContainer\";\nimport PageLayout from \"./PageLayout\";\nimport { SidebarControlsProvider } from \"./SidebarControlsProvider\";\n\nimport classes from \"./AppLayout.module.css\";\n\nexport interface AppLayoutProps\n extends Omit,\n Omit {\n title?: DynamicProp;\n description?: DynamicProp;\n manifestUrl?: DynamicProp;\n breadcrumbs?: DynamicProp;\n withContainer?: boolean;\n containerSize?: MantineSize | (string & {}) | number;\n containerProps?: ContainerProps;\n withGutter?: boolean;\n gutterSize?: MantineSize | (string & {}) | number;\n sidebar?: DynamicProp;\n logoHref?: DynamicProp;\n}\n\nexport interface AppBreadcrumb {\n title: string;\n href: string;\n}\n\nconst LAYOUT_WITH_BORDER = false;\n\nconst AppLayout = ({\n title: titleProp,\n description: descriptionProp,\n manifestUrl: manifestUrlProp,\n imageUrl,\n noIndex,\n breadcrumbs: breadcrumbsProp,\n withContainer,\n containerSize,\n containerProps,\n withGutter,\n gutterSize,\n sidebar: sidebarProp,\n logoHref: logoHrefProp,\n children,\n padding,\n ...otherProps\n}: AppLayoutProps) => {\n useClearAppBadge();\n\n // == Meta\n const title = useResolveDynamicProp(titleProp);\n const description = useResolveDynamicProp(descriptionProp);\n const manifestUrl = useResolveDynamicProp(manifestUrlProp);\n\n // == Breadcrumbs\n const page = usePage();\n const breadcrumbs = useMemo(() => {\n return breadcrumbsProp\n ? resolveDynamicProp(breadcrumbsProp, page).filter(x => !!x)\n : [];\n }, [breadcrumbsProp, page]);\n\n // == Sidebar\n const sidebar = useResolveDynamicProp(sidebarProp);\n const logoHref = useResolveDynamicProp(logoHrefProp);\n const [\n sidebarOpened,\n { toggle: toggleSidebar, close: closeSidebar, open: openSidebar },\n ] = useDisclosure();\n const sidebarControls = useMemo(() => {\n return sidebar\n ? {\n opened: sidebarOpened,\n toggle: toggleSidebar,\n close: closeSidebar,\n open: openSidebar,\n }\n : null;\n }, [sidebar, sidebarOpened, toggleSidebar, closeSidebar, openSidebar]);\n\n // == Content\n const { style: containerStyle, ...otherContainerProps } =\n containerProps ?? {};\n const content = withContainer ? (\n \n {children}\n \n ) : (\n children\n );\n\n return (\n \n \n \n \n \n {sidebar}\n \n {!isEmpty(breadcrumbs) && (\n \n {breadcrumbs.map(({ title, href }, index) => (\n \n {title}\n \n ))}\n \n )}\n {content}\n \n \n \n \n \n \n \n );\n};\n\nexport default AppLayout;\n"],"names":["getBreakpointValue","breakpoint","breakpoints","px","getSortedBreakpoints","values","convertedBreakpoints","a","b","useHover","hovered","setHovered","useState","ref","useRef","onMouseEnter","useCallback","onMouseLeave","useEffect","node","usePrevious","value","AppShellProvider","useAppShellContext","createSafeContext","classes","defaultProps","AppShellAside","factory","_props","props","useProps","classNames","className","style","styles","unstyled","vars","withBorder","zIndex","mod","others","ctx","jsx","Box","AppShellFooter","cx","RemoveScroll","_a","AppShellHeader","AppShellMain","getBaseSize","size","isPrimitiveSize","isBaseSize","isResponsiveSize","assignAsideVariables","baseStyles","minMediaStyles","maxMediaStyles","aside","theme","asideWidth","collapsedAsideTransform","collapsedAsideTransformRtl","baseSize","rem","keys","key","_b","breakpointValue","_c","assignFooterVariables","footer","footerHeight","collapsedFooterTransform","shouldOffset","assignHeaderVariables","header","headerHeight","collapsedHeaderTransform","assignNavbarVariables","navbar","navbarWidth","collapsedNavbarTransform","collapsedNavbarTransformRtl","getPaddingValue","padding","getSpacing","assignPaddingVariables","getVariables","minMedia","em","maxMedia","media","AppShellMediaStyles","useMantineTheme","useMantineContext","InlineStyles","AppShellNavbar","AppShellSection","polymorphicFactory","grow","useResizing","transitionDuration","disabled","resizing","setResizing","resizingTimeout","disabledTimeout","useWindowEvent","startTransition","useIsomorphicEffect","getDefaultZIndex","varsResolver","createVarsResolver","_","transitionTimingFunction","AppShell","layout","offsetScrollbars","getStyles","useStyles","jsxs","separatorMargin","Breadcrumbs","children","separator","items","Children","acc","child","index","array","item","isElement","cloneElement","createElement","color","lineSize","getThemeColor","getSize","Burger","opened","UnstyledButton","radius","fit","getRadius","Image","onError","src","fallbackSrc","error","setError","event","LoadingOverlay","transitionProps","loaderProps","overlayProps","visible","_overlayProps","Transition","transitionStyles","Loader","Overlay","SEC_ARRAY","toDate","input","formatDiff","diff","localeFunc","agoIn","totalSec","idx","diffSec","date","relativeDate","relDate","format","locale","opts","sec","getLocale","TimeAgo","otherProps","useMemo","DateTime","fromISO","toJSDate","text","setText","formatTimeAgo","interval","setInterval","clearInterval","Text","component","useResolveDynamicProp","prop","page","usePage","resolveDynamicProp","logoSrc","SidebarControlsContext","createContext","useSidebarControls","useContext","useContact","options","result","setResult","loading","onTriggered","params","routes","contactUrls","show","descriptor","query","then","mailto","sms","location","href","type","finally","AppMenu","currentUser","useCurrentUser","setOpened","MenuLink","Menu","Item","Link","preserveScroll","position","trigger","closeDelay","onChange","shadow","offset","width","arrowPosition","withinPortal","itemSection","itemLabel","dropdown","_jsx","Target","Badge","target","variant","leftSection","MenuIcon","Dropdown","home","path","HomeIcon","locations","LocateIcon","calendly","rel","SmileIcon","ContactItem","onClose","Divider","_jsxs","_Fragment","usersRegistrations","edit","AccountIcon","is_owner","admin","AdminIcon","LogoutItem","SignInIcon","usersSessions","new","ServerInfoItem","mutating","useRouteMutation","destroy","onSuccess","toast","success","router","visit","pos","SignOutIcon","closeMenuOnClick","onClick","contact","SendIcon","data","useRouteSWR","healthcheckHealthchecks","check","bootedAt","fz","info","inherit","textTransform","Skeleton","display","height","lh","verticalAlign","span","___$insertStyle","css","window","document","setAttribute","innerHTML","head","appendChild","Object","defineProperty","exports","React","require","_interopDefaultLegacy","e","React__default","Marquee","forwardRef","autoFill","play","pauseOnHover","pauseOnClick","direction","speed","delay","loop","gradient","gradientColor","gradientWidth","onFinish","onCycleComplete","onMount","containerWidth","setContainerWidth","marqueeWidth","setMarqueeWidth","multiplier","setMultiplier","isMounted","setIsMounted","rootRef","containerRef","marqueeRef","calculateWidth","current","containerRect","getBoundingClientRect","marqueeRect","Math","ceil","resizeObserver","ResizeObserver","observe","disconnect","duration","containerStyle","assign","gradientStyle","marqueeStyle","childStyle","multiplyChildren","Array","Number","isFinite","map","i","Fragment","onAnimationIteration","onAnimationEnd","useInterpolatedProgressMs","interpolationMs","progressMs","interpolatedProgressMs","setInterpolatedProgressMs","roundedProgressMs","round","useProgressLyricsIndexMapping","durationMs","lyrics","mapping","setMapping","requestIdleCallback","forEach","lyric","roundedStartTimeMs","start_time_ms","incrementMs","coalescedIndex","CurrentlyPlayingLyricsTooltip","track","lyricsParams","spotify_track_id","id","spotifyTracks","failSilently","progressLyricsIndexMapping","currentLyric","currentLyricIndex","hasWords","words","label","prevLabel","Tooltip","multiline","tooltip","use","ReactExports","promise","v","WITH_DEDUPE","useSWRHandler","_key","fetcher","config","cache","compare","suspense","fallbackData","revalidateOnMount","revalidateIfStale","refreshInterval","refreshWhenHidden","refreshWhenOffline","keepPreviousData","EVENT_REVALIDATORS","MUTATION","FETCH","PRELOAD","SWRGlobalState","fnArg","serialize","initialMountedRef","unmountedRef","keyRef","fetcherRef","configRef","getConfig","isActive","getCache","setCache","subscribeCache","getInitialCache","createCacheHelper","stateDependencies","fallback","isUndefined","isEqual","prev","t","returnedData","getSnapshot","shouldStartRequest","getSelectedCache","state","snapshot","mergeObjects","cachedData","initialData","clientSnapshot","serverSnapshot","memorizedSnapshot","newSnapshot","cached","useSyncExternalStore","callback","isInitialMount","hasRevalidator","laggyDataRef","shouldDoInitialRevalidation","defaultValidatingState","isValidating","isLoading","revalidate","revalidateOpts","currentFetcher","newData","startAt","shouldStartNewRequest","callbackSafeguard","IS_REACT_LEGACY","finalState","finishRequestAndUpdateState","cleanupState","requestInfo","initialState","getTimestamp","UNDEFINED","mutationInfo","cacheData","err","currentConfig","shouldRetryOnError","isFunction","_opts","revalidators","revalidateEvents","boundMutate","args","internalMutate","useIsomorphicLayoutEffect","softRevalidate","nextFocusRevalidatedAt","unsubEvents","subscribeCallback","now","IS_SERVER","rAF","timer","next","execute","useDebugValue","req","useSWR","withArgs","subscriptionStorage","SUBSCRIPTION_PREFIX","subscription","useSWRNext","subscribe","subscriptionKey","swr","subscriptions","disposers","set","refCount","dispose","count","useSWRSubscription","withMiddleware","useSubscription","channel","cable","useCable","onConnected","onData","swrConfiguration","computeKey","setKey","isFirstRender","useIsFirstRender","useShallowEffect","online","useNetwork","swrData","invariant","useDidUpdate","CurrentlyPlayingIsland","mutate","currentlyPlayings","currentlyPlaying","mounted","setMounted","transitioning","setTransitioning","subscriptionData","track_id","timestamp","elappsedMs","as","progress_ms","transition","onEntered","onExited","TrackCoalescer","IslandContent","trackProp","setTrack","album","artists","artistNames","name","join","joinJam","joiningJam","spotifyJamSessions","joinUrl","open","duration_ms","currentLyricLine","currentWords","hasLyrics","p","mr","albumArt","image_url","undefined","w","h","Center","inset","white","PlayIcon","badge","section","margin","maxWidth","MarqueeText","fw","trackName","textRef","setPlay","useLayoutEffect","el","clientWidth","marquee","marqueeText","AppHeader","logoHref","isStandalone","useIsStandalone","sidebarControls","Header","cn","Group","justify","gap","clickable","toggle","hiddenFrom","Button","logoButton","menu","heartSrc","Attribution","HoverCard","borderRadius","md","Stack","align","CodeIcon","py","SidebarControlsProvider","controls","Provider","LAYOUT_WITH_BORDER","AppLayout","title","titleProp","description","descriptionProp","manifestUrl","manifestUrlProp","imageUrl","noIndex","breadcrumbs","breadcrumbsProp","withContainer","containerSize","containerProps","withGutter","gutterSize","sidebar","sidebarProp","logoHrefProp","useClearAppBadge","filter","x","sidebarOpened","toggleSidebar","close","closeSidebar","openSidebar","useDisclosure","otherContainerProps","content","PageContainer","flexGrow","flexDirection","PageLayout","AppMeta","collapsed","mobile","root","shell","Main","main","isEmpty","mx","mt","breadcrumbSeparator","flexWrap","rowGap","marginLeft","marginRight","Anchor"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,41,44]}