oops-ui 0.0.13 → 1.0.0

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.
Files changed (172) hide show
  1. package/LICENSE +13 -1
  2. package/README.md +139 -0
  3. package/client.mjs +10 -0
  4. package/client.mjs.map +1 -0
  5. package/index.mjs +3 -0
  6. package/layoutUtil.mjs +10 -0
  7. package/layoutUtil.mjs.map +1 -0
  8. package/package.json +57 -108
  9. package/server.mjs +8 -0
  10. package/server.mjs.map +1 -0
  11. package/styles/common.css +1 -0
  12. package/styles/common.scss +131 -0
  13. package/styles/flex.scss +38 -0
  14. package/styles/header.scss +54 -0
  15. package/styles/image.scss +10 -0
  16. package/styles/input.scss +131 -0
  17. package/styles/loading-keyframes.scss +242 -0
  18. package/styles/reset.css +1 -0
  19. package/styles/reset.scss +94 -0
  20. package/styles/respond.scss +54 -0
  21. package/styles/root-normal-dark.scss +85 -0
  22. package/styles/root-normal-light.scss +83 -0
  23. package/styles/root-weird-dark.scss +1 -0
  24. package/styles/root.scss +326 -0
  25. package/styles/text.scss +61 -0
  26. package/styles/vars-color.scss +295 -0
  27. package/styles/vars-size.scss +6 -0
  28. package/type/components/ThemeContext/index.d.ts +25 -0
  29. package/type/components/ThemeContext/types.d.ts +28 -0
  30. package/type/components/button/button.d.ts +10 -0
  31. package/type/components/button/index.d.ts +9 -0
  32. package/type/components/image/index.d.ts +11 -0
  33. package/type/components/image/types.d.ts +13 -0
  34. package/type/components/image/useSrcChange.d.ts +11 -0
  35. package/type/components/layout/content.d.ts +17 -0
  36. package/type/components/layout/footer.d.ts +21 -0
  37. package/type/components/layout/get-value.d.ts +10 -0
  38. package/type/components/layout/header.d.ts +23 -0
  39. package/type/components/layout/index.d.ts +8 -0
  40. package/type/components/layout/is-fragment.d.ts +9 -0
  41. package/type/components/layout/layout.d.ts +55 -0
  42. package/type/components/layout/sidebar.d.ts +29 -0
  43. package/type/components/layout/types.d.ts +101 -0
  44. package/type/components/marquee/MarqueeEle.d.ts +15 -0
  45. package/type/components/marquee/index.d.ts +7 -0
  46. package/type/components/marquee/type.d.ts +9 -0
  47. package/type/components/menu/index.d.ts +6 -0
  48. package/type/components/menu/menu.d.ts +6 -0
  49. package/type/components/ripples/Content.d.ts +8 -0
  50. package/type/components/ripples/LazyRippleEle.d.ts +42 -0
  51. package/type/components/ripples/RipplesEle.d.ts +42 -0
  52. package/type/components/ripples/index.d.ts +11 -0
  53. package/type/components/ripples/types.d.ts +17 -0
  54. package/type/components/ripples/useOptionUpdate.d.ts +12 -0
  55. package/type/components/shared/EnLayoutContent/index.d.ts +19 -0
  56. package/type/components/shared/EnLayoutContent/types.d.ts +17 -0
  57. package/type/components/switch/SwitchContainer.d.ts +7 -0
  58. package/type/components/switch/SwitchContent.d.ts +10 -0
  59. package/type/components/switch/SwitchLabel.d.ts +9 -0
  60. package/type/components/switch/index.d.ts +14 -0
  61. package/type/customHooks/use-xcn/index.d.ts +14 -0
  62. package/type/customHooks/useAnimationFrame.d.ts +58 -0
  63. package/type/customHooks/useInputIsComposing.d.ts +44 -0
  64. package/type/customHooks/useRipples/buildBackground/create-background-color.d.ts +9 -0
  65. package/type/customHooks/useRipples/buildBackground/create-linear-gradient.d.ts +9 -0
  66. package/type/customHooks/useRipples/buildBackground/default-background/_createImageData.d.ts +13 -0
  67. package/type/customHooks/useRipples/buildBackground/default-background/circleDataList.d.ts +24 -0
  68. package/type/customHooks/useRipples/buildBackground/default-background/createCanvasElementBySize.d.ts +8 -0
  69. package/type/customHooks/useRipples/buildBackground/default-background/createDefault.d.ts +8 -0
  70. package/type/customHooks/useRipples/buildBackground/default-background/index.d.ts +18 -0
  71. package/type/customHooks/useRipples/buildBackground/load-image.d.ts +19 -0
  72. package/type/customHooks/useRipples/buildBackground/run-side.d.ts +15 -0
  73. package/type/customHooks/useRipples/buildBackground/type.d.ts +37 -0
  74. package/type/customHooks/useRipples/buildBackground/utils/bind-image.d.ts +10 -0
  75. package/type/customHooks/useRipples/buildBackground/utils/create-canvas-element.d.ts +9 -0
  76. package/type/customHooks/useRipples/buildBackground/utils/create-image-by-src.d.ts +8 -0
  77. package/type/customHooks/useRipples/buildBackground/utils/get-background-style.d.ts +9 -0
  78. package/type/customHooks/useRipples/buildBackground/utils/hide-css-background.d.ts +16 -0
  79. package/type/customHooks/useRipples/buildBackground/utils/restore-css-background.d.ts +13 -0
  80. package/type/customHooks/useRipples/callback/can-side.d.ts +14 -0
  81. package/type/customHooks/useRipples/callback/destroy.d.ts +9 -0
  82. package/type/customHooks/useRipples/callback/drop.d.ts +9 -0
  83. package/type/customHooks/useRipples/callback/extract-url.d.ts +8 -0
  84. package/type/customHooks/useRipples/callback/fade.d.ts +9 -0
  85. package/type/customHooks/useRipples/callback/get-new-image.d.ts +14 -0
  86. package/type/customHooks/useRipples/callback/reload-background.d.ts +12 -0
  87. package/type/customHooks/useRipples/callback/scale.d.ts +8 -0
  88. package/type/customHooks/useRipples/index.d.ts +45 -0
  89. package/type/customHooks/useRipples/init/index.d.ts +11 -0
  90. package/type/customHooks/useRipples/init/initEvent.d.ts +11 -0
  91. package/type/customHooks/useRipples/init/initShaders.d.ts +13 -0
  92. package/type/customHooks/useRipples/init/initTexture.d.ts +13 -0
  93. package/type/customHooks/useRipples/render/computeTextureBoundaries.d.ts +9 -0
  94. package/type/customHooks/useRipples/render/draw.d.ts +13 -0
  95. package/type/customHooks/useRipples/render/drawQuad.d.ts +13 -0
  96. package/{dist/types → type}/customHooks/useRipples/render/dropAtPointer.d.ts +8 -2
  97. package/type/customHooks/useRipples/render/index.d.ts +12 -0
  98. package/type/customHooks/useRipples/render/swapBufferIndices.d.ts +11 -0
  99. package/type/customHooks/useRipples/render/update.d.ts +11 -0
  100. package/type/customHooks/useRipples/rippersData/defaultData.d.ts +11 -0
  101. package/type/customHooks/useRipples/rippersData/fadeData.d.ts +51 -0
  102. package/{dist/types → type}/customHooks/useRipples/rippersData/index.d.ts +24 -18
  103. package/{dist/types → type}/customHooks/useRipples/rippersData/loadConfig.d.ts +12 -2
  104. package/type/customHooks/useRipples/rippersData/renderData.d.ts +80 -0
  105. package/type/customHooks/useRipples/rippersData/useOptions.d.ts +91 -0
  106. package/{dist/types → type}/customHooks/useRipples/rippersData/vertexSource.d.ts +17 -11
  107. package/type/customHooks/useRipples/ripple.html.d.ts +12 -0
  108. package/type/customHooks/useRipples/ripplesClass.d.ts +57 -0
  109. package/{dist/types → type}/customHooks/useRipples/tools.d.ts +18 -8
  110. package/type/customHooks/useRipples/types.d.ts +209 -0
  111. package/type/customHooks/useRipples/use-lazy-ripple.d.ts +15 -0
  112. package/{dist/types → type}/customHooks/useTimeId.d.ts +10 -6
  113. package/type/dog.d.ts +8 -0
  114. package/type/index.client.d.ts +20 -0
  115. package/type/index.d.ts +8 -0
  116. package/type/index.server.d.ts +8 -0
  117. package/type/storage/main-logic .d.ts +26 -0
  118. package/type/storage/storage-store.d.ts +14 -0
  119. package/type/utilities/cookie.d.ts +21 -0
  120. package/type/utilities/sys.d.ts +41 -0
  121. package/ReadMe.md +0 -17
  122. package/dist/BackgroundRipple/index.cjs +0 -1
  123. package/dist/BackgroundRipple/index.mjs +0 -1
  124. package/dist/index.cjs +0 -1
  125. package/dist/index.js +0 -1
  126. package/dist/index.mjs +0 -1
  127. package/dist/styles/common.css +0 -353
  128. package/dist/styles/common.scss +0 -504
  129. package/dist/types/components/button/button.d.ts +0 -2
  130. package/dist/types/components/button/index.d.ts +0 -3
  131. package/dist/types/components/button/style/index.d.ts +0 -1
  132. package/dist/types/components/index.d.ts +0 -1
  133. package/dist/types/components/layout/header.d.ts +0 -4
  134. package/dist/types/components/layout/index.d.ts +0 -0
  135. package/dist/types/components/layout/interface.d.ts +0 -8
  136. package/dist/types/components/layout/layout.d.ts +0 -14
  137. package/dist/types/components/menu/index.d.ts +0 -0
  138. package/dist/types/components/menu/menu.d.ts +0 -0
  139. package/dist/types/components/menu/style/index.d.ts +0 -0
  140. package/dist/types/components/ripples/RipplesEle.d.ts +0 -33
  141. package/dist/types/components/ripples/index.d.ts +0 -2
  142. package/dist/types/components/ripples/style/index.d.ts +0 -0
  143. package/dist/types/customHooks/index.d.ts +0 -5
  144. package/dist/types/customHooks/useAnimationFrame.d.ts +0 -41
  145. package/dist/types/customHooks/useInputIsComposing.d.ts +0 -45
  146. package/dist/types/customHooks/useRipples/defaultData.d.ts +0 -5
  147. package/dist/types/customHooks/useRipples/index.d.ts +0 -46
  148. package/dist/types/customHooks/useRipples/init/hideCssBackground.d.ts +0 -9
  149. package/dist/types/customHooks/useRipples/init/initEvent.d.ts +0 -5
  150. package/dist/types/customHooks/useRipples/init/initGL.d.ts +0 -5
  151. package/dist/types/customHooks/useRipples/init/initShaders.d.ts +0 -7
  152. package/dist/types/customHooks/useRipples/init/initTexture.d.ts +0 -7
  153. package/dist/types/customHooks/useRipples/init/loadImage.d.ts +0 -13
  154. package/dist/types/customHooks/useRipples/render/computeTextureBoundaries.d.ts +0 -7
  155. package/dist/types/customHooks/useRipples/render/drawQuad.d.ts +0 -7
  156. package/dist/types/customHooks/useRipples/render/render.d.ts +0 -7
  157. package/dist/types/customHooks/useRipples/render/step.d.ts +0 -6
  158. package/dist/types/customHooks/useRipples/render/swapBufferIndices.d.ts +0 -2
  159. package/dist/types/customHooks/useRipples/render/update.d.ts +0 -2
  160. package/dist/types/customHooks/useRipples/rippersData/createImageData.d.ts +0 -4
  161. package/dist/types/customHooks/useRipples/rippersData/renderData.d.ts +0 -85
  162. package/dist/types/customHooks/useRipples/ripple.html.d.ts +0 -3
  163. package/dist/types/customHooks/useRipples/ripplesClass.d.ts +0 -120
  164. package/dist/types/index.d.ts +0 -3
  165. package/dist/useAnimationFrame/index.cjs +0 -1
  166. package/dist/useAnimationFrame/index.mjs +0 -1
  167. package/dist/useInputIsComposing/index.cjs +0 -1
  168. package/dist/useInputIsComposing/index.mjs +0 -1
  169. package/dist/useRipples/index.cjs +0 -1
  170. package/dist/useRipples/index.mjs +0 -1
  171. package/dist/useTimeId/index.cjs +0 -1
  172. package/dist/useTimeId/index.mjs +0 -1
