kmcom-nuxt-layers 1.7.8 → 2.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/layout-shift-causes.md +94 -0
- package/layers/animations/nuxt.config.ts +17 -0
- package/layers/animations/package.json +6 -0
- package/layers/animations/tsconfig.json +7 -0
- package/layers/canvas/app/components/ShaderCanvas.vue +125 -0
- package/layers/{shader → canvas}/app/composables/useRendererCapabilities.ts +10 -2
- package/layers/{shader → canvas}/app/composables/useShaderTime.ts +3 -3
- package/layers/canvas/app/types/renderer.ts +50 -0
- package/layers/canvas/nuxt.config.ts +189 -0
- package/layers/canvas/package.json +22 -0
- package/layers/canvas/tsconfig.json +7 -0
- package/layers/content/app/components/Blog/Article.vue +12 -6
- package/layers/content/app/components/Blog/Card.vue +24 -24
- package/layers/content/app/components/Blog/List.vue +8 -11
- package/layers/content/app/components/Gallery/AmbientImage.vue +15 -15
- package/layers/content/app/components/Gallery/Card.vue +19 -19
- package/layers/content/app/components/Gallery/Detail.vue +29 -20
- package/layers/content/app/components/Gallery/Grid.vue +8 -11
- package/layers/content/app/components/Gallery/ImageDetail.vue +18 -17
- package/layers/content/app/components/Gallery/ImagePage.vue +8 -9
- package/layers/content/app/components/Gallery/Lightbox.vue +38 -33
- package/layers/content/app/components/Gallery/Page.vue +8 -8
- package/layers/content/app/components/Gallery/SlugPage.vue +7 -8
- package/layers/content/app/components/NuxtContent/Detail.vue +29 -27
- package/layers/content/app/components/NuxtContent/List.vue +10 -9
- package/layers/content/app/components/NuxtContent/Renderer.vue +4 -4
- package/layers/content/app/components/NuxtContent/Surround.vue +3 -3
- package/layers/content/app/components/NuxtContent/Toc.vue +5 -5
- package/layers/content/app/components/Portfolio/Card.vue +17 -17
- package/layers/content/app/components/Portfolio/ColorPalette.vue +11 -11
- package/layers/content/app/components/Portfolio/Detail.vue +9 -13
- package/layers/content/app/components/Portfolio/ItemPage.vue +8 -9
- package/layers/content/app/components/Portfolio/List.vue +10 -13
- package/layers/content/app/components/Portfolio/Page.vue +8 -8
- package/layers/content/app/components/Portfolio/Typography.vue +4 -4
- package/layers/content/app/components/content/Figure.vue +14 -14
- package/layers/content/app/composables/createPortfolioComposables.ts +1 -0
- package/layers/content/app/composables/useCollectionItem.ts +4 -1
- package/layers/content/app/composables/useCollectionSurround.ts +1 -0
- package/layers/content/app/composables/useContentPage.ts +1 -0
- package/layers/content/app/composables/useGalleryItems.ts +1 -0
- package/layers/content/app/composables/usePortfolioItems.ts +1 -0
- package/layers/content/app/types/app-config.d.ts +1 -1
- package/layers/content/app/types/content.ts +27 -30
- package/layers/content/nuxt.config.ts +4 -3
- package/layers/content/package.json +4 -4
- package/layers/core/app/components/DiagnosticsPage.vue +203 -203
- package/layers/core/app/components/ErrorBoundary.vue +51 -49
- package/layers/core/app/components/LoadingScreen.vue +112 -111
- package/layers/core/app/composables/useBrowser.ts +2 -1
- package/layers/core/app/composables/useCache.ts +4 -2
- package/layers/core/app/composables/useErrorLog.ts +7 -10
- package/layers/core/app/composables/useFeatures.ts +4 -2
- package/layers/core/app/composables/useLoading.ts +1 -0
- package/layers/core/app/composables/useNetworkInfo.ts +1 -0
- package/layers/core/app/composables/usePWAInfo.ts +4 -3
- package/layers/core/app/composables/useRendering.ts +1 -0
- package/layers/core/app/composables/useScreen.ts +1 -0
- package/layers/core/app/composables/useScrollGuard.ts +2 -1
- package/layers/core/app/pages/[...slug].vue +99 -99
- package/layers/core/app/plugins/error-handler.ts +1 -1
- package/layers/core/app/plugins/feature-detection.client.ts +2 -1
- package/layers/core/app/plugins/init.ts +8 -19
- package/layers/core/app/plugins/loading.client.ts +4 -2
- package/layers/core/app/plugins/scroll-guard.client.ts +4 -4
- package/layers/core/app/types/app-config.d.ts +5 -1
- package/layers/core/app/types/detection.ts +8 -8
- package/layers/core/app/types/index.ts +5 -4
- package/layers/core/app/types/loading.ts +3 -3
- package/layers/core/app/types/runtime-config.ts +2 -2
- package/layers/core/app/types/scroll-guard.ts +2 -2
- package/layers/core/app/types/site.ts +43 -0
- package/layers/core/app/utils/helpers.ts +4 -0
- package/layers/core/nuxt.config.ts +1 -0
- package/layers/core/package.json +1 -1
- package/layers/feeds/app/app.config.ts +23 -0
- package/layers/feeds/app/assets/css/feeds.css +66 -0
- package/layers/feeds/app/plugins/feed-head.ts +73 -0
- package/layers/feeds/nuxt.config.ts +36 -0
- package/layers/feeds/package.json +23 -0
- package/layers/feeds/tsconfig.json +7 -0
- package/layers/forms/app/components/Form/Contact.vue +1 -0
- package/layers/forms/app/components/Form/Field.vue +70 -74
- package/layers/forms/app/composables/useFormSchema.ts +2 -0
- package/layers/forms/app/config/fields.ts +1 -0
- package/layers/forms/app/types/app-config.d.ts +1 -1
- package/layers/forms/app/types/fields.ts +1 -1
- package/layers/forms/nuxt.config.ts +4 -9
- package/layers/forms/package.json +4 -9
- package/layers/layout/app/assets/css/layout/grids.css +12 -12
- package/layers/layout/app/assets/css/layout/modes/fluid.css +10 -10
- package/layers/layout/app/components/Layout/Container.vue +34 -34
- package/layers/layout/app/components/Layout/Grid/Debug.vue +55 -55
- package/layers/layout/app/components/Layout/Grid/Item.vue +239 -231
- package/layers/layout/app/components/Layout/Main.vue +27 -23
- package/layers/layout/app/components/Layout/Page/Container.vue +71 -67
- package/layers/layout/app/components/Layout/Page/Header.vue +22 -21
- package/layers/layout/app/components/Layout/Page/index.vue +1 -0
- package/layers/layout/app/components/Layout/Section/Gallery.vue +49 -48
- package/layers/layout/app/components/Layout/Section/Grid.vue +29 -29
- package/layers/layout/app/components/Layout/Section/Hero.vue +31 -29
- package/layers/layout/app/components/Layout/Section/Sidebar.vue +48 -48
- package/layers/layout/app/components/Layout/Section/Split.vue +28 -28
- package/layers/layout/app/components/Layout/Section/Stack.vue +39 -37
- package/layers/layout/app/components/Layout/Section/Title.vue +21 -20
- package/layers/layout/app/composables/GridPlacement.ts +1 -1
- package/layers/layout/app/composables/useGridConfig.ts +2 -1
- package/layers/layout/app/types/app-config.d.ts +2 -1
- package/layers/layout/app/types/layouts.ts +4 -4
- package/layers/layout/nuxt.config.ts +4 -1
- package/layers/mailer/nuxt.config.ts +26 -0
- package/layers/mailer/package.json +15 -0
- package/layers/mailer/tsconfig.json +7 -0
- package/layers/motion/app/components/Motion/index.vue +5 -5
- package/layers/motion/nuxt.config.ts +6 -22
- package/layers/motion/package.json +0 -5
- package/layers/navigation/app/app.config.ts +38 -0
- package/layers/navigation/app/assets/css/navigation.css +3 -0
- package/layers/navigation/app/components/Links/Group.vue +49 -0
- package/layers/navigation/app/components/Links/Named.vue +33 -0
- package/layers/navigation/app/components/Mast/Footer.vue +13 -0
- package/layers/{ui → navigation}/app/components/Mast/Header.vue +2 -2
- package/layers/{ui → navigation}/app/components/Mast/Nav.vue +2 -2
- package/layers/navigation/app/components/Mast/NavModal.vue +76 -0
- package/layers/{ui → navigation}/app/composables/mastNav.ts +7 -4
- package/layers/{ui → navigation}/app/composables/toast.ts +1 -0
- package/layers/{ui → navigation}/app/composables/useSite.ts +1 -0
- package/layers/navigation/app/types/nav.ts +11 -0
- package/layers/{ui → navigation}/app/utils/createModal.ts +2 -1
- package/layers/navigation/nuxt.config.ts +19 -0
- package/layers/navigation/package.json +6 -0
- package/layers/navigation/tsconfig.json +7 -0
- package/layers/page-transitions/app/app.config.ts +15 -0
- package/layers/page-transitions/app/composables/usePageTransition.ts +32 -0
- package/layers/page-transitions/app/plugins/page-transitions.client.ts +14 -0
- package/layers/page-transitions/nuxt.config.ts +17 -0
- package/layers/page-transitions/package.json +6 -0
- package/layers/page-transitions/tsconfig.json +7 -0
- package/layers/routing/app/composables/{useFeatures.ts → useFeatureFlags.ts} +1 -1
- package/layers/routing/app/composables/useRoutingConfig.ts +5 -6
- package/layers/routing/app/middleware/01.maintenance.global.ts +1 -1
- package/layers/routing/app/middleware/02.governance.global.ts +2 -2
- package/layers/routing/app/plugins/feature-flags.client.ts +4 -4
- package/layers/routing/app/plugins/scroll-routing.client.ts +4 -3
- package/layers/routing/app/types/app-config.d.ts +2 -1
- package/layers/routing/app/types/route-meta.d.ts +1 -1
- package/layers/routing/app/types/routing.ts +5 -2
- package/layers/routing/app/utils/resolveRoute.ts +2 -2
- package/layers/routing/nuxt.config.ts +6 -2
- package/layers/scripts/app/app.config.ts +44 -0
- package/layers/scripts/app/composables/useAnalytics.ts +49 -0
- package/layers/scripts/app/composables/useGtm.ts +21 -0
- package/layers/scripts/app/composables/useScriptLoader.ts +31 -0
- package/layers/scripts/app/composables/useScriptsConsent.ts +23 -0
- package/layers/scripts/app/composables/useYoutubeEmbed.ts +14 -0
- package/layers/scripts/nuxt.config.ts +22 -0
- package/layers/scripts/package.json +14 -0
- package/layers/scripts/tsconfig.json +7 -0
- package/layers/{motion/app/types/app-config.d.ts → scroll/app/app.config.ts} +16 -1
- package/layers/scroll/app/components/Motion/HorizontalScroll.vue +61 -0
- package/layers/scroll/app/components/Motion/Parallax.vue +76 -0
- package/layers/scroll/app/components/Motion/PinnedSection.vue +77 -0
- package/layers/scroll/app/components/Motion/ScrollLink.vue +50 -0
- package/layers/scroll/app/components/Motion/ScrollProgress.vue +85 -0
- package/layers/scroll/app/components/Motion/ScrollScene.vue +121 -0
- package/layers/{motion → scroll}/app/components/Motion/ScrollStats.vue +51 -50
- package/layers/scroll/app/components/Motion/ScrollStep.vue +44 -0
- package/layers/{motion → scroll}/app/composables/useGsap.ts +0 -6
- package/layers/{motion → scroll}/app/composables/useScrollSteps.ts +2 -5
- package/layers/{motion → scroll}/app/composables/useSectionProgress.ts +14 -7
- package/layers/{motion → scroll}/app/composables/useSmoothScroll.ts +6 -37
- package/layers/{motion → scroll}/app/plugins/locomotive-scroll.client.ts +3 -2
- package/layers/scroll/nuxt.config.ts +33 -0
- package/layers/scroll/package.json +11 -0
- package/layers/scroll/tsconfig.json +7 -0
- package/layers/seo/app/app.config.ts +30 -0
- package/layers/seo/app/composables/useSeoConfig.ts +14 -0
- package/layers/seo/nuxt.config.ts +34 -0
- package/layers/seo/package.json +14 -0
- package/layers/seo/tsconfig.json +7 -0
- package/layers/shader/app/components/Effect/Bloom.vue +2 -2
- package/layers/shader/app/components/Effect/ChromaticAberration.vue +2 -2
- package/layers/shader/app/components/Effect/PostProcessing.vue +14 -10
- package/layers/shader/app/components/Material/AmbientAurora.client.vue +162 -158
- package/layers/shader/app/components/Material/AmbientFlow.client.vue +165 -161
- package/layers/shader/app/components/Material/AmbientGradientMesh.client.vue +179 -162
- package/layers/shader/app/components/Material/AmbientNebula.client.vue +167 -163
- package/layers/shader/app/components/Material/AmbientOcean.client.vue +154 -150
- package/layers/shader/app/components/Material/Fresnel.client.vue +78 -75
- package/layers/shader/app/components/Material/Gradient.client.vue +175 -173
- package/layers/shader/app/components/Material/Image.client.vue +228 -225
- package/layers/shader/app/components/Material/Node.client.vue +66 -63
- package/layers/shader/app/components/Material/Noise.client.vue +128 -124
- package/layers/shader/app/components/Mesh/Plane.vue +20 -18
- package/layers/shader/app/components/Node/Color.client.vue +47 -45
- package/layers/shader/app/components/Node/Fresnel.client.vue +47 -47
- package/layers/shader/app/components/Node/Gradient.client.vue +120 -70
- package/layers/shader/app/components/Node/Mix.client.vue +41 -39
- package/layers/shader/app/components/Node/Noise.client.vue +91 -83
- package/layers/shader/app/components/Pipeline/ACESTonemap.client.vue +7 -10
- package/layers/shader/app/components/Pipeline/AddBlend.client.vue +33 -19
- package/layers/shader/app/components/Pipeline/AgedFilm.client.vue +61 -40
- package/layers/shader/app/components/Pipeline/Aurora.client.vue +92 -56
- package/layers/shader/app/components/Pipeline/BilinearGradient.client.vue +65 -34
- package/layers/shader/app/components/Pipeline/BillowNoise.client.vue +56 -32
- package/layers/shader/app/components/Pipeline/BrightnessContrast.client.vue +36 -20
- package/layers/shader/app/components/Pipeline/CellularNoise.client.vue +55 -31
- package/layers/shader/app/components/Pipeline/ChannelMixer.client.vue +62 -34
- package/layers/shader/app/components/Pipeline/ChebyshevNoiseField.client.vue +77 -50
- package/layers/shader/app/components/Pipeline/Checkerboard.client.vue +50 -31
- package/layers/shader/app/components/Pipeline/ChromaticAberration.client.vue +49 -33
- package/layers/shader/app/components/Pipeline/ChromaticScreenWaves.client.vue +61 -36
- package/layers/shader/app/components/Pipeline/Circle.client.vue +53 -30
- package/layers/shader/app/components/Pipeline/Clouds.client.vue +86 -48
- package/layers/shader/app/components/Pipeline/ColorBurnBlend.client.vue +34 -19
- package/layers/shader/app/components/Pipeline/ColorDodgeBlend.client.vue +34 -19
- package/layers/shader/app/components/Pipeline/ColourRamp.client.vue +76 -46
- package/layers/shader/app/components/Pipeline/ComplexPlaneField.client.vue +80 -50
- package/layers/shader/app/components/Pipeline/ConicGradient.client.vue +46 -28
- package/layers/shader/app/components/Pipeline/CosinePalette.client.vue +80 -53
- package/layers/shader/app/components/Pipeline/CoverageAlpha.client.vue +12 -14
- package/layers/shader/app/components/Pipeline/Cross.client.vue +66 -37
- package/layers/shader/app/components/Pipeline/CurlNoise.client.vue +58 -35
- package/layers/shader/app/components/Pipeline/DarkenBlend.client.vue +34 -19
- package/layers/shader/app/components/Pipeline/DayNightCycle.client.vue +65 -39
- package/layers/shader/app/components/Pipeline/Desaturate.client.vue +23 -16
- package/layers/shader/app/components/Pipeline/DiagonalGradient.client.vue +50 -29
- package/layers/shader/app/components/Pipeline/DiamondGradient.client.vue +47 -29
- package/layers/shader/app/components/Pipeline/DifferenceBlend.client.vue +34 -19
- package/layers/shader/app/components/Pipeline/DivideBlend.client.vue +34 -19
- package/layers/shader/app/components/Pipeline/DomainWarpedNoise.client.vue +79 -37
- package/layers/shader/app/components/Pipeline/Dots.client.vue +70 -34
- package/layers/shader/app/components/Pipeline/DuoTone.client.vue +40 -26
- package/layers/shader/app/components/Pipeline/ExclusionBlend.client.vue +38 -19
- package/layers/shader/app/components/Pipeline/ExponentialFog.client.vue +52 -35
- package/layers/shader/app/components/Pipeline/Exposure.client.vue +22 -16
- package/layers/shader/app/components/Pipeline/FBMNoise.client.vue +62 -39
- package/layers/shader/app/components/Pipeline/FilmBurn.client.vue +60 -38
- package/layers/shader/app/components/Pipeline/FilmGrain.client.vue +53 -31
- package/layers/shader/app/components/Pipeline/FisheyeRay.client.vue +39 -28
- package/layers/shader/app/components/Pipeline/Flame.client.vue +59 -35
- package/layers/shader/app/components/Pipeline/FocalGradient.client.vue +56 -33
- package/layers/shader/app/components/Pipeline/Gamma.client.vue +21 -16
- package/layers/shader/app/components/Pipeline/GodRays.client.vue +76 -42
- package/layers/shader/app/components/Pipeline/GradientNoise.client.vue +57 -32
- package/layers/shader/app/components/Pipeline/Grain.client.vue +84 -47
- package/layers/shader/app/components/Pipeline/Grid.client.vue +56 -33
- package/layers/shader/app/components/Pipeline/Halation.client.vue +52 -34
- package/layers/shader/app/components/Pipeline/Halftone.client.vue +34 -23
- package/layers/shader/app/components/Pipeline/HardLightBlend.client.vue +33 -19
- package/layers/shader/app/components/Pipeline/Haze.client.vue +57 -36
- package/layers/shader/app/components/Pipeline/Hexagon.client.vue +54 -31
- package/layers/shader/app/components/Pipeline/Hue.client.vue +20 -16
- package/layers/shader/app/components/Pipeline/Invert.client.vue +6 -10
- package/layers/shader/app/components/Pipeline/LensFlare.client.vue +56 -37
- package/layers/shader/app/components/Pipeline/LightenBlend.client.vue +31 -19
- package/layers/shader/app/components/Pipeline/LinearGradient.client.vue +36 -28
- package/layers/shader/app/components/Pipeline/LinearGradient4.client.vue +65 -43
- package/layers/shader/app/components/Pipeline/LinearToSRGB.client.vue +26 -20
- package/layers/shader/app/components/Pipeline/Marble.client.vue +97 -57
- package/layers/shader/app/components/Pipeline/MixBlend.client.vue +45 -35
- package/layers/shader/app/components/Pipeline/MonochromeTint.client.vue +40 -25
- package/layers/shader/app/components/Pipeline/MultiplyBlend.client.vue +33 -19
- package/layers/shader/app/components/Pipeline/NoisyGradient.client.vue +83 -42
- package/layers/shader/app/components/Pipeline/NoisyGradientBlend.client.vue +141 -81
- package/layers/shader/app/components/Pipeline/OverlayBlend.client.vue +33 -19
- package/layers/shader/app/components/Pipeline/PaperTexture.client.vue +47 -30
- package/layers/shader/app/components/Pipeline/Polygon.client.vue +74 -37
- package/layers/shader/app/components/Pipeline/Posterise.client.vue +21 -16
- package/layers/shader/app/components/Pipeline/RadialGradient.client.vue +45 -30
- package/layers/shader/app/components/Pipeline/RayAutoOrbit.client.vue +43 -30
- package/layers/shader/app/components/Pipeline/RayMouseOrbit.client.vue +60 -47
- package/layers/shader/app/components/Pipeline/RayRotateX.client.vue +28 -20
- package/layers/shader/app/components/Pipeline/RayRotateY.client.vue +28 -20
- package/layers/shader/app/components/Pipeline/RayRotateZ.client.vue +28 -20
- package/layers/shader/app/components/Pipeline/RayTiltBasis.client.vue +55 -34
- package/layers/shader/app/components/Pipeline/RaymarchTunnel.client.vue +132 -88
- package/layers/shader/app/components/Pipeline/Rectangle.client.vue +78 -37
- package/layers/shader/app/components/Pipeline/ReinhardTonemap.client.vue +12 -14
- package/layers/shader/app/components/Pipeline/RidgedNoise.client.vue +54 -31
- package/layers/shader/app/components/Pipeline/Ring.client.vue +69 -34
- package/layers/shader/app/components/Pipeline/RingField.client.vue +63 -43
- package/layers/shader/app/components/Pipeline/RisographGrain.client.vue +66 -32
- package/layers/shader/app/components/Pipeline/RotatedGradientBlend.client.vue +73 -48
- package/layers/shader/app/components/Pipeline/SDFColourMask.client.vue +31 -25
- package/layers/shader/app/components/Pipeline/SDFRadialMask.client.vue +31 -21
- package/layers/shader/app/components/Pipeline/SRGBToLinear.client.vue +25 -20
- package/layers/shader/app/components/Pipeline/Saturation.client.vue +22 -16
- package/layers/shader/app/components/Pipeline/Scanlines.client.vue +42 -26
- package/layers/shader/app/components/Pipeline/ScreenBlend.client.vue +33 -19
- package/layers/shader/app/components/Pipeline/ShaderDebugger.client.vue +58 -45
- package/layers/shader/app/components/Pipeline/SimplexNoise.client.vue +59 -37
- package/layers/shader/app/components/Pipeline/SkyAtmosphere.client.vue +87 -54
- package/layers/shader/app/components/Pipeline/SoftLightBlend.client.vue +33 -19
- package/layers/shader/app/components/Pipeline/SolidColour.client.vue +24 -16
- package/layers/shader/app/components/Pipeline/SplitTone.client.vue +58 -34
- package/layers/shader/app/components/Pipeline/Star.client.vue +73 -37
- package/layers/shader/app/components/Pipeline/Starfield.client.vue +68 -34
- package/layers/shader/app/components/Pipeline/Stripes.client.vue +64 -36
- package/layers/shader/app/components/Pipeline/SubtractBlend.client.vue +33 -19
- package/layers/shader/app/components/Pipeline/TanhTonemap.client.vue +25 -19
- package/layers/shader/app/components/Pipeline/Threshold.client.vue +23 -17
- package/layers/shader/app/components/Pipeline/Tint.client.vue +36 -25
- package/layers/shader/app/components/Pipeline/Triangle.client.vue +54 -31
- package/layers/shader/app/components/Pipeline/UVAspectCorrect.client.vue +5 -10
- package/layers/shader/app/components/Pipeline/UVBreath.client.vue +44 -31
- package/layers/shader/app/components/Pipeline/UVBulge.client.vue +35 -21
- package/layers/shader/app/components/Pipeline/UVClamp.client.vue +14 -14
- package/layers/shader/app/components/Pipeline/UVColumnOffset.client.vue +36 -23
- package/layers/shader/app/components/Pipeline/UVFlipX.client.vue +6 -10
- package/layers/shader/app/components/Pipeline/UVFlipXY.client.vue +6 -10
- package/layers/shader/app/components/Pipeline/UVFlipY.client.vue +6 -10
- package/layers/shader/app/components/Pipeline/UVFractBand.client.vue +31 -21
- package/layers/shader/app/components/Pipeline/UVMousePull.client.vue +41 -33
- package/layers/shader/app/components/Pipeline/UVNoiseRotate.client.vue +65 -46
- package/layers/shader/app/components/Pipeline/UVNoiseWarp.client.vue +49 -30
- package/layers/shader/app/components/Pipeline/UVOrbit.client.vue +37 -29
- package/layers/shader/app/components/Pipeline/UVParallax.client.vue +41 -33
- package/layers/shader/app/components/Pipeline/UVPixelate.client.vue +21 -16
- package/layers/shader/app/components/Pipeline/UVPulse.client.vue +41 -28
- package/layers/shader/app/components/Pipeline/UVRipple.client.vue +53 -29
- package/layers/shader/app/components/Pipeline/UVRotate.client.vue +40 -32
- package/layers/shader/app/components/Pipeline/UVScale.client.vue +33 -25
- package/layers/shader/app/components/Pipeline/UVScroll.client.vue +26 -22
- package/layers/shader/app/components/Pipeline/UVScrollX.client.vue +20 -16
- package/layers/shader/app/components/Pipeline/UVScrollY.client.vue +20 -16
- package/layers/shader/app/components/Pipeline/UVShear.client.vue +33 -20
- package/layers/shader/app/components/Pipeline/UVSineWarpXY.client.vue +58 -40
- package/layers/shader/app/components/Pipeline/UVSwapAxes.client.vue +6 -10
- package/layers/shader/app/components/Pipeline/UVTile.client.vue +26 -22
- package/layers/shader/app/components/Pipeline/UVTwirl.client.vue +31 -21
- package/layers/shader/app/components/Pipeline/UVWarp.client.vue +44 -25
- package/layers/shader/app/components/Pipeline/VHSBleed.client.vue +63 -43
- package/layers/shader/app/components/Pipeline/ValueNoise.client.vue +57 -32
- package/layers/shader/app/components/Pipeline/Vibrance.client.vue +25 -19
- package/layers/shader/app/components/Pipeline/Vignette.client.vue +35 -24
- package/layers/shader/app/components/Pipeline/VoronoiEdges.client.vue +66 -38
- package/layers/shader/app/components/Pipeline/Water.client.vue +78 -39
- package/layers/shader/app/components/Pipeline/WaveBendLayer.client.vue +74 -46
- package/layers/shader/app/components/Pipeline/WaveColourLayer.client.vue +76 -43
- package/layers/shader/app/components/Pipeline/WhiteBalance.client.vue +38 -27
- package/layers/shader/app/components/Pipeline/Wood.client.vue +85 -50
- package/layers/shader/app/components/Preset/Aurora.client.vue +69 -52
- package/layers/shader/app/components/Preset/Flow.client.vue +63 -47
- package/layers/shader/app/components/Preset/GradientMesh.client.vue +63 -47
- package/layers/shader/app/components/Preset/Nebula.client.vue +65 -47
- package/layers/shader/app/components/Preset/Ocean.client.vue +64 -47
- package/layers/shader/app/components/Preset/ThemeAurora.client.vue +107 -70
- package/layers/shader/app/components/Preset/ThemeBubble.client.vue +108 -71
- package/layers/shader/app/components/Preset/ThemeFlow.client.vue +107 -70
- package/layers/shader/app/components/Preset/ThemeGradient.client.vue +108 -71
- package/layers/shader/app/components/Preset/ThemeLavaLamp.client.vue +107 -70
- package/layers/shader/app/components/Preset/ThemePlasma.client.vue +107 -70
- package/layers/shader/app/components/Preset/ThemeWave.client.vue +107 -70
- package/layers/shader/app/components/Shader/Background.client.vue +169 -163
- package/layers/shader/app/components/Shader/Debug.vue +45 -40
- package/layers/shader/app/components/Shader/Host.client.vue +120 -121
- package/layers/shader/app/components/Shader/Material.client.vue +42 -36
- package/layers/shader/app/components/Shader/Pipeline.client.vue +55 -46
- package/layers/shader/app/components/Shader/PipelineContext.vue +12 -12
- package/layers/shader/app/components/Shader/Runtime.client.vue +42 -37
- package/layers/shader/app/composables/useAmbientMaterials.ts +316 -105
- package/layers/shader/app/composables/useCSSColourUniform.ts +7 -6
- package/layers/shader/app/composables/useCSSFloatUniform.ts +4 -5
- package/layers/shader/app/composables/useMousePosition.ts +1 -1
- package/layers/shader/app/composables/useShader.ts +5 -3
- package/layers/shader/app/composables/useShaderColor.ts +8 -1
- package/layers/shader/app/composables/useShaderFloat.ts +3 -1
- package/layers/shader/app/composables/useShaderGraph.ts +6 -3
- package/layers/shader/app/composables/useShaderPerf.ts +2 -3
- package/layers/shader/app/composables/useShaderPipeline.ts +14 -6
- package/layers/shader/app/composables/useShaderRuntime.ts +7 -4
- package/layers/shader/app/composables/useShaderVec2.ts +4 -0
- package/layers/shader/app/composables/useSunDirectionUniform.ts +7 -6
- package/layers/shader/app/composables/useTSLNodes.ts +1 -0
- package/layers/shader/app/composables/useThemeColors.ts +14 -10
- package/layers/shader/app/composables/useUniforms.ts +5 -2
- package/layers/shader/app/plugins/shader.client.ts +3 -2
- package/layers/shader/app/shaders/common/blend.ts +3 -0
- package/layers/shader/app/shaders/common/complex.ts +4 -5
- package/layers/shader/app/shaders/common/effects.ts +10 -6
- package/layers/shader/app/shaders/common/grain.ts +4 -0
- package/layers/shader/app/shaders/common/lighting.ts +4 -1
- package/layers/shader/app/shaders/common/math.ts +3 -0
- package/layers/shader/app/shaders/common/noise.ts +7 -4
- package/layers/shader/app/shaders/common/noiseHelpers.ts +2 -0
- package/layers/shader/app/shaders/common/palette.ts +6 -1
- package/layers/shader/app/shaders/common/patterns.ts +7 -4
- package/layers/shader/app/shaders/common/sdf.ts +3 -1
- package/layers/shader/app/shaders/common/shapes.ts +3 -0
- package/layers/shader/app/shaders/common/tonemapping.ts +2 -0
- package/layers/shader/app/shaders/common/uv.ts +8 -1
- package/layers/shader/app/shaders/createMaterial.ts +6 -2
- package/layers/shader/app/shaders/layers/aurora.ts +6 -3
- package/layers/shader/app/shaders/layers/meshGradient.ts +6 -3
- package/layers/shader/app/shaders/layers/paperShading.ts +6 -2
- package/layers/shader/app/shaders/layers/shaderGradient.ts +5 -0
- package/layers/shader/app/shaders/layers/stripe.ts +6 -3
- package/layers/shader/app/shaders/types.ts +1 -0
- package/layers/shader/app/types/app-config.d.ts +1 -1
- package/layers/shader/app/types/index.ts +4 -4
- package/layers/shader/app/types/materials.ts +5 -4
- package/layers/shader/app/types/renderer.ts +1 -50
- package/layers/shader/app/types/tsl.ts +4 -3
- package/layers/shader/app/types/uniforms.ts +3 -2
- package/layers/shader/app/utils/tsl/animation.ts +2 -0
- package/layers/shader/app/utils/tsl/color.ts +5 -2
- package/layers/shader/app/utils/tsl/math.ts +1 -0
- package/layers/shader/app/utils/tsl/noise.ts +2 -0
- package/layers/shader/app/utils/tsl/oklch.ts +2 -0
- package/layers/shader/app/utils/tsl/patterns.ts +2 -0
- package/layers/shader/app/utils/tsl/tween.ts +4 -2
- package/layers/shader/app/utils/tsl/uv.ts +2 -0
- package/layers/shader/nuxt.config.ts +8 -115
- package/layers/shader/package.json +3 -9
- package/layers/theme/app/assets/css/theme.css +2 -2
- package/layers/theme/app/components/ThemePicker/AccentButton.vue +32 -30
- package/layers/theme/app/components/ThemePicker/Colors.vue +6 -5
- package/layers/theme/app/components/ThemePicker/Menu.vue +23 -23
- package/layers/theme/app/composables/useAccentColor.ts +2 -1
- package/layers/theme/app/composables/useThemeContrast.ts +1 -1
- package/layers/theme/app/composables/useThemeMotion.ts +1 -1
- package/layers/theme/app/composables/useThemeTransparency.ts +1 -4
- package/layers/theme/app/plugins/theme.client.ts +33 -15
- package/layers/theme/app/types/app-config.d.ts +3 -2
- package/layers/theme/app/types/theme.ts +1 -1
- package/layers/theme/nuxt.config.ts +4 -1
- package/layers/transitions/app/components/Motion/Transition.vue +76 -0
- package/layers/transitions/nuxt.config.ts +19 -0
- package/layers/transitions/package.json +6 -0
- package/layers/transitions/tsconfig.json +7 -0
- package/layers/typography/app/components/Typography/CodeBlock.vue +44 -0
- package/layers/typography/app/components/Typography/Headline.vue +90 -0
- package/layers/typography/app/components/Typography/HeadlineScreen.vue +75 -0
- package/layers/typography/app/components/Typography/QuoteBlock.vue +21 -0
- package/layers/{ui → typography}/app/components/Typography/TextStroke.vue +33 -32
- package/layers/typography/app/components/Typography/index.vue +54 -0
- package/layers/{ui → typography}/app/composables/typography.ts +1 -0
- package/layers/{ui → typography}/app/types/typography.ts +1 -1
- package/layers/typography/nuxt.config.ts +17 -0
- package/layers/typography/package.json +6 -0
- package/layers/typography/tsconfig.json +7 -0
- package/layers/ui/app/assets/css/ui.css +0 -20
- package/layers/ui/app/layouts/default.vue +2 -12
- package/layers/ui/nuxt.config.ts +5 -21
- package/layers/visual/app/app.config.ts +115 -0
- package/layers/visual/app/assets/css/visual.css +15 -0
- package/layers/visual/app/components/Accent/Blob.vue +32 -0
- package/layers/{ui → visual}/app/components/Accent/Scene.vue +26 -23
- package/layers/visual/app/components/Base/Modal.vue +123 -0
- package/layers/visual/app/components/Gradient/Background.vue +24 -0
- package/layers/visual/app/components/Gradient/Text.vue +24 -0
- package/layers/visual/app/components/Media/Picture.vue +51 -0
- package/layers/visual/app/components/Progress/Bar.vue +36 -0
- package/layers/{ui → visual}/app/components/Progress/Circular.vue +26 -25
- package/layers/visual/app/components/Tint/Overlay.vue +27 -0
- package/layers/{ui → visual}/app/composables/accent.ts +1 -0
- package/layers/{ui → visual}/app/composables/gradient.ts +3 -0
- package/layers/{ui → visual}/app/composables/picture.ts +2 -0
- package/layers/{ui → visual}/app/composables/tint.ts +3 -2
- package/layers/{ui → visual}/app/types/accent.ts +2 -2
- package/layers/{ui → visual}/app/types/gradient.ts +2 -2
- package/layers/{ui → visual}/app/types/media.ts +4 -3
- package/layers/{ui → visual}/app/types/tint.ts +1 -1
- package/layers/visual/nuxt.config.ts +19 -0
- package/layers/visual/package.json +6 -0
- package/layers/visual/tsconfig.json +7 -0
- package/package.json +29 -4
- package/layers/motion/app/app.config.ts +0 -27
- package/layers/motion/app/components/Motion/HorizontalScroll.vue +0 -61
- package/layers/motion/app/components/Motion/Parallax.vue +0 -75
- package/layers/motion/app/components/Motion/PinnedSection.vue +0 -77
- package/layers/motion/app/components/Motion/ScrollLink.vue +0 -49
- package/layers/motion/app/components/Motion/ScrollProgress.vue +0 -82
- package/layers/motion/app/components/Motion/ScrollScene.vue +0 -121
- package/layers/motion/app/components/Motion/ScrollStep.vue +0 -45
- package/layers/motion/app/components/Motion/Transition.vue +0 -76
- package/layers/shader/app/components/Shader/Canvas.vue +0 -121
- package/layers/ui/app/app.config.ts +0 -57
- package/layers/ui/app/components/Accent/Blob.vue +0 -29
- package/layers/ui/app/components/Base/Modal.vue +0 -111
- package/layers/ui/app/components/Gradient/Background.vue +0 -22
- package/layers/ui/app/components/Gradient/Text.vue +0 -22
- package/layers/ui/app/components/Links/Group.vue +0 -47
- package/layers/ui/app/components/Links/Named.vue +0 -31
- package/layers/ui/app/components/Mast/Footer.vue +0 -15
- package/layers/ui/app/components/Mast/NavModal.vue +0 -72
- package/layers/ui/app/components/Media/Picture.vue +0 -50
- package/layers/ui/app/components/Progress/Bar.vue +0 -35
- package/layers/ui/app/components/Tint/Overlay.vue +0 -25
- package/layers/ui/app/components/Typography/CodeBlock.vue +0 -42
- package/layers/ui/app/components/Typography/Headline.vue +0 -88
- package/layers/ui/app/components/Typography/HeadlineScreen.vue +0 -77
- package/layers/ui/app/components/Typography/QuoteBlock.vue +0 -20
- package/layers/ui/app/components/Typography/index.vue +0 -52
- package/layers/ui/app/types/app-config.d.ts +0 -22
- package/layers/ui/app/types/nav.ts +0 -5
- /package/layers/{motion → animations}/app/components/Motion/CountUp.vue +0 -0
- /package/layers/{motion → animations}/app/components/Motion/Cursor.vue +0 -0
- /package/layers/{motion → animations}/app/components/Motion/Magnetic.vue +0 -0
- /package/layers/{motion → animations}/app/components/Motion/Marquee.vue +0 -0
- /package/layers/{motion → animations}/app/components/Motion/MarqueeText.vue +0 -0
- /package/layers/{motion → animations}/app/components/Motion/Staggered.vue +0 -0
- /package/layers/{motion → animations}/app/components/Motion/TextReveal.vue +0 -0
- /package/layers/{motion → animations}/app/components/Motion/Tilt.vue +0 -0
- /package/layers/{motion → animations}/app/components/Motion/VelocityEffect.vue +0 -0
- /package/layers/{motion → animations}/app/composables/useCountUp.ts +0 -0
- /package/layers/{motion → animations}/app/composables/useCursorFollower.ts +0 -0
- /package/layers/{motion → animations}/app/composables/useMagneticElement.ts +0 -0
- /package/layers/{motion → animations}/app/composables/useMarqueeCopies.ts +0 -0
- /package/layers/{motion → animations}/app/composables/useMarqueeVelocity.ts +0 -0
- /package/layers/{motion → animations}/app/composables/useTiltEffect.ts +0 -0
- /package/layers/{ui → navigation}/app/components/Mast/Main.vue +0 -0
- /package/layers/{ui → navigation}/app/components/Site/Subtitle.vue +0 -0
- /package/layers/{ui → navigation}/app/components/Site/Title.vue +0 -0
- /package/layers/{ui → navigation}/app/utils/regex.ts +0 -0
- /package/layers/{motion/app/assets/css/motion.css → transitions/app/assets/css/transitions.css} +0 -0
- /package/layers/{ui → typography}/app/composables/color.ts +0 -0
- /package/layers/{ui → typography}/app/types/colors.ts +0 -0
- /package/layers/{ui → visual}/app/types/breakpoints.ts +0 -0
|
@@ -1,63 +1,63 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
interface LoadingConfig {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
const { isLoading, progress } = useLoading()
|
|
12
|
-
const config = useAppConfig()
|
|
13
|
-
|
|
14
|
-
// Debug logs
|
|
15
|
-
// console.log('[LoadingScreen] Component created!')
|
|
16
|
-
// console.log('[LoadingScreen] Initial - isLoading:', isLoading.value, 'progress:', progress.value)
|
|
17
|
-
|
|
18
|
-
// Type-safe access to loading config
|
|
19
|
-
const loadingConfig = computed(() => {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
})
|
|
23
|
-
|
|
24
|
-
const minDuration = computed(() => loadingConfig.value?.minDuration || 500)
|
|
25
|
-
const background = computed(() => loadingConfig.value?.background || '#0a0a0a')
|
|
26
|
-
const textColor = computed(() => loadingConfig.value?.textColor || '#ffffff')
|
|
27
|
-
const zIndex = computed(() => loadingConfig.value?.zIndex || 10000)
|
|
28
|
-
|
|
29
|
-
// Rounded progress for display
|
|
30
|
-
const displayProgress = computed(() => Math.round(progress.value))
|
|
31
|
-
|
|
32
|
-
// Control visibility
|
|
33
|
-
const visible = ref(true)
|
|
34
|
-
const hasFinished = ref(false)
|
|
35
|
-
|
|
36
|
-
// Watch for loading completion
|
|
37
|
-
watch(
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
)
|
|
2
|
+
interface LoadingConfig {
|
|
3
|
+
enabled?: boolean
|
|
4
|
+
minDuration?: number
|
|
5
|
+
maxDuration?: number
|
|
6
|
+
background?: string
|
|
7
|
+
textColor?: string
|
|
8
|
+
zIndex?: number
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
const { isLoading, progress } = useLoading()
|
|
12
|
+
const config = useAppConfig()
|
|
13
|
+
|
|
14
|
+
// Debug logs
|
|
15
|
+
// console.log('[LoadingScreen] Component created!')
|
|
16
|
+
// console.log('[LoadingScreen] Initial - isLoading:', isLoading.value, 'progress:', progress.value)
|
|
17
|
+
|
|
18
|
+
// Type-safe access to loading config
|
|
19
|
+
const loadingConfig = computed(() => {
|
|
20
|
+
const coreLayer = config.coreLayer as { loading?: LoadingConfig }
|
|
21
|
+
return coreLayer?.loading || {}
|
|
22
|
+
})
|
|
23
|
+
|
|
24
|
+
const minDuration = computed(() => loadingConfig.value?.minDuration || 500)
|
|
25
|
+
const background = computed(() => loadingConfig.value?.background || '#0a0a0a')
|
|
26
|
+
const textColor = computed(() => loadingConfig.value?.textColor || '#ffffff')
|
|
27
|
+
const zIndex = computed(() => loadingConfig.value?.zIndex || 10000)
|
|
28
|
+
|
|
29
|
+
// Rounded progress for display
|
|
30
|
+
const displayProgress = computed(() => Math.round(progress.value))
|
|
31
|
+
|
|
32
|
+
// Control visibility
|
|
33
|
+
const visible = ref(true)
|
|
34
|
+
const hasFinished = ref(false)
|
|
35
|
+
|
|
36
|
+
// Watch for loading completion
|
|
37
|
+
watch(
|
|
38
|
+
[isLoading, progress],
|
|
39
|
+
([loading, prog]) => {
|
|
40
|
+
// console.log(
|
|
41
|
+
// '[LoadingScreen] Watch fired - isLoading:',
|
|
42
|
+
// loading,
|
|
43
|
+
// 'progress:',
|
|
44
|
+
// prog,
|
|
45
|
+
// 'visible:',
|
|
46
|
+
// visible.value
|
|
47
|
+
// )
|
|
48
|
+
|
|
49
|
+
if (!loading && prog >= 100 && !hasFinished.value) {
|
|
50
|
+
hasFinished.value = true
|
|
51
|
+
// console.log('[LoadingScreen] Loading finished! Will hide after', minDuration.value, 'ms')
|
|
52
|
+
|
|
53
|
+
setTimeout(() => {
|
|
54
|
+
// console.log('[LoadingScreen] Hiding now')
|
|
55
|
+
visible.value = false
|
|
56
|
+
}, minDuration.value)
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
{ immediate: true }
|
|
60
|
+
)
|
|
61
61
|
</script>
|
|
62
62
|
|
|
63
63
|
<template>
|
|
@@ -80,58 +80,59 @@ watch(
|
|
|
80
80
|
</template>
|
|
81
81
|
|
|
82
82
|
<style scoped>
|
|
83
|
-
|
|
84
|
-
.fade-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
.fade-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
place-self: center;
|
|
114
|
-
font-weight: 900;
|
|
115
|
-
font-stretch: ultra-expanded;
|
|
116
|
-
font-size: clamp(3rem, 35cqw + 1rem, 18rem);
|
|
117
|
-
font-family:
|
|
118
|
-
system-ui,
|
|
119
|
-
-apple-system,
|
|
120
|
-
BlinkMacSystemFont,
|
|
121
|
-
'Segoe UI',
|
|
122
|
-
Roboto,
|
|
123
|
-
'Helvetica Neue',
|
|
124
|
-
Arial,
|
|
125
|
-
sans-serif;
|
|
126
|
-
text-align: center;
|
|
127
|
-
/* stylelint-disable-next-line function-disallowed-list */
|
|
128
|
-
text-shadow: 0 0 20px rgb(0 0 0 / 0.3);
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
@media (width >= 768px) {
|
|
83
|
+
/* stylelint-disable selector-max-id */
|
|
84
|
+
.fade-enter-active,
|
|
85
|
+
.fade-leave-active {
|
|
86
|
+
transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.fade-enter-from,
|
|
90
|
+
.fade-leave-to {
|
|
91
|
+
opacity: 0;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
#loading-screen {
|
|
95
|
+
display: flex;
|
|
96
|
+
position: fixed;
|
|
97
|
+
top: 0;
|
|
98
|
+
left: 0;
|
|
99
|
+
flex-direction: column;
|
|
100
|
+
justify-content: center;
|
|
101
|
+
align-items: center;
|
|
102
|
+
width: 100%;
|
|
103
|
+
height: 100vh;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.loading-container {
|
|
107
|
+
display: grid;
|
|
108
|
+
container-type: size;
|
|
109
|
+
width: 100%;
|
|
110
|
+
height: 100vh;
|
|
111
|
+
}
|
|
112
|
+
|
|
132
113
|
.loading-progress {
|
|
133
|
-
place-self:
|
|
134
|
-
|
|
114
|
+
place-self: center;
|
|
115
|
+
font-weight: 900;
|
|
116
|
+
font-stretch: ultra-expanded;
|
|
117
|
+
font-size: clamp(3rem, 35cqw + 1rem, 18rem);
|
|
118
|
+
font-family:
|
|
119
|
+
system-ui,
|
|
120
|
+
-apple-system,
|
|
121
|
+
BlinkMacSystemFont,
|
|
122
|
+
'Segoe UI',
|
|
123
|
+
Roboto,
|
|
124
|
+
'Helvetica Neue',
|
|
125
|
+
Arial,
|
|
126
|
+
sans-serif;
|
|
127
|
+
text-align: center;
|
|
128
|
+
/* stylelint-disable-next-line function-disallowed-list */
|
|
129
|
+
text-shadow: 0 0 20px rgb(0 0 0 / 0.3);
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
@media (width >= 768px) {
|
|
133
|
+
.loading-progress {
|
|
134
|
+
place-self: end start;
|
|
135
|
+
padding: 2rem;
|
|
136
|
+
}
|
|
135
137
|
}
|
|
136
|
-
}
|
|
137
138
|
</style>
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
/* eslint-disable no-restricted-syntax */
|
|
2
|
+
/* eslint-disable @typescript-eslint/ban-ts-comment */
|
|
1
3
|
// @ts-nocheck
|
|
2
|
-
|
|
4
|
+
|
|
3
5
|
// composables/useCache.ts
|
|
4
6
|
import { useOnline } from '@vueuse/core'
|
|
5
7
|
|
|
@@ -34,7 +36,7 @@ export function useCache() {
|
|
|
34
36
|
try {
|
|
35
37
|
const cache = await caches.open('workbox-precache-v2')
|
|
36
38
|
const response = await cache.match(url)
|
|
37
|
-
return
|
|
39
|
+
return Boolean(response)
|
|
38
40
|
} catch (error) {
|
|
39
41
|
console.warn('[useCache] Failed to check cache:', error)
|
|
40
42
|
return false
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/* eslint-disable no-restricted-syntax */
|
|
2
|
+
/* eslint-disable @typescript-eslint/no-unused-expressions */
|
|
1
3
|
/**
|
|
2
4
|
* Error logging composable for tracking and reporting errors
|
|
3
5
|
*
|
|
@@ -20,7 +22,7 @@
|
|
|
20
22
|
* ```
|
|
21
23
|
*/
|
|
22
24
|
|
|
23
|
-
export
|
|
25
|
+
export type ErrorContext = {
|
|
24
26
|
/** Component name where error occurred */
|
|
25
27
|
component?: string
|
|
26
28
|
/** Additional context information */
|
|
@@ -33,7 +35,7 @@ export interface ErrorContext {
|
|
|
33
35
|
[key: string]: unknown
|
|
34
36
|
}
|
|
35
37
|
|
|
36
|
-
export
|
|
38
|
+
export type ErrorLogConfig = {
|
|
37
39
|
/** Enable console logging in development */
|
|
38
40
|
logToConsole?: boolean
|
|
39
41
|
/** Enable external error service logging */
|
|
@@ -72,13 +74,12 @@ export function useErrorLog() {
|
|
|
72
74
|
|
|
73
75
|
// Console logging (development only by default)
|
|
74
76
|
if (config.value.logToConsole && import.meta.dev && process.env.NODE_ENV === 'development') {
|
|
75
|
-
// eslint-disable-next-line no-console
|
|
76
77
|
console.group('🔴 Error Logged')
|
|
77
|
-
|
|
78
|
+
|
|
78
79
|
console.error('Error:', errorObj)
|
|
79
|
-
|
|
80
|
+
|
|
80
81
|
console.log('Context:', fullContext)
|
|
81
|
-
|
|
82
|
+
|
|
82
83
|
console.groupEnd()
|
|
83
84
|
}
|
|
84
85
|
|
|
@@ -95,7 +96,6 @@ export function useErrorLog() {
|
|
|
95
96
|
const { externalUrl, externalToken } = config.value
|
|
96
97
|
|
|
97
98
|
if (!externalUrl) {
|
|
98
|
-
// eslint-disable-next-line no-console
|
|
99
99
|
process.env.NODE_ENV === 'development'
|
|
100
100
|
? console.warn('Error logging enabled but no externalUrl configured')
|
|
101
101
|
: ''
|
|
@@ -121,7 +121,6 @@ export function useErrorLog() {
|
|
|
121
121
|
} catch (loggingError) {
|
|
122
122
|
// Don't let logging errors crash the app
|
|
123
123
|
if (import.meta.dev) {
|
|
124
|
-
// eslint-disable-next-line no-console
|
|
125
124
|
process.env.NODE_ENV === 'development'
|
|
126
125
|
? console.error('Failed to send error to external service:', loggingError)
|
|
127
126
|
: ''
|
|
@@ -134,7 +133,6 @@ export function useErrorLog() {
|
|
|
134
133
|
*/
|
|
135
134
|
const logWarning = (message: string, context?: ErrorContext) => {
|
|
136
135
|
if (config.value.logToConsole && import.meta.dev) {
|
|
137
|
-
// eslint-disable-next-line no-console
|
|
138
136
|
process.env.NODE_ENV === 'development' ? console.warn('⚠️ Warning:', message, context) : ''
|
|
139
137
|
}
|
|
140
138
|
}
|
|
@@ -144,7 +142,6 @@ export function useErrorLog() {
|
|
|
144
142
|
*/
|
|
145
143
|
const logInfo = (message: string, data?: unknown) => {
|
|
146
144
|
if (config.value.logToConsole && import.meta.dev) {
|
|
147
|
-
// eslint-disable-next-line no-console
|
|
148
145
|
process.env.NODE_ENV === 'development' ? console.log('ℹ️ Info:', message, data) : ''
|
|
149
146
|
}
|
|
150
147
|
}
|
|
@@ -1,12 +1,14 @@
|
|
|
1
|
+
/* eslint-disable no-restricted-syntax */
|
|
2
|
+
/* eslint-disable @typescript-eslint/ban-ts-comment */
|
|
1
3
|
// @ts-nocheck
|
|
2
4
|
// composables/useFeatures.ts
|
|
5
|
+
import type { FeatureDetection } from '#layers/core/app/types/detection'
|
|
3
6
|
import {
|
|
4
7
|
usePreferredContrast,
|
|
5
8
|
usePreferredDark,
|
|
6
9
|
usePreferredReducedMotion,
|
|
7
10
|
useSessionStorage,
|
|
8
11
|
} from '@vueuse/core'
|
|
9
|
-
import type { FeatureDetection } from '#layers/core/app/types/detection'
|
|
10
12
|
|
|
11
13
|
/**
|
|
12
14
|
* Check if CSS feature is supported
|
|
@@ -97,7 +99,7 @@ function detectFeatures(): FeatureDetection {
|
|
|
97
99
|
intersectionObserver: checkAPI('IntersectionObserver'),
|
|
98
100
|
resizeObserver: checkAPI('ResizeObserver'),
|
|
99
101
|
serviceWorker: 'serviceWorker' in navigator,
|
|
100
|
-
webGL:
|
|
102
|
+
webGL: Boolean(
|
|
101
103
|
document.createElement('canvas').getContext('webgl') ||
|
|
102
104
|
document.createElement('canvas').getContext('experimental-webgl')
|
|
103
105
|
),
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/consistent-type-assertions */
|
|
1
2
|
/**
|
|
2
3
|
* PWA composable for managing Progressive Web App functionality
|
|
3
4
|
*
|
|
@@ -95,10 +96,10 @@ export function usePWAInfo() {
|
|
|
95
96
|
/**
|
|
96
97
|
* Type definition for beforeinstallprompt event
|
|
97
98
|
*/
|
|
98
|
-
|
|
99
|
-
prompt()
|
|
99
|
+
type BeforeInstallPromptEvent = {
|
|
100
|
+
prompt: () => Promise<void>
|
|
100
101
|
userChoice: Promise<{
|
|
101
102
|
outcome: 'accepted' | 'dismissed'
|
|
102
103
|
platform: string
|
|
103
104
|
}>
|
|
104
|
-
}
|
|
105
|
+
} & Event
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* eslint-disable no-restricted-syntax */
|
|
1
2
|
// composables/useScrollGuard.ts
|
|
2
3
|
|
|
3
4
|
import type { ScrollGuardConfig } from '#layers/core/app/types/scroll-guard'
|
|
@@ -6,7 +7,7 @@ import { debounce } from '#layers/core/app/utils/helpers'
|
|
|
6
7
|
/**
|
|
7
8
|
* Original inline styles stored per element so we can restore them on disable
|
|
8
9
|
*/
|
|
9
|
-
|
|
10
|
+
type SavedStyles = {
|
|
10
11
|
transition: string
|
|
11
12
|
maxWidth: string
|
|
12
13
|
boxSizing: string
|
|
@@ -1,111 +1,111 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
|
-
// Type definition for notFound config
|
|
3
|
-
interface NotFoundConfig {
|
|
4
|
-
icon?: string
|
|
5
|
-
title?: string
|
|
6
|
-
description?: string
|
|
7
|
-
showPath?: boolean
|
|
8
|
-
showHomeButton?: boolean
|
|
9
|
-
homeButtonLabel?: string
|
|
10
|
-
homeButtonTo?: string
|
|
11
|
-
showBackButton?: boolean
|
|
12
|
-
backButtonLabel?: string
|
|
13
|
-
actions?: Array<{
|
|
14
|
-
label: string
|
|
15
|
-
to?: string
|
|
2
|
+
// Type definition for notFound config
|
|
3
|
+
interface NotFoundConfig {
|
|
16
4
|
icon?: string
|
|
17
|
-
color?: 'primary' | 'neutral' | 'error' | 'success'
|
|
18
|
-
variant?: 'solid' | 'outline' | 'ghost' | 'soft'
|
|
19
|
-
click?: () => void
|
|
20
|
-
}>
|
|
21
|
-
suggestions?: {
|
|
22
|
-
enabled?: boolean
|
|
23
5
|
title?: string
|
|
24
|
-
|
|
6
|
+
description?: string
|
|
7
|
+
showPath?: boolean
|
|
8
|
+
showHomeButton?: boolean
|
|
9
|
+
homeButtonLabel?: string
|
|
10
|
+
homeButtonTo?: string
|
|
11
|
+
showBackButton?: boolean
|
|
12
|
+
backButtonLabel?: string
|
|
13
|
+
actions?: Array<{
|
|
25
14
|
label: string
|
|
26
|
-
to
|
|
15
|
+
to?: string
|
|
27
16
|
icon?: string
|
|
17
|
+
color?: 'primary' | 'neutral' | 'error' | 'success'
|
|
18
|
+
variant?: 'solid' | 'outline' | 'ghost' | 'soft'
|
|
19
|
+
click?: () => void
|
|
28
20
|
}>
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
// Route information
|
|
40
|
-
const route = useRoute()
|
|
41
|
-
const router = useRouter()
|
|
42
|
-
const attemptedPath = computed(() => route.path)
|
|
43
|
-
|
|
44
|
-
// Visual configuration with defaults
|
|
45
|
-
const icon = computed(() => config.value.icon || 'i-lucide-file-question')
|
|
46
|
-
const title = computed(() => config.value.title || 'Page Not Found')
|
|
47
|
-
const description = computed(
|
|
48
|
-
() => config.value.description || "The page you're looking for doesn't exist or has been moved."
|
|
49
|
-
)
|
|
50
|
-
|
|
51
|
-
// Action buttons
|
|
52
|
-
const homeButton = computed(() => ({
|
|
53
|
-
enabled: config.value.showHomeButton !== false,
|
|
54
|
-
label: config.value.homeButtonLabel || 'Go Home',
|
|
55
|
-
to: config.value.homeButtonTo || '/',
|
|
56
|
-
icon: 'i-lucide-home',
|
|
57
|
-
}))
|
|
58
|
-
|
|
59
|
-
const backButton = computed(() => ({
|
|
60
|
-
enabled: config.value.showBackButton !== false,
|
|
61
|
-
label: config.value.backButtonLabel || 'Go Back',
|
|
62
|
-
icon: 'i-lucide-arrow-left',
|
|
63
|
-
}))
|
|
64
|
-
|
|
65
|
-
// Combine all actions (built-in + custom from config)
|
|
66
|
-
const allActions = computed(() => {
|
|
67
|
-
const actions = []
|
|
68
|
-
|
|
69
|
-
if (homeButton.value.enabled) {
|
|
70
|
-
actions.push({
|
|
71
|
-
label: homeButton.value.label,
|
|
72
|
-
to: homeButton.value.to,
|
|
73
|
-
icon: homeButton.value.icon,
|
|
74
|
-
color: 'primary',
|
|
75
|
-
variant: 'solid',
|
|
76
|
-
})
|
|
21
|
+
suggestions?: {
|
|
22
|
+
enabled?: boolean
|
|
23
|
+
title?: string
|
|
24
|
+
links?: Array<{
|
|
25
|
+
label: string
|
|
26
|
+
to: string
|
|
27
|
+
icon?: string
|
|
28
|
+
}>
|
|
29
|
+
}
|
|
77
30
|
}
|
|
78
31
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
32
|
+
// App configuration
|
|
33
|
+
const appConfig = useAppConfig()
|
|
34
|
+
const config = computed(() => {
|
|
35
|
+
const coreLayer = appConfig.coreLayer as { notFound?: NotFoundConfig } | undefined
|
|
36
|
+
return (coreLayer?.notFound ?? {}) as NotFoundConfig
|
|
37
|
+
})
|
|
38
|
+
|
|
39
|
+
// Route information
|
|
40
|
+
const route = useRoute()
|
|
41
|
+
const router = useRouter()
|
|
42
|
+
const attemptedPath = computed(() => route.path)
|
|
43
|
+
|
|
44
|
+
// Visual configuration with defaults
|
|
45
|
+
const icon = computed(() => config.value.icon || 'i-lucide-file-question')
|
|
46
|
+
const title = computed(() => config.value.title || 'Page Not Found')
|
|
47
|
+
const description = computed(
|
|
48
|
+
() => config.value.description || "The page you're looking for doesn't exist or has been moved."
|
|
49
|
+
)
|
|
50
|
+
|
|
51
|
+
// Action buttons
|
|
52
|
+
const homeButton = computed(() => ({
|
|
53
|
+
enabled: config.value.showHomeButton !== false,
|
|
54
|
+
label: config.value.homeButtonLabel || 'Go Home',
|
|
55
|
+
to: config.value.homeButtonTo || '/',
|
|
56
|
+
icon: 'i-lucide-home',
|
|
57
|
+
}))
|
|
58
|
+
|
|
59
|
+
const backButton = computed(() => ({
|
|
60
|
+
enabled: config.value.showBackButton !== false,
|
|
61
|
+
label: config.value.backButtonLabel || 'Go Back',
|
|
62
|
+
icon: 'i-lucide-arrow-left',
|
|
63
|
+
}))
|
|
64
|
+
|
|
65
|
+
// Combine all actions (built-in + custom from config)
|
|
66
|
+
const allActions = computed(() => {
|
|
67
|
+
const actions = []
|
|
68
|
+
|
|
69
|
+
if (homeButton.value.enabled) {
|
|
70
|
+
actions.push({
|
|
71
|
+
label: homeButton.value.label,
|
|
72
|
+
to: homeButton.value.to,
|
|
73
|
+
icon: homeButton.value.icon,
|
|
74
|
+
color: 'primary',
|
|
75
|
+
variant: 'solid',
|
|
76
|
+
})
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
if (backButton.value.enabled) {
|
|
80
|
+
actions.push({
|
|
81
|
+
label: backButton.value.label,
|
|
82
|
+
icon: backButton.value.icon,
|
|
83
|
+
color: 'neutral',
|
|
84
|
+
variant: 'outline',
|
|
85
|
+
click: () => router.back(),
|
|
86
|
+
})
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
return [...actions, ...(config.value.actions || [])]
|
|
90
|
+
})
|
|
91
|
+
|
|
92
|
+
// Suggestions configuration
|
|
93
|
+
const suggestions = computed(() => config.value.suggestions || {})
|
|
94
|
+
const showSuggestions = computed(
|
|
95
|
+
() => suggestions.value.enabled && (suggestions.value.links?.length ?? 0) > 0
|
|
96
|
+
)
|
|
97
|
+
|
|
98
|
+
// SEO & Status Code
|
|
99
|
+
useSeoMeta({
|
|
100
|
+
title: '404 - Page Not Found',
|
|
101
|
+
description: 'The page you are looking for could not be found.',
|
|
102
|
+
robots: 'noindex, nofollow',
|
|
103
|
+
})
|
|
104
|
+
|
|
105
|
+
// Set 404 status code
|
|
106
|
+
if (import.meta.server) {
|
|
107
|
+
setResponseStatus(404)
|
|
87
108
|
}
|
|
88
|
-
|
|
89
|
-
return [...actions, ...(config.value.actions || [])]
|
|
90
|
-
})
|
|
91
|
-
|
|
92
|
-
// Suggestions configuration
|
|
93
|
-
const suggestions = computed(() => config.value.suggestions || {})
|
|
94
|
-
const showSuggestions = computed(
|
|
95
|
-
() => suggestions.value.enabled && (suggestions.value.links?.length ?? 0) > 0
|
|
96
|
-
)
|
|
97
|
-
|
|
98
|
-
// SEO & Status Code
|
|
99
|
-
useSeoMeta({
|
|
100
|
-
title: '404 - Page Not Found',
|
|
101
|
-
description: 'The page you are looking for could not be found.',
|
|
102
|
-
robots: 'noindex, nofollow',
|
|
103
|
-
})
|
|
104
|
-
|
|
105
|
-
// Set 404 status code
|
|
106
|
-
if (import.meta.server) {
|
|
107
|
-
setResponseStatus(404)
|
|
108
|
-
}
|
|
109
109
|
</script>
|
|
110
110
|
|
|
111
111
|
<template>
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* eslint-disable no-restricted-syntax */
|
|
1
2
|
export default defineNuxtPlugin((nuxtApp) => {
|
|
2
3
|
const { logError } = useErrorLog()
|
|
3
4
|
|
|
@@ -40,7 +41,6 @@ export default defineNuxtPlugin((nuxtApp) => {
|
|
|
40
41
|
// Handle page errors
|
|
41
42
|
nuxtApp.hook('app:error:cleared', () => {
|
|
42
43
|
if (import.meta.dev) {
|
|
43
|
-
// eslint-disable-next-line no-console
|
|
44
44
|
console.log('✅ Error cleared')
|
|
45
45
|
}
|
|
46
46
|
})
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/* eslint-disable no-restricted-syntax */
|
|
2
|
+
/* eslint-disable @typescript-eslint/ban-ts-comment */
|
|
1
3
|
// @ts-nocheck
|
|
2
4
|
// plugins/feature-detection.client.ts
|
|
3
5
|
|
|
@@ -17,7 +19,6 @@ export default defineNuxtPlugin(() => {
|
|
|
17
19
|
const features = useFeatures()
|
|
18
20
|
|
|
19
21
|
if (import.meta.dev && process.env.NODE_ENV === 'development') {
|
|
20
|
-
// eslint-disable-next-line no-console
|
|
21
22
|
console.log('[Feature Detection] Initialized:', {
|
|
22
23
|
grid: features.grid.value,
|
|
23
24
|
subgrid: features.subgrid.value,
|