@@ -1,46 +0,0 @@
1
- import { BackgroundRipplesProps, RipplesOptions } from './types';
2
- import { Ripples } from './ripplesClass';
3
- /**************************************
4
- *
5
- * ## 使用绘制 ripples 上一层
6
- *
7
- *
8
- * @param canvas `usrRef` 包裹的 `HTMLCanvasElement`,用于绘制图像
9
- * @param props 初始化的
10
- * @version 0.0.3
11
- * @see https://lmssee.com/oops-ui/use-ripples
12
- * @see JQuery https://github.com/sirxemic/jquery.ripples
13
- * @example
14
- *
15
- * 下面是在 <BackgroundRipple> 中使用
16
- *
17
- * ```ts
18
- * import { useRipples } from 'oops-ui/useRipples';
19
- * // 也可以使用包全量导入
20
- * // import { useRipples } from 'oops-ui';
21
- *
22
- * export function BackgroundRipple(props: BackgroundRipplesProps) {
23
- *
24
- * // canvas 元素
25
- * const canvas = useRef<HTMLCanvasElement>(null);
26
- *
27
- * // 使用 ripples
28
- * const ripplesRef = useRipples(canvas, props);
29
- *
30
- * if (props.children) {
31
- * return (
32
- * <div style={props.style} className="lmssee-ripples">
33
- * {props.children}
34
- * <canvas ref={canvas}></canvas>
35
- * </div>
36
- * );
37
- * } else {
38
- * return <canvas ref={canvas}></canvas>;
39
- * }
40
- * }
41
- *
42
- * ```
43
- *
44
- **************************************/
45
- export declare function useRipples(canvas: React.RefObject<HTMLCanvasElement | null>, props?: BackgroundRipplesProps): React.RefObject<Ripples | null>;
46
- export type { Ripples, BackgroundRipplesProps, RipplesOptions };
@@ -1,9 +0,0 @@
1
- import { Ripples } from '../ripplesClass';
2
- /**************************
3
- * 隐藏背景
4
- **************************/
5
- export declare function hideCssBackground(this: Ripples): void;
6
- /**************************
7
- * 恢复背景样式
8
- **************************/
9
- export declare function restoreCssBackground(this: Ripples): void;
@@ -1,5 +0,0 @@
1
- import { Ripples } from '../ripplesClass';
2
- /**************************
3
- * 初始化事件
4
- **************************/
5
- export declare function setupPointerEvents(this: Ripples): void;
@@ -1,5 +0,0 @@
1
- import { Ripples } from '../ripplesClass';
2
- /**************************
3
- * 初始化 webGL
4
- **************************/
5
- export declare function initGL(this: Ripples): void;
@@ -1,7 +0,0 @@
1
- import { Ripples } from '../ripplesClass';
2
- /**************************************
3
- *
4
- * 初始化着色器
5
- *
6
- **************************************/
7
- export declare function initShaders(this: Ripples): void;
@@ -1,7 +0,0 @@
1
- import { Ripples } from '../ripplesClass';
2
- /**************************************
3
- *
4
- * 初始化纹理
5
- *
6
- **************************************/
7
- export declare function initTexture(this: Ripples): void;
@@ -1,13 +0,0 @@
1
- import { Ripples } from '../ripplesClass';
2
- /**************************************
3
- *
4
- * 加载
5
- *
6
- **************************************/
7
- export declare function loadImage(this: Ripples): void;
8
- /**************************************
9
- *
10
- * 设置透明的纹理
11
- *
12
- **************************************/
13
- export declare function setTransparentTexture(this: Ripples): void;
@@ -1,7 +0,0 @@
1
- import { Ripples } from '../ripplesClass';
2
- /**************************************
3
- *
4
- * 计算纹理边界
5
- *
6
- **************************************/
7
- export declare function computeTextureBoundaries(this: Ripples): void;
@@ -1,7 +0,0 @@
1
- import { Ripples } from '../ripplesClass';
2
- /**************************************
3
- *
4
- * 绘制 GL 数据流
5
- *
6
- **************************************/
7
- export declare function drawQuad(this: Ripples): void;
@@ -1,7 +0,0 @@
1
- import { Ripples } from '../ripplesClass';
2
- /**************************************
3
- *
4
- * 绘制
5
- *
6
- **************************************/
7
- export declare function render(this: Ripples): void;
@@ -1,6 +0,0 @@
1
- import { Ripples } from '../ripplesClass';
2
- /**************************
3
- * 开启绘制
4
- *
5
- **************************/
6
- export declare function step(this: Ripples): void;
@@ -1,2 +0,0 @@
1
- import { Ripples } from '../ripplesClass';
2
- export declare function swapBufferIndices(this: Ripples): void;
@@ -1,2 +0,0 @@
1
- import { Ripples } from '../ripplesClass';
2
- export declare function update(this: Ripples): void;
@@ -1,4 +0,0 @@
1
- /**************************
2
- * 创建一个隐含像素数据的区域
3
- **************************/
4
- export declare function createImageData(width: number, height: number): ImageData;
@@ -1,85 +0,0 @@
1
- import { Program, RipplesDefaultData, Textures } from '../types';
2
- /**************************************
3
- *
4
- * 原始数据类
5
- *
6
- **************************************/
7
- export declare class RipplesRenderData {
8
- /** canvas 的显隐 */
9
- visible: boolean;
10
- /** 当前执行的状态 */
11
- running: boolean;
12
- /** 扰动系数 */
13
- perturbance: number;
14
- /** */
15
- resolution: number;
16
- /** 雨滴醉落的时间间隔 */
17
- raindropsTimeInterval: number;
18
- /** 渲染 id */
19
- animationFrameId: number;
20
- /** 渲染数据流
21
- *
22
- * 该值在 init 中进行初始化
23
- */
24
- quad: WebGLBuffer;
25
- /**************************
26
- * 上一次雨滴滴落的时间
27
- *
28
- * 该时间更新触发时机:
29
- * - 2.2s 内没有事件触发
30
- * - 鼠标交互更新
31
- **************************/
32
- lastRaindropsFallTime: number;
33
- /** canvas 父级元素 */
34
- parentElement: HTMLElement;
35
- /** 背景页面的数据 */
36
- backgroundInfo: {
37
- width: number;
38
- height: number;
39
- };
40
- /**************************
41
- *
42
- * 该值于初始化着色器时初始化
43
- **************************/
44
- dropProgram: Program;
45
- /**************************
46
- *
47
- **************************/
48
- updateProgram: Program;
49
- /** 纹理 */
50
- textures: Textures;
51
- /** 背景纹理 */
52
- backgroundTexture: WebGLTexture;
53
- /** 纹理数据 */
54
- textureDelta: Float32Array<ArrayBuffer>;
55
- /** */
56
- framebuffers: WebGLFramebuffer[];
57
- /** */
58
- bufferWriteIndex: number;
59
- /** */
60
- bufferReadIndex: number;
61
- /** 原始行内样式 */
62
- originalInlineCss: string;
63
- /** 原始 background-image 数据 */
64
- originalCssBackgroundImage: string;
65
- /**************************
66
- * 事件
67
- **************************/
68
- events: {
69
- mousemove: (e: MouseEvent) => void;
70
- mousedown: (e: MouseEvent) => void;
71
- touchmove: (e: TouchEvent) => void;
72
- touchstart: (e: TouchEvent) => void;
73
- };
74
- /** 触发倍效 */
75
- accelerating: number;
76
- constructor(defaultData: RipplesDefaultData);
77
- }
78
- /**************************************
79
- *
80
- * 渲染数仓
81
- *
82
- **************************************/
83
- export declare const ripplesRenderDataWarehouse: {
84
- [x: symbol]: RipplesRenderData;
85
- };
@@ -1,3 +0,0 @@
1
- import { Ripples } from './ripplesClass';
2
- import { RipplesOptions } from './types';
3
- export declare function useRipples(element: HTMLElement, options: RipplesOptions): Ripples;
@@ -1,120 +0,0 @@
1
- /****************************************************************************
2
- * @Author lmssee
3
- * @Email lmssee@outlook.com
4
- * @ProjectName website
5
- * @FileName ripples/index.ts
6
- * @CreateDate 周六 12/07/2024
7
- * @Description ripples 水涟漪效果
8
- ****************************************************************************/
9
- import { RipplesData } from './rippersData';
10
- import { Program, RipplesOptions } from './types';
11
- /**************************************
12
- *
13
- * ## 水波动涟漪的效果
14
- *
15
- *
16
- * 魔改自大佬的[代码](https://github.com/sirxemic/jquery.ripples)
17
- **************************************/
18
- export declare class Ripples extends RipplesData {
19
- #private;
20
- /**************************
21
- * 唯一标识
22
- *
23
- * 用于处理 Ripples 在实例化后数据交叉污染问题
24
- **************************/
25
- sole: symbol;
26
- /**************************
27
- *
28
- * 默认值
29
- *
30
- * - resolution 分辨率,纹理的尺寸,该项目中该值为纹理的宽和高,缺省为 `256`
31
- * - dropRadius 扩撒半径,缺省值为 `20`
32
- * - perturbance 扰动系数,缺省为 `0.03`
33
- * - interactive 光标交互,缺省为 `true` ,关闭须显示传入 `false` 值
34
- * - crossOrigin 原始样式
35
- * - imageUrl 原始背景图片地址
36
- * - playingState 当前的播放状态,缺省为 `true` ,设定为 `false` 时并不关闭,而是暂停
37
- * - accelerating 加速光标移动触发,缺省为 `1`
38
- * - raindropsTimeInterval 雨滴滴落的间隔,缺省为 `3600`,可设置区间为 `10 ~ 12000`
39
- * - idleFluctuations 闲置波动,在光标交互不触发时,将触发模拟雨滴,缺省为 `true`
40
- **************************/
41
- defaults: import("./types").RipplesDefaultData;
42
- /** 是否与鼠标互动 */
43
- interactive: boolean;
44
- /**************************
45
- * 倍级触发光标事件
46
- **************************/
47
- set accelerating(value: number);
48
- /** 分辨率
49
- *
50
- * 纹理的尺寸,该项目中该值为纹理的宽和高
51
- *
52
- */
53
- set resolution(value: number);
54
- /** 扰动系数 */
55
- set perturbance(value: number);
56
- /** 扩散半径 */
57
- dropRadius: number;
58
- /** 原始 css */
59
- crossOrigin: string;
60
- /** 传入的背景图片 */
61
- imageUrl: string | null;
62
- /** 闲置波动 */
63
- idleFluctuations: boolean;
64
- /** 当前播放的状态 */
65
- set playingState(value: boolean);
66
- /** 初始化状态 */
67
- get initialized(): boolean;
68
- imageSource: string;
69
- renderProgram: Program;
70
- set raindropsTimeInterval(value: number);
71
- constructor(canvas: HTMLCanvasElement, options?: RipplesOptions);
72
- /**************************
73
- * 模拟雨滴下落
74
- **************************/
75
- raindropsFall(): void;
76
- /**************************
77
- * 公共方法,触发
78
- **************************/
79
- drop(x: number, y: number, radius: number, strength: number): void;
80
- /**************************
81
- * 元素的尺寸发生变化
82
- **************************/
83
- updateSize(): void;
84
- /**************************
85
- * 销毁
86
- **************************/
87
- destroy(): void;
88
- /**************************
89
- * 展示元素
90
- *
91
- * - 设置状态
92
- * - 设置 canvas 元素展示
93
- * - 隐藏父级节点背景
94
- **************************/
95
- show(): void;
96
- /**************************
97
- * 隐藏元素
98
- *
99
- * - 设置状态
100
- * - 设置 canvas 元素隐藏
101
- * - 恢复父级节点背景
102
- **************************/
103
- hide(): void;
104
- /**************************
105
- * 暂停动画涟漪状态
106
- **************************/
107
- pause(): void;
108
- /**************************
109
- * 播放动画涟漪状态
110
- **************************/
111
- play(): void;
112
- /**************************
113
- * 切换当前状态
114
- **************************/
115
- changePlayingState(): void;
116
- /**************************
117
- * 给初始化变量赋值
118
- **************************/
119
- set(property: keyof RipplesOptions, value: unknown): void;
120
- }
@@ -1,3 +0,0 @@
1
- export { BackgroundRipple } from './components/index';
2
- export { useTimeId, useAnimationFrameId, useRipples, useInputIsComposing, } from './customHooks/index';
3
- export type { Ripples, BackgroundRipplesProps, RipplesOptions } from './customHooks/index';
@@ -1 +0,0 @@
1
- (()=>{"use strict";var e={953:e=>{e.exports=require("react")}},r={};function t(o){var n=r[o];if(void 0!==n)return n.exports;var u=r[o]={exports:{}};return e[o](u,u.exports,t),u.exports}t.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return t.d(r,{a:r}),r},t.d=(e,r)=>{for(var o in r)t.o(r,o)&&!t.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:r[o]})},t.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),t.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};t.r(o),t.d(o,{useAnimationFrameId:()=>u});var n=t(953);function u(){var e=(0,n.useRef)(0);return(0,n.useEffect)((function(){return function(){e.current&&window.cancelAnimationFrame(e.current)}}),[]),e}module.exports["oops-ui"]=o})();
@@ -1 +0,0 @@
1
- import*as e from"react";var r={649:(r,t,n)=>{var o,a;r.exports=(o={useEffect:()=>e.useEffect,useRef:()=>e.useRef},a={},n.d(a,o),a)}},t={};function n(e){var o=t[e];if(void 0!==o)return o.exports;var a=t[e]={exports:{}};return r[e](a,a.exports,n),a.exports}n.d=(e,r)=>{for(var t in r)n.o(r,t)&&!n.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},n.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r);var o={};n.d(o,{M:()=>u});var a=n(649);function u(){var e=(0,a.useRef)(0);return(0,a.useEffect)((function(){return function(){e.current&&window.cancelAnimationFrame(e.current)}}),[]),e}var f=o.M;export{f as useAnimationFrameId};
@@ -1 +0,0 @@
1
- (()=>{"use strict";var e={953:e=>{e.exports=require("react")}},r={};function t(o){var n=r[o];if(void 0!==n)return n.exports;var i=r[o]={exports:{}};return e[o](i,i.exports,t),i.exports}t.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return t.d(r,{a:r}),r},t.d=(e,r)=>{for(var o in r)t.o(r,o)&&!t.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:r[o]})},t.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),t.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};t.r(o),t.d(o,{useInputIsComposing:()=>i});var n=t(953);function i(e){var r=(0,n.useRef)(!1);return(0,n.useEffect)((function(){var t=e.current;if(t){var o=function(){return r.current=!0},n=function(){return r.current=!1};return t.addEventListener("compositionstart",o),t.addEventListener("compositionend",n),function(){t.removeEventListener("compositionstart",o),t.removeEventListener("compositionend",n)}}}),[]),r}module.exports["oops-ui"]=o})();
@@ -1 +0,0 @@
1
- import*as e from"react";var r={649:(r,t,n)=>{var o,s;r.exports=(o={useEffect:()=>e.useEffect,useRef:()=>e.useRef},s={},n.d(s,o),s)}},t={};function n(e){var o=t[e];if(void 0!==o)return o.exports;var s=t[e]={exports:{}};return r[e](s,s.exports,n),s.exports}n.d=(e,r)=>{for(var t in r)n.o(r,t)&&!n.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},n.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r);var o={};n.d(o,{t:()=>i});var s=n(649);function i(e){var r=(0,s.useRef)(!1);return(0,s.useEffect)((function(){var t=e.current;if(t){var n=function(){return r.current=!0},o=function(){return r.current=!1};return t.addEventListener("compositionstart",n),t.addEventListener("compositionend",o),function(){t.removeEventListener("compositionstart",n),t.removeEventListener("compositionend",o)}}}),[]),r}var u=o.t;export{u as useInputIsComposing};
@@ -1 +0,0 @@
1
- (()=>{"use strict";var e={953:e=>{e.exports=require("react")}},t={};function r(n){var i=t[n];if(void 0!==i)return i.exports;var o=t[n]={exports:{}};return e[n](o,o.exports,r),o.exports}r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var n={};r.r(n),r.d(n,{useRipples:()=>ee});var i=r(953);const o=require("a-element-inline-style");function a(e,t,r,n){function i(e,t){var n=r.createShader(e);if(r.shaderSource(n,t),r.compileShader(n),!r.getShaderParameter(n,r.COMPILE_STATUS))throw new Error("compile error: "+r.getShaderInfoLog(n));return n}var o,a={id:r.createProgram(),uniforms:{},locations:{}};if(r.attachShader(a.id,i(r.VERTEX_SHADER,e)),r.attachShader(a.id,i(r.FRAGMENT_SHADER,t)),r.linkProgram(a.id),!r.getProgramParameter(a.id,r.LINK_STATUS))throw new Error("link error: "+r.getProgramInfoLog(a.id));r.useProgram(a.id),r.enableVertexAttribArray(0);for(var l=e+t,s=/uniform (\w+) (\w+)/g;null!==(o=s.exec(l));){var u=o[2];a.locations[u]=r.getUniformLocation(a.id,u)}return a}function l(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,r=this.gl;r.activeTexture(r.TEXTURE0+(t||0)),r.bindTexture(r.TEXTURE_2D,e)}function s(){var e=this,t=function(){return e.initState=!1,null};if(!this.gl)return t();var r=this.gl,n=Object.fromEntries(["OES_texture_float","OES_texture_half_float","OES_texture_float_linear","OES_texture_half_float_linear"].reduce((function(e,t){var n=r.getExtension(t);return n&&e.push([t,n]),e}),[]));if(!n.OES_texture_float)return t();var i=[];function o(e,t,r){var i="OES_texture_"+e,o=i+"_linear",a=o in n;return{type:t,linearSupport:a,arrayType:r,extensions:a?[i,o]:[i]}}i.push(o("float",r.FLOAT,Float32Array)),n.OES_texture_half_float&&i.push(o("half_float",n.OES_texture_half_float.HALF_FLOAT_OES,null));var a=r.createTexture(),l=r.createFramebuffer();r.bindFramebuffer(r.FRAMEBUFFER,l),r.bindTexture(r.TEXTURE_2D,a),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_MIN_FILTER,r.NEAREST),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_MAG_FILTER,r.NEAREST),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_S,r.CLAMP_TO_EDGE),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_T,r.CLAMP_TO_EDGE);for(var s=null,u=0;u<i.length;u++)if(r.texImage2D(r.TEXTURE_2D,0,r.RGBA,32,32,0,r.RGBA,i[u].type,null),r.framebufferTexture2D(r.FRAMEBUFFER,r.COLOR_ATTACHMENT0,r.TEXTURE_2D,a,0),r.checkFramebufferStatus(r.FRAMEBUFFER)===r.FRAMEBUFFER_COMPLETE){s=i[u];break}return s}function u(e){return u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},u(e)}function c(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,h(n.key),n)}}function f(e,t,r){return t&&c(e.prototype,t),r&&c(e,r),Object.defineProperty(e,"prototype",{writable:!1}),e}function p(e,t,r){return(t=h(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function h(e){var t=function(e){if("object"!=u(e)||!e)return e;var t=e[Symbol.toPrimitive];if(void 0!==t){var r=t.call(e,"string");if("object"!=u(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==u(t)?t:t+""}var d="lmssee_ripper_element_style",m=f((function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),p(this,"styleElement",document.createElement("style")),p(this,"canvas",void 0),p(this,"gl",void 0),p(this,"config",void 0),p(this,"transparentPixels",function(){try{return new ImageData(32,32)}catch(e){return console.log(e&&""),document.createElement("canvas").getContext("2d").createImageData(32,32)}}()),p(this,"initState",!0),this.canvas=t;var r=t.getContext("webgl");if(null===r)return this.initState=!1,void(this.config=null);if(this.gl=r,null===document.querySelector("style#".concat(d))){var n=this.styleElement;n.id=d,n.innerHTML="\n .lmssee-ripples { \n position: relative; \n z-index: 0; \n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n transform: translate(0,0);\n }\n ";var i=document.head;i.prepend?i.prepend(n):i.insertBefore(n,i.firstChild)}this.config=Reflect.apply(s,this,[])})),g={imageUrl:"",resolution:256,dropRadius:10,perturbance:.03,interactive:!0,crossOrigin:"",playingState:!0,accelerating:1,raindropsTimeInterval:3600,idleFluctuations:!0};function v(e){return v="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},v(e)}function y(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,R(n.key),n)}}function b(e,t,r){return t&&y(e.prototype,t),r&&y(e,r),Object.defineProperty(e,"prototype",{writable:!1}),e}function E(e,t,r){return(t=R(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function R(e){var t=function(e){if("object"!=v(e)||!e)return e;var t=e[Symbol.toPrimitive];if(void 0!==t){var r=t.call(e,"string");if("object"!=v(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==v(t)?t:t+""}Object.freeze(g);var T=b((function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),E(this,"visible",!1),E(this,"running",!1),E(this,"perturbance",void 0),E(this,"resolution",void 0),E(this,"raindropsTimeInterval",void 0),E(this,"animationFrameId",0),E(this,"quad",null),E(this,"lastRaindropsFallTime",0),E(this,"parentElement",null),E(this,"backgroundInfo",{width:0,height:0}),E(this,"dropProgram",null),E(this,"updateProgram",null),E(this,"textures",[]),E(this,"backgroundTexture",[]),E(this,"textureDelta",null),E(this,"framebuffers",[]),E(this,"bufferWriteIndex",0),E(this,"bufferReadIndex",1),E(this,"originalInlineCss",""),E(this,"originalCssBackgroundImage",""),E(this,"events",{}),E(this,"accelerating",void 0),this.perturbance=t.perturbance,this.resolution=t.resolution,this.raindropsTimeInterval=t.raindropsTimeInterval,this.accelerating=t.accelerating})),x={};function _(){var e=this.gl,t=x[this.sole];e.bindBuffer(e.ARRAY_BUFFER,t.quad),e.vertexAttribPointer(0,2,e.FLOAT,!1,0,0),e.drawArrays(e.TRIANGLE_FAN,0,4)}function w(){var e=x[this.sole],t=e.bufferWriteIndex,r=e.bufferReadIndex;e.bufferWriteIndex=1-t,e.bufferReadIndex=1-r}function P(){var e=(x[this.sole]||{}).parentElement;if(e){var t=e.style.backgroundImage;if("none"!=t){var r=x[this.sole];r.originalInlineCss=t,r.originalCssBackgroundImage=window.getComputedStyle(e).backgroundImage,e.style.backgroundImage="none"}}}function S(){var e=x[this.sole],t=e.parentElement,r=e.originalInlineCss;t.style.backgroundImage=r||""}function F(){var e=this,t=this.gl,r=x[this.sole],n=r.parentElement,i=r.backgroundTexture,o=r.originalCssBackgroundImage,a=this.imageUrl||O(o)||O(window.getComputedStyle(n).backgroundImage);if(a!==this.imageSource)if(this.imageSource=a,this.imageSource){var l=new Image;l.onload=function(){var n=function(e){return!(e&e-1)},o=n(l.width)&&n(l.height)?t.REPEAT:t.CLAMP_TO_EDGE;t.bindTexture(t.TEXTURE_2D,i),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_S,o),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_T,o),t.texImage2D(t.TEXTURE_2D,0,t.RGBA,t.RGBA,t.UNSIGNED_BYTE,l),r.backgroundInfo={width:l.width,height:l.height},Reflect.apply(P,e,[])},l.onerror=function(){return Reflect.apply(A,e,[])},l.crossOrigin=this.imageSource.match(/^data:/)?null:this.crossOrigin,l.src=this.imageSource}else Reflect.apply(A,this,[])}function A(){var e=this.gl,t=x[this.sole].backgroundTexture;e.bindTexture(e.TEXTURE_2D,t),e.texImage2D(e.TEXTURE_2D,0,e.RGBA,e.RGBA,e.UNSIGNED_BYTE,this.transparentPixels)}function O(e){var t=/url\(["']?([^"']*)["']?\)/.exec(e);return null==t?null:t[1]}function I(){var e,t,r,n=x[this.sole],i=n.parentElement,o=window.getComputedStyle(i).backgroundSize,a=window.getComputedStyle(i).backgroundAttachment,l=(e=window.getComputedStyle(i).backgroundPosition,/\s+/.test(e)?e.replace(/center/,"50%").replace(/top|left/,"0%").replace(/bottom/,"100%").replace(/\s+/," ").split(" "):D(e)?[e,"50%"]:{center:["50%","50%"],top:["50%","0%"],bottom:["50%","100%"],left:["0%","50%"],right:["100%","50%"]}[e]),s={left:0,top:0,width:0,height:0};if("fixed"==a)s.height=window.innerHeight,s.left=window.screenX,s.top=window.screenY,s.width=window.innerWidth;else{var u=i.getBoundingClientRect();s.left=u.left,s.top=u.top,s.width=i.scrollWidth,s.height=i.scrollHeight}var c=n.backgroundInfo||{width:100,height:100},f=c.width,p=c.height;if("cover"==o){var h=Math.max(s.width/f,s.height/p);t=f*h,r=p*h}else if("contain"==o){var d=Math.min(s.width/f,s.height/p);t=f*d,r=p*d}else{var m=o.split(" ");t=m[0]||"",r=m[1]||t,D(t)?t=s.width*parseFloat(t)/100:"auto"!==t&&(t=parseFloat(t)),D(r)?r=s.height*parseFloat(r)/100:"auto"!==r&&(r=parseFloat(r)),"auto"==t&&"auto"==r?(t=f,r=p):("auto"==t&&(t=f*(Number(r)/p)),"auto"==r&&(r=p*(Number(t)/f)))}var g=l&&l[0]||"0%",v=l&&l[1]||"0%";g=D(g)?(s.left+(s.width-Number(t))*parseFloat(g)/100).toString():(s.left+parseFloat(g)).toString(),v=D(v)?(s.top+(s.height-Number(r))*parseFloat(v)/100).toString():(s.top+parseFloat(v)).toString(),this.renderProgram.uniforms.topLeft=new Float32Array([(i.offsetLeft-Number(g))/t,(i.offsetTop-Number(v))/r]),this.renderProgram.uniforms.bottomRight=new Float32Array([this.renderProgram.uniforms.topLeft[0]+i.clientWidth/t,this.renderProgram.uniforms.topLeft[1]+i.clientHeight/r]);var y=Math.max(this.canvas.width,this.canvas.height);this.renderProgram.uniforms.containerRatio=new Float32Array([this.canvas.width/y,this.canvas.height/y])}function D(e){return e.endsWith("%")}function U(){var e=this.gl,t=x[this.sole],r=t.perturbance,n=t.textures,i=t.backgroundTexture;e.bindFramebuffer(e.FRAMEBUFFER,null),e.viewport(0,0,this.canvas.width,this.canvas.height),e.enable(e.BLEND),e.clear(e.COLOR_BUFFER_BIT|e.DEPTH_BUFFER_BIT),e.useProgram(this.renderProgram.id),Reflect.apply(l,this,[i,0]),Reflect.apply(l,this,[n[0],1]),e.uniform1f(this.renderProgram.locations.perturbance,r),e.uniform2fv(this.renderProgram.locations.topLeft,this.renderProgram.uniforms.topLeft),e.uniform2fv(this.renderProgram.locations.bottomRight,this.renderProgram.uniforms.bottomRight),e.uniform2fv(this.renderProgram.locations.containerRatio,this.renderProgram.uniforms.containerRatio),e.uniform1i(this.renderProgram.locations.samplerBackground,0),e.uniform1i(this.renderProgram.locations.samplerRipples,1),Reflect.apply(_,this,[]),e.disable(e.BLEND)}function k(){var e=this.gl,t=x[this.sole],r=t.resolution,n=t.updateProgram,i=t.textures,o=t.framebuffers,a=t.bufferWriteIndex,s=t.bufferReadIndex;e.viewport(0,0,r,r),e.bindFramebuffer(e.FRAMEBUFFER,o[a]),Reflect.apply(l,this,[i[s]]),e.useProgram(n.id),Reflect.apply(_,this,[]),Reflect.apply(w,this,[])}function C(){var e=this,t=x[this.sole],r=t.visible,n=t.raindropsTimeInterval,i=t.running,o=t.lastRaindropsFallTime;if(r){if(Reflect.apply(I,this,[]),this.idleFluctuations&&i){var a=Date.now();a-o>n&&(t.lastRaindropsFallTime=a,this.raindropsFall())}Reflect.apply(k,this,[]),Reflect.apply(U,this,[]),t.animationFrameId=requestAnimationFrame((function(){return Reflect.apply(C,e,[])}))}}function L(e,t,r){var n=x[this.sole].parentElement,i=window.getComputedStyle(n),o=parseInt(i.borderLeftWidth)||0,a=parseInt(i.borderTopWidth)||0,l=n.getBoundingClientRect(),s=e.clientX-l.left-o,u=e.clientY-l.top-a;this.drop(s,u,t,r)}function j(){var e=this,t=x[this.sole],r=t.visible,n=t.running,i=t.accelerating,o=t.parentElement,a=t.events,l=function(i){var o=arguments.length>1&&void 0!==arguments[1]&&arguments[1];r&&n&&e.interactive&&(t.lastRaindropsFallTime=Date.now(),Reflect.apply(L,e,[i,e.dropRadius*(o?1.5:1),o?.14:.01]))};a.mousemove=function(e){for(var t=i;t--;)l(e)},a.touchmove=a.touchstart=function(e){for(var t=e.touches,r=0;r<t.length;r++)l(t[r])},a.mousedown=function(e){return l(e,!0)},Object.keys(a).forEach((function(e){return o&&o.addEventListener(e,a[e],{passive:!0})}))}var B="\n attribute vec2 vertex;\n varying vec2 coord;\n void main() {\n coord = vertex * 0.5 + 0.5;\n gl_Position = vec4(vertex, 0.0, 1.0);\n }";function X(){var e=this.gl,t=x[this.sole],r=t.textureDelta;t.dropProgram=a(B,"precision highp float;\n\n const float PI = 3.141592653589793;\n uniform sampler2D texture;\n uniform vec2 center;\n uniform float radius;\n uniform float strength;\n\n varying vec2 coord;\n\n void main() {\n vec4 info = texture2D(texture, coord);\n\n float drop = max(0.0, 1.0 - length(center * 0.5 + 0.5 - coord) / radius);\n drop = 0.5 - cos(drop * PI) * 0.5;\n info.r += drop * strength;\n gl_FragColor = info;\n }",e);var n=t.updateProgram=a(B,"\n precision highp float;\n\n uniform sampler2D texture;\n uniform vec2 delta;\n\n varying vec2 coord;\n\n void main() {\n vec4 info = texture2D(texture, coord);\n \n vec2 dx = vec2(delta.x, 0.0);\n vec2 dy = vec2(0.0, delta.y);\n \n float average = (\n texture2D(texture, coord - dx).r +\n texture2D(texture, coord - dy).r +\n texture2D(texture, coord + dx).r +\n texture2D(texture, coord + dy).r\n ) * 0.25;\n \n info.g += (average - info.r) * 2.0;\n info.g *= 0.995;\n info.r += info.g;\n \n gl_FragColor = info;\n }\n ",this.gl);e.uniform2fv(n.locations.delta,r),this.renderProgram=a("\n precision highp float;\n\n attribute vec2 vertex;\n uniform vec2 topLeft;\n uniform vec2 bottomRight;\n uniform vec2 containerRatio;\n varying vec2 ripplesCoord;\n varying vec2 backgroundCoord;\n void main() {\n backgroundCoord = mix(topLeft, bottomRight, vertex * 0.5 + 0.5);\n backgroundCoord.y = 1.0 - backgroundCoord.y;\n ripplesCoord = vec2(vertex.x, -vertex.y) * containerRatio * 0.5 + 0.5;\n gl_Position = vec4(vertex.x, -vertex.y, 0.0, 1.0);\n }\n ","\n precision highp float;\n\n uniform sampler2D samplerBackground;\n uniform sampler2D samplerRipples;\n uniform vec2 delta;\n\n uniform float perturbance;\n varying vec2 ripplesCoord;\n varying vec2 backgroundCoord;\n\n void main() {\n float height = texture2D(samplerRipples, ripplesCoord).r;\n float heightX = texture2D(samplerRipples, vec2(ripplesCoord.x + delta.x, ripplesCoord.y)).r;\n float heightY = texture2D(samplerRipples, vec2(ripplesCoord.x, ripplesCoord.y + delta.y)).r;\n vec3 dx = vec3(delta.x, heightX - height, 0.0);\n vec3 dy = vec3(0.0, heightY - height, delta.y);\n vec2 offset = -normalize(cross(dy, dx)).xz;\n float specular = pow(max(0.0, dot(offset, normalize(vec2(-0.6, 1.0)))), 4.0);\n gl_FragColor = texture2D(samplerBackground, backgroundCoord + offset * perturbance) + specular;\n }",e),e.uniform2fv(this.renderProgram.locations.delta,r)}function M(){var e=this.gl,t=x[this.sole].backgroundTexture=e.createTexture();e.bindTexture(e.TEXTURE_2D,t),e.pixelStorei(e.UNPACK_FLIP_Y_WEBGL,1),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MAG_FILTER,e.LINEAR),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MIN_FILTER,e.LINEAR)}function N(){var e=this;if(this.config){var t=x[this.sole],r=t.resolution,n=t.textures,i=t.framebuffers,o=this.gl,a=1/r;t.textureDelta=new Float32Array([a,a]),this.config.extensions.forEach((function(e){return o.getExtension(e)})),this.updateSize=this.updateSize.bind(this),window.addEventListener("resize",this.updateSize);for(var l=this.config.arrayType,s=l?new l(r*r*4):null,u=this.config,c=0;c<2;c++){var f=o.createTexture(),p=o.createFramebuffer();o.bindFramebuffer(o.FRAMEBUFFER,p),o.bindTexture(o.TEXTURE_2D,f),o.texParameteri(o.TEXTURE_2D,o.TEXTURE_MIN_FILTER,u.linearSupport?o.LINEAR:o.NEAREST),o.texParameteri(o.TEXTURE_2D,o.TEXTURE_MAG_FILTER,u.linearSupport?o.LINEAR:o.NEAREST),o.texParameteri(o.TEXTURE_2D,o.TEXTURE_WRAP_S,o.CLAMP_TO_EDGE),o.texParameteri(o.TEXTURE_2D,o.TEXTURE_WRAP_T,o.CLAMP_TO_EDGE),o.texImage2D(o.TEXTURE_2D,0,o.RGBA,r,r,0,o.RGBA,u.type,s),o.framebufferTexture2D(o.FRAMEBUFFER,o.COLOR_ATTACHMENT0,o.TEXTURE_2D,f,0),n.push(f),i.push(p)}t.quad=o.createBuffer(),o.bindBuffer(o.ARRAY_BUFFER,t.quad),o.bufferData(o.ARRAY_BUFFER,new Float32Array([-1,-1,1,-1,1,1,-1,1]),o.STATIC_DRAW),Reflect.apply(X,this,[]),Reflect.apply(M,this,[]),Reflect.apply(A,this,[]),Reflect.apply(F,this,[]),o.clearColor(0,0,0,0),o.blendFunc(o.SRC_ALPHA,o.ONE_MINUS_SRC_ALPHA),t.visible=!0,t.running=!0,Reflect.apply(j,this,[]),t.animationFrameId=requestAnimationFrame((function(){return Reflect.apply(C,e,[])}))}}function W(e){return W="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},W(e)}function G(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function z(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?G(Object(r),!0).forEach((function(t){J(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):G(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function H(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,Q(n.key),n)}}function Y(e,t){if(t&&("object"==W(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function q(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(e){}return(q=function(){return!!e})()}function K(e){return K=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},K(e)}function V(e,t){return V=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},V(e,t)}function J(e,t,r){return(t=Q(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function Q(e){var t=function(e){if("object"!=W(e)||!e)return e;var t=e[Symbol.toPrimitive];if(void 0!==t){var r=t.call(e,"string");if("object"!=W(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==W(t)?t:t+""}var Z=new WeakMap,$=function(e){function t(e,r){var n,i,a,l;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),i=this,l=[e],a=K(a=t),J(n=Y(i,q()?Reflect.construct(a,l||[],K(i).constructor):a.apply(i,l)),"sole",Symbol("ripple")),J(n,"defaults",g),J(n,"interactive",n.defaults.interactive),J(n,"dropRadius",void 0),J(n,"crossOrigin",""),J(n,"imageUrl",void 0),J(n,"idleFluctuations",!0),function(e,t,r){(function(e,t){if(t.has(e))throw new TypeError("Cannot initialize the same private elements twice on an object")})(e,t),t.set(e,r)}(n,Z,!1),J(n,"imageSource",""),J(n,"renderProgram",void 0),console.log("初始化参数",r),x[n.sole]=new T(g),Object.defineProperties(n,{defaults:{value:n.defaults,writable:!1,enumerable:!1,configurable:!1}}),r&&"boolean"!=typeof r.interactive&&delete r.interactive;var s=z(z({},n.defaults),r);return n.accelerating=s.accelerating,n.dropRadius=s.dropRadius,n.resolution=s.resolution,n.interactive=s.interactive,n.perturbance=s.perturbance,n.crossOrigin=s.crossOrigin,n.imageUrl=s.imageUrl,n.idleFluctuations=s.idleFluctuations,n.playingState=s.playingState,n.raindropsTimeInterval=s.raindropsTimeInterval,!1===n.initState||null===e.parentElement||null===n.config||null===n.gl?(n.initState=!1,Y(n)):(x[n.sole].parentElement=e.parentElement,function(e){var t=e.parentElement;e.width=t.clientWidth,e.height=t.clientHeight,(0,o.setStyle)(e,{position:"absolute",left:0,top:0,right:0,bottom:0,zIndex:-1,pointerEvents:"none"})}(e),Reflect.apply(N,n,[]),n)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&V(e,t)}(t,e),r=t,n=[{key:"accelerating",set:function(e){e>100||e<2||(x[this.sole].accelerating=e)}},{key:"resolution",set:function(e){e<100||e>550||(x[this.sole].resolution=e)}},{key:"perturbance",set:function(e){e<1e-4||e>1||(x[this.sole].perturbance=e)}},{key:"playingState",set:function(e){x[this.sole].running=!1!==e}},{key:"initialized",get:function(){return t=this,(e=Z).get(function(e,t,r){if("function"==typeof e?e===t:e.has(t))return arguments.length<3?t:r;throw new TypeError("Private element is not present on this object")}(e,t));var e,t}},{key:"raindropsTimeInterval",set:function(e){e<10||e>12e3||(x[this.sole].raindropsTimeInterval=e)}},{key:"raindropsFall",value:function(){var e=x[this.sole].parentElement,t=window.getComputedStyle(e),r=function(e){return function(e=1,t=0){let r=Math.ceil(Number(t)),n=Math.floor(Number(e));return r>n&&([n,r]=[r,n]),Math.floor(Math.random()*(n-r+1)+r)}(parseInt(e))},n=t.width,i=t.height;this.drop(r(n),r(i),this.dropRadius,.03)}},{key:"drop",value:function(e,t,r,n){var i=this.gl,o=x[this.sole],a=o.resolution,s=o.parentElement,u=o.dropProgram,c=o.textures,f=o.framebuffers,p=o.bufferWriteIndex,h=o.bufferReadIndex,d=s.offsetWidth,m=s.offsetHeight,g=Math.max(d,m);r/=g;var v=new Float32Array([(2*e-d)/g,(m-2*t)/g]);i.viewport(0,0,a,a),i.bindFramebuffer(i.FRAMEBUFFER,f[p]),Reflect.apply(l,this,[c[h]]),i.useProgram(u.id),i.uniform2fv(u.locations.center,v),i.uniform1f(u.locations.radius,r),i.uniform1f(u.locations.strength,n),Reflect.apply(_,this,[]),Reflect.apply(w,this,[])}},{key:"updateSize",value:function(){var e=x[this.sole].parentElement,t=e.offsetWidth,r=e.offsetHeight;t==this.canvas.width&&r==this.canvas.height||(this.canvas.width=t,this.canvas.height=r)}},{key:"destroy",value:function(){x[this.sole].animationFrameId&&window.cancelAnimationFrame(x[this.sole].animationFrameId);var e=x[this.sole],t=e.parentElement,r=e.events;t&&(Object.keys(r).forEach((function(e){return t.removeEventListener&&t.removeEventListener(e,r[e])})),t.removeAttribute&&t.removeAttribute("data-ripples")),this.styleElement&&this.styleElement.remove(),this.gl=null,Reflect.apply(S,this,[]);var n=x[this.sole];Object.keys(n).forEach((function(e){return n[e]=null})),x[this.sole]=null,this.gl&&(this.gl=null),window.removeEventListener("resize",this.updateSize)}},{key:"show",value:function(){x[this.sole].visible=!0,this.canvas.style.visibility="visible",Reflect.apply(P,this,[])}},{key:"hide",value:function(){x[this.sole].visible=!1,this.canvas.style.visibility="hidden",Reflect.apply(S,this,[])}},{key:"pause",value:function(){this.playingState=!1}},{key:"play",value:function(){this.playingState=!0}},{key:"changePlayingState",value:function(){this.playingState=!x[this.sole].running}},{key:"set",value:function(e,t){"imageUrl"===e?(this.imageUrl=t,Reflect.apply(F,this,[])):this[e]=t}}],n&&H(r.prototype,n),Object.defineProperty(r,"prototype",{writable:!1}),r;var r,n}(m);function ee(e,t){var r=(0,i.useRef)(null);return(0,i.useEffect)((function(){var n=e.current;return r.current=new $(n,t&&t.option),function(){return r.current&&r.current.destroy()||void 0}}),[]),r}module.exports["oops-ui"]=n})();
@@ -1 +0,0 @@
1
- import*as e from"react";import*as t from"a-element-inline-style";var r={649:(t,r,n)=>{var i,o;t.exports=(i={useEffect:()=>e.useEffect,useRef:()=>e.useRef},o={},n.d(o,i),o)}},n={};function i(e){var t=n[e];if(void 0!==t)return t.exports;var o=n[e]={exports:{}};return r[e](o,o.exports,i),o.exports}i.d=(e,t)=>{for(var r in t)i.o(t,r)&&!i.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},i.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t);var o={};i.d(o,{n:()=>ie});var a=i(649);const l=(s={setStyle:()=>t.setStyle},u={},i.d(u,s),u);var s,u;function c(e,t,r,n){function i(e,t){var n=r.createShader(e);if(r.shaderSource(n,t),r.compileShader(n),!r.getShaderParameter(n,r.COMPILE_STATUS))throw new Error("compile error: "+r.getShaderInfoLog(n));return n}var o,a={id:r.createProgram(),uniforms:{},locations:{}};if(r.attachShader(a.id,i(r.VERTEX_SHADER,e)),r.attachShader(a.id,i(r.FRAGMENT_SHADER,t)),r.linkProgram(a.id),!r.getProgramParameter(a.id,r.LINK_STATUS))throw new Error("link error: "+r.getProgramInfoLog(a.id));r.useProgram(a.id),r.enableVertexAttribArray(0);for(var l=e+t,s=/uniform (\w+) (\w+)/g;null!==(o=s.exec(l));){var u=o[2];a.locations[u]=r.getUniformLocation(a.id,u)}return a}function f(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,r=this.gl;r.activeTexture(r.TEXTURE0+(t||0)),r.bindTexture(r.TEXTURE_2D,e)}function p(){var e=this,t=function(){return e.initState=!1,null};if(!this.gl)return t();var r=this.gl,n=Object.fromEntries(["OES_texture_float","OES_texture_half_float","OES_texture_float_linear","OES_texture_half_float_linear"].reduce((function(e,t){var n=r.getExtension(t);return n&&e.push([t,n]),e}),[]));if(!n.OES_texture_float)return t();var i=[];function o(e,t,r){var i="OES_texture_"+e,o=i+"_linear",a=o in n;return{type:t,linearSupport:a,arrayType:r,extensions:a?[i,o]:[i]}}i.push(o("float",r.FLOAT,Float32Array)),n.OES_texture_half_float&&i.push(o("half_float",n.OES_texture_half_float.HALF_FLOAT_OES,null));var a=r.createTexture(),l=r.createFramebuffer();r.bindFramebuffer(r.FRAMEBUFFER,l),r.bindTexture(r.TEXTURE_2D,a),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_MIN_FILTER,r.NEAREST),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_MAG_FILTER,r.NEAREST),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_S,r.CLAMP_TO_EDGE),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_T,r.CLAMP_TO_EDGE);for(var s=null,u=0;u<i.length;u++)if(r.texImage2D(r.TEXTURE_2D,0,r.RGBA,32,32,0,r.RGBA,i[u].type,null),r.framebufferTexture2D(r.FRAMEBUFFER,r.COLOR_ATTACHMENT0,r.TEXTURE_2D,a,0),r.checkFramebufferStatus(r.FRAMEBUFFER)===r.FRAMEBUFFER_COMPLETE){s=i[u];break}return s}function h(e){return h="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},h(e)}function d(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,v(n.key),n)}}function m(e,t,r){return t&&d(e.prototype,t),r&&d(e,r),Object.defineProperty(e,"prototype",{writable:!1}),e}function g(e,t,r){return(t=v(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function v(e){var t=function(e){if("object"!=h(e)||!e)return e;var t=e[Symbol.toPrimitive];if(void 0!==t){var r=t.call(e,"string");if("object"!=h(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==h(t)?t:t+""}var y="lmssee_ripper_element_style",b=m((function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),g(this,"styleElement",document.createElement("style")),g(this,"canvas",void 0),g(this,"gl",void 0),g(this,"config",void 0),g(this,"transparentPixels",function(){try{return new ImageData(32,32)}catch(e){return console.log(e&&""),document.createElement("canvas").getContext("2d").createImageData(32,32)}}()),g(this,"initState",!0),this.canvas=t;var r=t.getContext("webgl");if(null===r)return this.initState=!1,void(this.config=null);if(this.gl=r,null===document.querySelector("style#".concat(y))){var n=this.styleElement;n.id=y,n.innerHTML="\n .lmssee-ripples { \n position: relative; \n z-index: 0; \n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n transform: translate(0,0);\n }\n ";var i=document.head;i.prepend?i.prepend(n):i.insertBefore(n,i.firstChild)}this.config=Reflect.apply(p,this,[])})),E={imageUrl:"",resolution:256,dropRadius:10,perturbance:.03,interactive:!0,crossOrigin:"",playingState:!0,accelerating:1,raindropsTimeInterval:3600,idleFluctuations:!0};function R(e){return R="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},R(e)}function T(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,w(n.key),n)}}function x(e,t,r){return t&&T(e.prototype,t),r&&T(e,r),Object.defineProperty(e,"prototype",{writable:!1}),e}function _(e,t,r){return(t=w(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function w(e){var t=function(e){if("object"!=R(e)||!e)return e;var t=e[Symbol.toPrimitive];if(void 0!==t){var r=t.call(e,"string");if("object"!=R(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==R(t)?t:t+""}Object.freeze(E);var P=x((function e(t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),_(this,"visible",!1),_(this,"running",!1),_(this,"perturbance",void 0),_(this,"resolution",void 0),_(this,"raindropsTimeInterval",void 0),_(this,"animationFrameId",0),_(this,"quad",null),_(this,"lastRaindropsFallTime",0),_(this,"parentElement",null),_(this,"backgroundInfo",{width:0,height:0}),_(this,"dropProgram",null),_(this,"updateProgram",null),_(this,"textures",[]),_(this,"backgroundTexture",[]),_(this,"textureDelta",null),_(this,"framebuffers",[]),_(this,"bufferWriteIndex",0),_(this,"bufferReadIndex",1),_(this,"originalInlineCss",""),_(this,"originalCssBackgroundImage",""),_(this,"events",{}),_(this,"accelerating",void 0),this.perturbance=t.perturbance,this.resolution=t.resolution,this.raindropsTimeInterval=t.raindropsTimeInterval,this.accelerating=t.accelerating})),S={};function F(){var e=this.gl,t=S[this.sole];e.bindBuffer(e.ARRAY_BUFFER,t.quad),e.vertexAttribPointer(0,2,e.FLOAT,!1,0,0),e.drawArrays(e.TRIANGLE_FAN,0,4)}function A(){var e=S[this.sole],t=e.bufferWriteIndex,r=e.bufferReadIndex;e.bufferWriteIndex=1-t,e.bufferReadIndex=1-r}function O(){var e=(S[this.sole]||{}).parentElement;if(e){var t=e.style.backgroundImage;if("none"!=t){var r=S[this.sole];r.originalInlineCss=t,r.originalCssBackgroundImage=window.getComputedStyle(e).backgroundImage,e.style.backgroundImage="none"}}}function I(){var e=S[this.sole],t=e.parentElement,r=e.originalInlineCss;t.style.backgroundImage=r||""}function D(){var e=this,t=this.gl,r=S[this.sole],n=r.parentElement,i=r.backgroundTexture,o=r.originalCssBackgroundImage,a=this.imageUrl||k(o)||k(window.getComputedStyle(n).backgroundImage);if(a!==this.imageSource)if(this.imageSource=a,this.imageSource){var l=new Image;l.onload=function(){var n=function(e){return!(e&e-1)},o=n(l.width)&&n(l.height)?t.REPEAT:t.CLAMP_TO_EDGE;t.bindTexture(t.TEXTURE_2D,i),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_S,o),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_T,o),t.texImage2D(t.TEXTURE_2D,0,t.RGBA,t.RGBA,t.UNSIGNED_BYTE,l),r.backgroundInfo={width:l.width,height:l.height},Reflect.apply(O,e,[])},l.onerror=function(){return Reflect.apply(U,e,[])},l.crossOrigin=this.imageSource.match(/^data:/)?null:this.crossOrigin,l.src=this.imageSource}else Reflect.apply(U,this,[])}function U(){var e=this.gl,t=S[this.sole].backgroundTexture;e.bindTexture(e.TEXTURE_2D,t),e.texImage2D(e.TEXTURE_2D,0,e.RGBA,e.RGBA,e.UNSIGNED_BYTE,this.transparentPixels)}function k(e){var t=/url\(["']?([^"']*)["']?\)/.exec(e);return null==t?null:t[1]}function C(){var e,t,r,n=S[this.sole],i=n.parentElement,o=window.getComputedStyle(i).backgroundSize,a=window.getComputedStyle(i).backgroundAttachment,l=(e=window.getComputedStyle(i).backgroundPosition,/\s+/.test(e)?e.replace(/center/,"50%").replace(/top|left/,"0%").replace(/bottom/,"100%").replace(/\s+/," ").split(" "):L(e)?[e,"50%"]:{center:["50%","50%"],top:["50%","0%"],bottom:["50%","100%"],left:["0%","50%"],right:["100%","50%"]}[e]),s={left:0,top:0,width:0,height:0};if("fixed"==a)s.height=window.innerHeight,s.left=window.screenX,s.top=window.screenY,s.width=window.innerWidth;else{var u=i.getBoundingClientRect();s.left=u.left,s.top=u.top,s.width=i.scrollWidth,s.height=i.scrollHeight}var c=n.backgroundInfo||{width:100,height:100},f=c.width,p=c.height;if("cover"==o){var h=Math.max(s.width/f,s.height/p);t=f*h,r=p*h}else if("contain"==o){var d=Math.min(s.width/f,s.height/p);t=f*d,r=p*d}else{var m=o.split(" ");t=m[0]||"",r=m[1]||t,L(t)?t=s.width*parseFloat(t)/100:"auto"!==t&&(t=parseFloat(t)),L(r)?r=s.height*parseFloat(r)/100:"auto"!==r&&(r=parseFloat(r)),"auto"==t&&"auto"==r?(t=f,r=p):("auto"==t&&(t=f*(Number(r)/p)),"auto"==r&&(r=p*(Number(t)/f)))}var g=l&&l[0]||"0%",v=l&&l[1]||"0%";g=L(g)?(s.left+(s.width-Number(t))*parseFloat(g)/100).toString():(s.left+parseFloat(g)).toString(),v=L(v)?(s.top+(s.height-Number(r))*parseFloat(v)/100).toString():(s.top+parseFloat(v)).toString(),this.renderProgram.uniforms.topLeft=new Float32Array([(i.offsetLeft-Number(g))/t,(i.offsetTop-Number(v))/r]),this.renderProgram.uniforms.bottomRight=new Float32Array([this.renderProgram.uniforms.topLeft[0]+i.clientWidth/t,this.renderProgram.uniforms.topLeft[1]+i.clientHeight/r]);var y=Math.max(this.canvas.width,this.canvas.height);this.renderProgram.uniforms.containerRatio=new Float32Array([this.canvas.width/y,this.canvas.height/y])}function L(e){return e.endsWith("%")}function j(){var e=this.gl,t=S[this.sole],r=t.perturbance,n=t.textures,i=t.backgroundTexture;e.bindFramebuffer(e.FRAMEBUFFER,null),e.viewport(0,0,this.canvas.width,this.canvas.height),e.enable(e.BLEND),e.clear(e.COLOR_BUFFER_BIT|e.DEPTH_BUFFER_BIT),e.useProgram(this.renderProgram.id),Reflect.apply(f,this,[i,0]),Reflect.apply(f,this,[n[0],1]),e.uniform1f(this.renderProgram.locations.perturbance,r),e.uniform2fv(this.renderProgram.locations.topLeft,this.renderProgram.uniforms.topLeft),e.uniform2fv(this.renderProgram.locations.bottomRight,this.renderProgram.uniforms.bottomRight),e.uniform2fv(this.renderProgram.locations.containerRatio,this.renderProgram.uniforms.containerRatio),e.uniform1i(this.renderProgram.locations.samplerBackground,0),e.uniform1i(this.renderProgram.locations.samplerRipples,1),Reflect.apply(F,this,[]),e.disable(e.BLEND)}function B(){var e=this.gl,t=S[this.sole],r=t.resolution,n=t.updateProgram,i=t.textures,o=t.framebuffers,a=t.bufferWriteIndex,l=t.bufferReadIndex;e.viewport(0,0,r,r),e.bindFramebuffer(e.FRAMEBUFFER,o[a]),Reflect.apply(f,this,[i[l]]),e.useProgram(n.id),Reflect.apply(F,this,[]),Reflect.apply(A,this,[])}function X(){var e=this,t=S[this.sole],r=t.visible,n=t.raindropsTimeInterval,i=t.running,o=t.lastRaindropsFallTime;if(r){if(Reflect.apply(C,this,[]),this.idleFluctuations&&i){var a=Date.now();a-o>n&&(t.lastRaindropsFallTime=a,this.raindropsFall())}Reflect.apply(B,this,[]),Reflect.apply(j,this,[]),t.animationFrameId=requestAnimationFrame((function(){return Reflect.apply(X,e,[])}))}}function M(e,t,r){var n=S[this.sole].parentElement,i=window.getComputedStyle(n),o=parseInt(i.borderLeftWidth)||0,a=parseInt(i.borderTopWidth)||0,l=n.getBoundingClientRect(),s=e.clientX-l.left-o,u=e.clientY-l.top-a;this.drop(s,u,t,r)}function N(){var e=this,t=S[this.sole],r=t.visible,n=t.running,i=t.accelerating,o=t.parentElement,a=t.events,l=function(i){var o=arguments.length>1&&void 0!==arguments[1]&&arguments[1];r&&n&&e.interactive&&(t.lastRaindropsFallTime=Date.now(),Reflect.apply(M,e,[i,e.dropRadius*(o?1.5:1),o?.14:.01]))};a.mousemove=function(e){for(var t=i;t--;)l(e)},a.touchmove=a.touchstart=function(e){for(var t=e.touches,r=0;r<t.length;r++)l(t[r])},a.mousedown=function(e){return l(e,!0)},Object.keys(a).forEach((function(e){return o&&o.addEventListener(e,a[e],{passive:!0})}))}var W="\n attribute vec2 vertex;\n varying vec2 coord;\n void main() {\n coord = vertex * 0.5 + 0.5;\n gl_Position = vec4(vertex, 0.0, 1.0);\n }";function G(){var e=this.gl,t=S[this.sole],r=t.textureDelta;t.dropProgram=c(W,"precision highp float;\n\n const float PI = 3.141592653589793;\n uniform sampler2D texture;\n uniform vec2 center;\n uniform float radius;\n uniform float strength;\n\n varying vec2 coord;\n\n void main() {\n vec4 info = texture2D(texture, coord);\n\n float drop = max(0.0, 1.0 - length(center * 0.5 + 0.5 - coord) / radius);\n drop = 0.5 - cos(drop * PI) * 0.5;\n info.r += drop * strength;\n gl_FragColor = info;\n }",e);var n=t.updateProgram=c(W,"\n precision highp float;\n\n uniform sampler2D texture;\n uniform vec2 delta;\n\n varying vec2 coord;\n\n void main() {\n vec4 info = texture2D(texture, coord);\n \n vec2 dx = vec2(delta.x, 0.0);\n vec2 dy = vec2(0.0, delta.y);\n \n float average = (\n texture2D(texture, coord - dx).r +\n texture2D(texture, coord - dy).r +\n texture2D(texture, coord + dx).r +\n texture2D(texture, coord + dy).r\n ) * 0.25;\n \n info.g += (average - info.r) * 2.0;\n info.g *= 0.995;\n info.r += info.g;\n \n gl_FragColor = info;\n }\n ",this.gl);e.uniform2fv(n.locations.delta,r),this.renderProgram=c("\n precision highp float;\n\n attribute vec2 vertex;\n uniform vec2 topLeft;\n uniform vec2 bottomRight;\n uniform vec2 containerRatio;\n varying vec2 ripplesCoord;\n varying vec2 backgroundCoord;\n void main() {\n backgroundCoord = mix(topLeft, bottomRight, vertex * 0.5 + 0.5);\n backgroundCoord.y = 1.0 - backgroundCoord.y;\n ripplesCoord = vec2(vertex.x, -vertex.y) * containerRatio * 0.5 + 0.5;\n gl_Position = vec4(vertex.x, -vertex.y, 0.0, 1.0);\n }\n ","\n precision highp float;\n\n uniform sampler2D samplerBackground;\n uniform sampler2D samplerRipples;\n uniform vec2 delta;\n\n uniform float perturbance;\n varying vec2 ripplesCoord;\n varying vec2 backgroundCoord;\n\n void main() {\n float height = texture2D(samplerRipples, ripplesCoord).r;\n float heightX = texture2D(samplerRipples, vec2(ripplesCoord.x + delta.x, ripplesCoord.y)).r;\n float heightY = texture2D(samplerRipples, vec2(ripplesCoord.x, ripplesCoord.y + delta.y)).r;\n vec3 dx = vec3(delta.x, heightX - height, 0.0);\n vec3 dy = vec3(0.0, heightY - height, delta.y);\n vec2 offset = -normalize(cross(dy, dx)).xz;\n float specular = pow(max(0.0, dot(offset, normalize(vec2(-0.6, 1.0)))), 4.0);\n gl_FragColor = texture2D(samplerBackground, backgroundCoord + offset * perturbance) + specular;\n }",e),e.uniform2fv(this.renderProgram.locations.delta,r)}function z(){var e=this.gl,t=S[this.sole].backgroundTexture=e.createTexture();e.bindTexture(e.TEXTURE_2D,t),e.pixelStorei(e.UNPACK_FLIP_Y_WEBGL,1),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MAG_FILTER,e.LINEAR),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MIN_FILTER,e.LINEAR)}function H(){var e=this;if(this.config){var t=S[this.sole],r=t.resolution,n=t.textures,i=t.framebuffers,o=this.gl,a=1/r;t.textureDelta=new Float32Array([a,a]),this.config.extensions.forEach((function(e){return o.getExtension(e)})),this.updateSize=this.updateSize.bind(this),window.addEventListener("resize",this.updateSize);for(var l=this.config.arrayType,s=l?new l(r*r*4):null,u=this.config,c=0;c<2;c++){var f=o.createTexture(),p=o.createFramebuffer();o.bindFramebuffer(o.FRAMEBUFFER,p),o.bindTexture(o.TEXTURE_2D,f),o.texParameteri(o.TEXTURE_2D,o.TEXTURE_MIN_FILTER,u.linearSupport?o.LINEAR:o.NEAREST),o.texParameteri(o.TEXTURE_2D,o.TEXTURE_MAG_FILTER,u.linearSupport?o.LINEAR:o.NEAREST),o.texParameteri(o.TEXTURE_2D,o.TEXTURE_WRAP_S,o.CLAMP_TO_EDGE),o.texParameteri(o.TEXTURE_2D,o.TEXTURE_WRAP_T,o.CLAMP_TO_EDGE),o.texImage2D(o.TEXTURE_2D,0,o.RGBA,r,r,0,o.RGBA,u.type,s),o.framebufferTexture2D(o.FRAMEBUFFER,o.COLOR_ATTACHMENT0,o.TEXTURE_2D,f,0),n.push(f),i.push(p)}t.quad=o.createBuffer(),o.bindBuffer(o.ARRAY_BUFFER,t.quad),o.bufferData(o.ARRAY_BUFFER,new Float32Array([-1,-1,1,-1,1,1,-1,1]),o.STATIC_DRAW),Reflect.apply(G,this,[]),Reflect.apply(z,this,[]),Reflect.apply(U,this,[]),Reflect.apply(D,this,[]),o.clearColor(0,0,0,0),o.blendFunc(o.SRC_ALPHA,o.ONE_MINUS_SRC_ALPHA),t.visible=!0,t.running=!0,Reflect.apply(N,this,[]),t.animationFrameId=requestAnimationFrame((function(){return Reflect.apply(X,e,[])}))}}function Y(e){return Y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Y(e)}function q(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function K(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?q(Object(r),!0).forEach((function(t){ee(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):q(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function V(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,te(n.key),n)}}function J(e,t){if(t&&("object"==Y(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function Q(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(e){}return(Q=function(){return!!e})()}function Z(e){return Z=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},Z(e)}function $(e,t){return $=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},$(e,t)}function ee(e,t,r){return(t=te(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function te(e){var t=function(e){if("object"!=Y(e)||!e)return e;var t=e[Symbol.toPrimitive];if(void 0!==t){var r=t.call(e,"string");if("object"!=Y(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==Y(t)?t:t+""}var re=new WeakMap,ne=function(){function e(t,r){var n,i,o,a;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),i=this,a=[t],o=Z(o=e),ee(n=J(i,Q()?Reflect.construct(o,a||[],Z(i).constructor):o.apply(i,a)),"sole",Symbol("ripple")),ee(n,"defaults",E),ee(n,"interactive",n.defaults.interactive),ee(n,"dropRadius",void 0),ee(n,"crossOrigin",""),ee(n,"imageUrl",void 0),ee(n,"idleFluctuations",!0),function(e,t,r){(function(e,t){if(t.has(e))throw new TypeError("Cannot initialize the same private elements twice on an object")})(e,t),t.set(e,r)}(n,re,!1),ee(n,"imageSource",""),ee(n,"renderProgram",void 0),console.log("初始化参数",r),S[n.sole]=new P(E),Object.defineProperties(n,{defaults:{value:n.defaults,writable:!1,enumerable:!1,configurable:!1}}),r&&"boolean"!=typeof r.interactive&&delete r.interactive;var s=K(K({},n.defaults),r);return n.accelerating=s.accelerating,n.dropRadius=s.dropRadius,n.resolution=s.resolution,n.interactive=s.interactive,n.perturbance=s.perturbance,n.crossOrigin=s.crossOrigin,n.imageUrl=s.imageUrl,n.idleFluctuations=s.idleFluctuations,n.playingState=s.playingState,n.raindropsTimeInterval=s.raindropsTimeInterval,!1===n.initState||null===t.parentElement||null===n.config||null===n.gl?(n.initState=!1,J(n)):(S[n.sole].parentElement=t.parentElement,function(e){var t=e.parentElement;e.width=t.clientWidth,e.height=t.clientHeight,(0,l.setStyle)(e,{position:"absolute",left:0,top:0,right:0,bottom:0,zIndex:-1,pointerEvents:"none"})}(t),Reflect.apply(H,n,[]),n)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&$(e,t)}(e,b),t=e,r=[{key:"accelerating",set:function(e){e>100||e<2||(S[this.sole].accelerating=e)}},{key:"resolution",set:function(e){e<100||e>550||(S[this.sole].resolution=e)}},{key:"perturbance",set:function(e){e<1e-4||e>1||(S[this.sole].perturbance=e)}},{key:"playingState",set:function(e){S[this.sole].running=!1!==e}},{key:"initialized",get:function(){return t=this,(e=re).get(function(e,t,r){if("function"==typeof e?e===t:e.has(t))return arguments.length<3?t:r;throw new TypeError("Private element is not present on this object")}(e,t));var e,t}},{key:"raindropsTimeInterval",set:function(e){e<10||e>12e3||(S[this.sole].raindropsTimeInterval=e)}},{key:"raindropsFall",value:function(){var e=S[this.sole].parentElement,t=window.getComputedStyle(e),r=function(e){return function(e=1,t=0){let r=Math.ceil(Number(t)),n=Math.floor(Number(e));return r>n&&([n,r]=[r,n]),Math.floor(Math.random()*(n-r+1)+r)}(parseInt(e))},n=t.width,i=t.height;this.drop(r(n),r(i),this.dropRadius,.03)}},{key:"drop",value:function(e,t,r,n){var i=this.gl,o=S[this.sole],a=o.resolution,l=o.parentElement,s=o.dropProgram,u=o.textures,c=o.framebuffers,p=o.bufferWriteIndex,h=o.bufferReadIndex,d=l.offsetWidth,m=l.offsetHeight,g=Math.max(d,m);r/=g;var v=new Float32Array([(2*e-d)/g,(m-2*t)/g]);i.viewport(0,0,a,a),i.bindFramebuffer(i.FRAMEBUFFER,c[p]),Reflect.apply(f,this,[u[h]]),i.useProgram(s.id),i.uniform2fv(s.locations.center,v),i.uniform1f(s.locations.radius,r),i.uniform1f(s.locations.strength,n),Reflect.apply(F,this,[]),Reflect.apply(A,this,[])}},{key:"updateSize",value:function(){var e=S[this.sole].parentElement,t=e.offsetWidth,r=e.offsetHeight;t==this.canvas.width&&r==this.canvas.height||(this.canvas.width=t,this.canvas.height=r)}},{key:"destroy",value:function(){S[this.sole].animationFrameId&&window.cancelAnimationFrame(S[this.sole].animationFrameId);var e=S[this.sole],t=e.parentElement,r=e.events;t&&(Object.keys(r).forEach((function(e){return t.removeEventListener&&t.removeEventListener(e,r[e])})),t.removeAttribute&&t.removeAttribute("data-ripples")),this.styleElement&&this.styleElement.remove(),this.gl=null,Reflect.apply(I,this,[]);var n=S[this.sole];Object.keys(n).forEach((function(e){return n[e]=null})),S[this.sole]=null,this.gl&&(this.gl=null),window.removeEventListener("resize",this.updateSize)}},{key:"show",value:function(){S[this.sole].visible=!0,this.canvas.style.visibility="visible",Reflect.apply(O,this,[])}},{key:"hide",value:function(){S[this.sole].visible=!1,this.canvas.style.visibility="hidden",Reflect.apply(I,this,[])}},{key:"pause",value:function(){this.playingState=!1}},{key:"play",value:function(){this.playingState=!0}},{key:"changePlayingState",value:function(){this.playingState=!S[this.sole].running}},{key:"set",value:function(e,t){"imageUrl"===e?(this.imageUrl=t,Reflect.apply(D,this,[])):this[e]=t}}],r&&V(t.prototype,r),Object.defineProperty(t,"prototype",{writable:!1}),t;var t,r}();function ie(e,t){var r=(0,a.useRef)(null);return(0,a.useEffect)((function(){var n=e.current;return r.current=new ne(n,t&&t.option),function(){return r.current&&r.current.destroy()||void 0}}),[]),r}var oe=o.n;export{oe as useRipples};
@@ -1 +0,0 @@
1
- (()=>{"use strict";var e={953:e=>{e.exports=require("react")}},r={};function t(o){var u=r[o];if(void 0!==u)return u.exports;var n=r[o]={exports:{}};return e[o](n,n.exports,t),n.exports}t.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return t.d(r,{a:r}),r},t.d=(e,r)=>{for(var o in r)t.o(r,o)&&!t.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:r[o]})},t.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),t.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};t.r(o),t.d(o,{useTimeId:()=>n});var u=t(953);function n(){var e=(0,u.useRef)(void 0);return(0,u.useEffect)((function(){return function(){e.current&&clearTimeout(e.current)}}),[]),e}module.exports["oops-ui"]=o})();
@@ -1 +0,0 @@
1
- import*as e from"react";var r={649:(r,t,o)=>{var u,n;r.exports=(u={useEffect:()=>e.useEffect,useRef:()=>e.useRef},n={},o.d(n,u),n)}},t={};function o(e){var u=t[e];if(void 0!==u)return u.exports;var n=t[e]={exports:{}};return r[e](n,n.exports,o),n.exports}o.d=(e,r)=>{for(var t in r)o.o(r,t)&&!o.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},o.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r);var u={};o.d(u,{O:()=>f});var n=o(649);function f(){var e=(0,n.useRef)(void 0);return(0,n.useEffect)((function(){return function(){e.current&&clearTimeout(e.current)}}),[]),e}var a=u.O;export{a as useTimeId};