@uxf/ui 1.0.0-beta.12 → 1.0.0-beta.13

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 (85) hide show
  1. package/avatar/avatar.d.ts +14 -0
  2. package/avatar/avatar.jsx +10 -0
  3. package/avatar/avatar.stories.d.ts +8 -0
  4. package/avatar/avatar.stories.jsx +29 -0
  5. package/avatar/theme.d.ts +5 -0
  6. package/{types.js → avatar/theme.js} +0 -0
  7. package/button/button.css +75 -0
  8. package/button/button.d.ts +1 -0
  9. package/button/button.jsx +1 -1
  10. package/button/button.stories.jsx +4 -4
  11. package/button/button.stories.tsx +98 -0
  12. package/button/button.tsx +36 -0
  13. package/button/index.ts +2 -0
  14. package/button/theme.ts +20 -0
  15. package/image-gallery/components/close-button.tsx +19 -0
  16. package/image-gallery/components/dot.tsx +17 -0
  17. package/image-gallery/components/gallery.tsx +67 -0
  18. package/image-gallery/components/icon-chevron-left.tsx +18 -0
  19. package/image-gallery/components/icon-chevron-right.tsx +18 -0
  20. package/image-gallery/components/icon-close.tsx +22 -0
  21. package/image-gallery/components/next-button.tsx +19 -0
  22. package/image-gallery/components/previous-button.tsx +19 -0
  23. package/image-gallery/context.tsx +17 -0
  24. package/image-gallery/image-gallery.stories.tsx +33 -0
  25. package/image-gallery/image-gallery.tsx +59 -0
  26. package/image-gallery/image.tsx +19 -0
  27. package/image-gallery/index.ts +3 -0
  28. package/image-gallery/types.ts +6 -0
  29. package/image-gallery/use-image.ts +17 -0
  30. package/input/index.d.ts +12 -6
  31. package/input/index.js +14 -13
  32. package/input/index.ts +14 -0
  33. package/input/input-basic.css +18 -0
  34. package/input/input-element.d.ts +8 -0
  35. package/input/input-element.jsx +11 -0
  36. package/input/input-element.tsx +30 -0
  37. package/input/input-left-addon.jsx +1 -1
  38. package/input/input-left-addon.tsx +12 -0
  39. package/input/input-left-element.jsx +1 -1
  40. package/input/input-left-element.tsx +11 -0
  41. package/input/input-right-addon.jsx +1 -1
  42. package/input/input-right-addon.tsx +11 -0
  43. package/input/input-right-element.jsx +1 -1
  44. package/input/input-right-element.tsx +11 -0
  45. package/input/input.css +75 -0
  46. package/input/input.d.ts +8 -7
  47. package/input/input.jsx +61 -7
  48. package/input/input.stories.d.ts +9 -4
  49. package/input/input.stories.jsx +37 -59
  50. package/input/input.stories.tsx +79 -0
  51. package/input/input.tsx +70 -0
  52. package/input/theme.ts +7 -0
  53. package/package.json +8 -4
  54. package/text-input/index.d.ts +1 -0
  55. package/{storybook → text-input}/index.js +1 -1
  56. package/text-input/index.ts +1 -0
  57. package/text-input/text-input.css +29 -0
  58. package/text-input/text-input.d.ts +22 -0
  59. package/text-input/text-input.jsx +32 -0
  60. package/text-input/text-input.stories.d.ts +9 -0
  61. package/text-input/text-input.stories.jsx +55 -0
  62. package/text-input/text-input.stories.tsx +72 -0
  63. package/text-input/text-input.tsx +99 -0
  64. package/tsconfig.json +7 -0
  65. package/tsconfig.tsbuildinfo +1 -0
  66. package/types/form-control-props.d.ts +1 -1
  67. package/types/form-control-props.ts +35 -0
  68. package/types/index.d.ts +1 -0
  69. package/types/index.js +17 -0
  70. package/types/index.ts +1 -0
  71. package/{storybook → utils}/action.d.ts +0 -0
  72. package/{storybook → utils}/action.js +0 -0
  73. package/utils/action.ts +14 -0
  74. package/utils/component-structure-analyzer.css +28 -0
  75. package/utils/component-structure-analyzer.tsx +12 -0
  76. package/utils/cx.ts +56 -0
  77. package/utils/forwardRef.ts +30 -0
  78. package/{storybook → utils}/storybook-config.d.ts +1 -1
  79. package/{storybook → utils}/storybook-config.jsx +0 -0
  80. package/utils/storybook-config.tsx +42 -0
  81. package/input/input-group.d.ts +0 -9
  82. package/input/input-group.jsx +0 -63
  83. package/postcss.config.js +0 -8
  84. package/storybook/index.d.ts +0 -1
  85. package/types.d.ts +0 -6
@@ -0,0 +1,14 @@
1
+ /// <reference types="react" />
2
+ import { AvatarSizes } from "./theme";
3
+ interface FileResponse {
4
+ uuid: string;
5
+ namespace?: string;
6
+ extension: string;
7
+ }
8
+ export interface AvatarProps {
9
+ src: FileResponse | string | null | undefined;
10
+ size?: keyof AvatarSizes;
11
+ rounded?: boolean;
12
+ }
13
+ export declare function Avatar(props: AvatarProps): JSX.Element;
14
+ export {};
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Avatar = void 0;
4
+ const cx_1 = require("@uxf/core/utils/cx");
5
+ function Avatar(props) {
6
+ var _a;
7
+ const className = (0, cx_1.cx)("avatar", `avatar--size-${props.size}`, `avatar--variant-${(_a = props.circular) !== null && _a !== void 0 ? _a : "default"}`);
8
+ return <img src={props.src} className={className}/>;
9
+ }
10
+ exports.Avatar = Avatar;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ import { Avatar } from "./avatar";
3
+ declare const _default: {
4
+ title: string;
5
+ component: typeof Avatar;
6
+ };
7
+ export default _default;
8
+ export declare function Default(): JSX.Element;
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.Default = void 0;
7
+ const react_1 = __importDefault(require("react"));
8
+ const storybook_config_1 = require("@uxf/ui/utils/storybook-config");
9
+ const avatar_1 = require("./avatar");
10
+ exports.default = {
11
+ title: "UI/Avatar",
12
+ component: avatar_1.Avatar,
13
+ };
14
+ function Default() {
15
+ const config = (0, storybook_config_1.useStorybookConfig)("Button");
16
+ return (<div className="space-y-4">
17
+ <div className="flex flex-row items-center space-x-4">
18
+ <avatar_1.Avatar src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" size="8"/>
19
+ <avatar_1.Avatar src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" size="10"/>
20
+ <avatar_1.Avatar src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" size="12"/>
21
+ </div>
22
+ <div className="flex flex-row items-center space-x-4">
23
+ <avatar_1.Avatar src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" size="8" variant="circular"/>
24
+ <avatar_1.Avatar src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" size="10" variant="circular"/>
25
+ <avatar_1.Avatar src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" size="12" variant="circular"/>
26
+ </div>
27
+ </div>);
28
+ }
29
+ exports.Default = Default;
@@ -0,0 +1,5 @@
1
+ export interface AvatarSizes {
2
+ "8": true;
3
+ "10": true;
4
+ "12": true;
5
+ }
File without changes
@@ -0,0 +1,75 @@
1
+ .button {
2
+ @apply inline-flex items-center rounded font-medium shadow-md shadow-sm focus:outline-none focus:ring-2 focus:ring-offset-2;
3
+
4
+ &--disabled {
5
+ @apply pointer-events-none opacity-40;
6
+ }
7
+
8
+ &--size-xs {
9
+ @apply px-2.5 py-1.5 text-xs;
10
+ }
11
+
12
+ &--size-sm {
13
+ @apply px-3 py-2 text-sm leading-4;
14
+ }
15
+
16
+ &--size-default {
17
+ @apply px-4 py-2 text-sm;
18
+ }
19
+
20
+ &--size-lg {
21
+ @apply px-4 py-2 text-base;
22
+ }
23
+
24
+ &--size-xl {
25
+ @apply border px-6 py-3 text-base;
26
+ }
27
+
28
+ &--variant-outlined {
29
+ @apply border bg-white;
30
+
31
+ &.button--color-default {
32
+ @apply border-primary-500 text-primary-700 hover:bg-primary-50 focus:ring-primary-500;
33
+ }
34
+
35
+ &.button--color-white {
36
+ @apply border-gray-300 text-gray-700 hover:bg-gray-50 focus:ring-gray-500;
37
+ }
38
+
39
+ &.button--color-success {
40
+ @apply border-success-500 text-success-700 hover:bg-success-50 focus:ring-success-500;
41
+ }
42
+
43
+ &.button--color-warning {
44
+ @apply border-warning-500 text-warning-700 hover:bg-warning-50 focus:ring-warning-500;
45
+ }
46
+
47
+ &.button--color-error {
48
+ @apply border-error-500 text-error-700 hover:bg-error-50 focus:ring-error-500;
49
+ }
50
+ }
51
+
52
+ &--variant-default {
53
+ @apply border-transparent text-white;
54
+
55
+ &.button--color-default {
56
+ @apply bg-primary-500 hover:bg-primary-600 focus:ring-primary-400;
57
+ }
58
+
59
+ &.button--color-white {
60
+ @apply bg-gray-50 text-gray-700 shadow-none hover:bg-gray-100 focus:ring-gray-500;
61
+ }
62
+
63
+ &.button--color-success {
64
+ @apply bg-success-500 hover:bg-success-600 focus:ring-success-400;
65
+ }
66
+
67
+ &.button--color-warning {
68
+ @apply bg-warning-500 hover:bg-warning-600 focus:ring-warning-400;
69
+ }
70
+
71
+ &.button--color-error {
72
+ @apply bg-error-500 hover:bg-error-600 focus:ring-error-400;
73
+ }
74
+ }
75
+ }
@@ -8,6 +8,7 @@ interface ButtonProps {
8
8
  loading?: boolean;
9
9
  startAdornment?: ReactNode;
10
10
  endAdornment?: ReactNode;
11
+ type?: "button" | "submit" | "reset";
11
12
  children: ReactNode;
12
13
  }
13
14
  declare function Button(props: ButtonProps): JSX.Element;
package/button/button.jsx CHANGED
@@ -8,7 +8,7 @@ const cx_1 = require("@uxf/core/utils/cx");
8
8
  function Button(props) {
9
9
  var _a, _b, _c;
10
10
  const className = (0, cx_1.cx)("button", `button--color-${(_a = props.color) !== null && _a !== void 0 ? _a : "default"}`, `button--size-${(_b = props.size) !== null && _b !== void 0 ? _b : "default"}`, `button--variant-${(_c = props.variant) !== null && _c !== void 0 ? _c : "default"}`, props.disabled && `button--disabled`, props.loading && `button--loading`);
11
- return (<button type="button" className={className}>
11
+ return (<button type={props.type} className={className}>
12
12
  {props.startAdornment}
13
13
  {props.children}
14
14
  {props.endAdornment}
@@ -6,14 +6,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.Loading = exports.Disabled = exports.Default = void 0;
7
7
  const react_1 = __importDefault(require("react"));
8
8
  const button_1 = require("@uxf/ui/button");
9
- const storybook_1 = require("@uxf/ui/storybook");
9
+ const storybook_config_1 = require("@uxf/ui/utils/storybook-config");
10
10
  const react_2 = require("react");
11
11
  exports.default = {
12
12
  title: "UI/Button",
13
13
  component: button_1.Button,
14
14
  };
15
15
  function Default() {
16
- const config = (0, storybook_1.useStorybookConfig)("Button");
16
+ const config = (0, storybook_config_1.useStorybookConfig)("Button");
17
17
  return (<div className="space-y-2">
18
18
  {config.variants.map((variant) => (<react_2.Fragment key={variant}>
19
19
  {config.colors.map((color) => (<react_2.Fragment key={color}>
@@ -28,7 +28,7 @@ function Default() {
28
28
  }
29
29
  exports.Default = Default;
30
30
  function Disabled() {
31
- const config = (0, storybook_1.useStorybookConfig)("Button");
31
+ const config = (0, storybook_config_1.useStorybookConfig)("Button");
32
32
  return (<div className="space-y-2">
33
33
  {config.variants.map((variant) => (<react_2.Fragment key={variant}>
34
34
  {config.colors.map((color) => (<react_2.Fragment key={color}>
@@ -43,7 +43,7 @@ function Disabled() {
43
43
  }
44
44
  exports.Disabled = Disabled;
45
45
  function Loading() {
46
- const config = (0, storybook_1.useStorybookConfig)("Button");
46
+ const config = (0, storybook_config_1.useStorybookConfig)("Button");
47
47
  return (<div className="space-y-2">
48
48
  {config.variants.map((variant) => (<react_2.Fragment key={variant}>
49
49
  {config.colors.map((color) => (<react_2.Fragment key={color}>
@@ -0,0 +1,98 @@
1
+ import React from "react";
2
+ import { Button } from "@uxf/ui/button";
3
+ import { useStorybookConfig } from "@uxf/ui/utils/storybook-config";
4
+ import { Fragment } from "react";
5
+
6
+ export default {
7
+ title: "UI/Button",
8
+ component: Button,
9
+ };
10
+
11
+ export function Default() {
12
+ const config = useStorybookConfig("Button");
13
+
14
+ return (
15
+ <div className="space-y-2">
16
+ {config.variants.map((variant) => (
17
+ <Fragment key={variant}>
18
+ {config.colors.map((color) => (
19
+ <Fragment key={color}>
20
+ {config.sizes.map((size) => (
21
+ <div>
22
+ <Button
23
+ key={size}
24
+ variant={variant}
25
+ color={color}
26
+ size={size}
27
+ >
28
+ Button
29
+ </Button>
30
+ </div>
31
+ ))}
32
+ </Fragment>
33
+ ))}
34
+ </Fragment>
35
+ ))}
36
+ </div>
37
+ );
38
+ }
39
+
40
+ export function Disabled() {
41
+ const config = useStorybookConfig("Button");
42
+
43
+ return (
44
+ <div className="space-y-2">
45
+ {config.variants.map((variant) => (
46
+ <Fragment key={variant}>
47
+ {config.colors.map((color) => (
48
+ <Fragment key={color}>
49
+ {config.sizes.map((size) => (
50
+ <div>
51
+ <Button
52
+ key={size}
53
+ variant={variant}
54
+ color={color}
55
+ size={size}
56
+ disabled
57
+ >
58
+ Button
59
+ </Button>
60
+ </div>
61
+ ))}
62
+ </Fragment>
63
+ ))}
64
+ </Fragment>
65
+ ))}
66
+ </div>
67
+ );
68
+ }
69
+
70
+ export function Loading() {
71
+ const config = useStorybookConfig("Button");
72
+
73
+ return (
74
+ <div className="space-y-2">
75
+ {config.variants.map((variant) => (
76
+ <Fragment key={variant}>
77
+ {config.colors.map((color) => (
78
+ <Fragment key={color}>
79
+ {config.sizes.map((size) => (
80
+ <div>
81
+ <Button
82
+ key={size}
83
+ variant={variant}
84
+ color={color}
85
+ size={size}
86
+ loading
87
+ >
88
+ Button
89
+ </Button>
90
+ </div>
91
+ ))}
92
+ </Fragment>
93
+ ))}
94
+ </Fragment>
95
+ ))}
96
+ </div>
97
+ );
98
+ }
@@ -0,0 +1,36 @@
1
+ import React, { ReactNode } from "react";
2
+ import { ButtonColors, ButtonSizes, ButtonVariants } from "@uxf/ui/button";
3
+ import { cx } from "@uxf/core/utils/cx";
4
+
5
+ interface ButtonProps {
6
+ variant?: keyof ButtonVariants;
7
+ color?: keyof ButtonColors;
8
+ size?: keyof ButtonSizes;
9
+ disabled?: boolean;
10
+ loading?: boolean;
11
+ startAdornment?: ReactNode;
12
+ endAdornment?: ReactNode;
13
+ type?: "button" | "submit" | "reset";
14
+ children: ReactNode;
15
+ }
16
+
17
+ function Button(props: ButtonProps) {
18
+ const className = cx(
19
+ "button",
20
+ `button--color-${props.color ?? "default"}`,
21
+ `button--size-${props.size ?? "default"}`,
22
+ `button--variant-${props.variant ?? "default"}`,
23
+ props.disabled && `button--disabled`,
24
+ props.loading && `button--loading`
25
+ );
26
+
27
+ return (
28
+ <button type={props.type} className={className}>
29
+ {props.startAdornment}
30
+ {props.children}
31
+ {props.endAdornment}
32
+ </button>
33
+ );
34
+ }
35
+
36
+ export default Button;
@@ -0,0 +1,2 @@
1
+ export { default as Button } from "@uxf/ui/button/button";
2
+ export * from "@uxf/ui/button/theme";
@@ -0,0 +1,20 @@
1
+ export interface ButtonVariants {
2
+ outlined: true;
3
+ default: true;
4
+ }
5
+
6
+ export interface ButtonSizes {
7
+ xs: true;
8
+ sm: true;
9
+ default: true;
10
+ lg: true;
11
+ xl: true;
12
+ }
13
+
14
+ export interface ButtonColors {
15
+ default: true;
16
+ white: true;
17
+ success: true;
18
+ warning: true;
19
+ error: true;
20
+ }
@@ -0,0 +1,19 @@
1
+ import React from "react";
2
+ import IconClose from "./icon-close";
3
+
4
+ interface CloseButtonProps {
5
+ onClick: () => void;
6
+ }
7
+
8
+ function CloseButton(props: CloseButtonProps) {
9
+ return (
10
+ <button
11
+ className="bg-black bg-opacity-50 p-3"
12
+ onClick={() => props.onClick()}
13
+ >
14
+ <IconClose />
15
+ </button>
16
+ );
17
+ }
18
+
19
+ export default CloseButton;
@@ -0,0 +1,17 @@
1
+ import { cx } from "@uxf/core/utils/cx";
2
+ import React from "react";
3
+
4
+ interface DotProps {
5
+ active?: boolean;
6
+ }
7
+
8
+ function Dot(props: DotProps) {
9
+ const className = cx(
10
+ "h-2 w-2 rounded-full",
11
+ props.active ? "bg-gray-500" : "bg-white"
12
+ );
13
+
14
+ return <div className={className} />;
15
+ }
16
+
17
+ export default Dot;
@@ -0,0 +1,67 @@
1
+ import CloseButton from "./close-button";
2
+ import PreviousButton from "./previous-button";
3
+ import NextButton from "./next-button";
4
+ import Dot from "./dot";
5
+ import React, { useEffect } from "react";
6
+ import { ImageGalleryImageProps } from "../types";
7
+
8
+ interface GalleryProps {
9
+ onClose: () => void;
10
+ onNext: () => void;
11
+ onPrevious: () => void;
12
+ imageIndex: number;
13
+ images: ImageGalleryImageProps[];
14
+ }
15
+
16
+ function Gallery(props: GalleryProps) {
17
+ useEffect(() => {
18
+ const onKeyDown = (event: KeyboardEvent) => {
19
+ switch (event.key) {
20
+ case "ArrowRight":
21
+ props.onNext();
22
+ break;
23
+ case "ArrowLeft":
24
+ props.onPrevious();
25
+ break;
26
+ case "Escape":
27
+ props.onClose();
28
+ break;
29
+ }
30
+ };
31
+
32
+ document.body.style.overflow = "hidden";
33
+ window.addEventListener("keydown", onKeyDown);
34
+
35
+ return () => {
36
+ document.body.style.overflow = "auto";
37
+ window.removeEventListener("keydown", onKeyDown);
38
+ };
39
+ }, []);
40
+
41
+ return (
42
+ <div className="fixed inset-0 top-0 bottom-0 z-50 flex flex-col bg-black bg-opacity-75 transition-opacity">
43
+ <div className="flex justify-end">
44
+ <CloseButton onClick={props.onClose} />
45
+ </div>
46
+ <div className="container mx-auto flex h-full flex-1 flex-col">
47
+ <div className="relative flex flex-1 items-center justify-center">
48
+ <img
49
+ className="absolute left-0 right-0 top-0 h-full w-full object-contain"
50
+ src={props.images[props.imageIndex].src}
51
+ />
52
+ <div className="pointer-events-none absolute inset-0 flex items-center justify-between p-2">
53
+ <PreviousButton onClick={props.onPrevious} />
54
+ <NextButton onClick={props.onNext} />
55
+ </div>
56
+ </div>
57
+ </div>
58
+ <div className="row mx-auto flex space-x-2 p-4">
59
+ {props.images.map((url, index) => (
60
+ <Dot key={url.src} active={index === props.imageIndex} />
61
+ ))}
62
+ </div>
63
+ </div>
64
+ );
65
+ }
66
+
67
+ export default Gallery;
@@ -0,0 +1,18 @@
1
+ import React from "react";
2
+
3
+ function IconChevronLeft() {
4
+ return (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ className="h-10 w-10 text-white"
8
+ fill="none"
9
+ viewBox="0 0 24 24"
10
+ stroke="currentColor"
11
+ strokeWidth={2}
12
+ >
13
+ <path strokeLinecap="round" strokeLinejoin="round" d="M15 19l-7-7 7-7" />
14
+ </svg>
15
+ );
16
+ }
17
+
18
+ export default IconChevronLeft;
@@ -0,0 +1,18 @@
1
+ import React from "react";
2
+
3
+ function IconChevronRight() {
4
+ return (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ className="h-10 w-10 text-white"
8
+ fill="none"
9
+ viewBox="0 0 24 24"
10
+ stroke="currentColor"
11
+ strokeWidth={2}
12
+ >
13
+ <path strokeLinecap="round" strokeLinejoin="round" d="M9 5l7 7-7 7" />
14
+ </svg>
15
+ );
16
+ }
17
+
18
+ export default IconChevronRight;
@@ -0,0 +1,22 @@
1
+ import React from "react";
2
+
3
+ function IconClose() {
4
+ return (
5
+ <svg
6
+ xmlns="http://www.w3.org/2000/svg"
7
+ fill="none"
8
+ viewBox="0 0 24 24"
9
+ stroke="currentColor"
10
+ strokeWidth={2}
11
+ className="h-10 w-10 text-white"
12
+ >
13
+ <path
14
+ strokeLinecap="round"
15
+ strokeLinejoin="round"
16
+ d="M6 18L18 6M6 6l12 12"
17
+ />
18
+ </svg>
19
+ );
20
+ }
21
+
22
+ export default IconClose;
@@ -0,0 +1,19 @@
1
+ import React from "react";
2
+ import IconChevronRight from "./icon-chevron-right";
3
+
4
+ interface NextButtonProps {
5
+ onClick: () => void;
6
+ }
7
+
8
+ function NextButton(props: NextButtonProps) {
9
+ return (
10
+ <button
11
+ className="pointer-events-auto rounded-full bg-black bg-opacity-50 p-2"
12
+ onClick={props.onClick}
13
+ >
14
+ <IconChevronRight />
15
+ </button>
16
+ );
17
+ }
18
+
19
+ export default NextButton;
@@ -0,0 +1,19 @@
1
+ import React from "react";
2
+ import IconChevronLeft from "./icon-chevron-left";
3
+
4
+ interface PreviousButtonProps {
5
+ onClick: () => void;
6
+ }
7
+
8
+ function PreviousButton(props: PreviousButtonProps) {
9
+ return (
10
+ <button
11
+ className="pointer-events-auto rounded-full bg-black bg-opacity-50 p-2"
12
+ onClick={props.onClick}
13
+ >
14
+ <IconChevronLeft />
15
+ </button>
16
+ );
17
+ }
18
+
19
+ export default PreviousButton;
@@ -0,0 +1,17 @@
1
+ import { createContext, useContext } from "react";
2
+ import { ImageGalleryImageProps } from "./types";
3
+
4
+ type ContextType = {
5
+ registerImage: (props: ImageGalleryImageProps) => void;
6
+ unregisterImage: (props: ImageGalleryImageProps) => void;
7
+ openGallery: (props: ImageGalleryImageProps) => void;
8
+ };
9
+
10
+ const ImageGalleryContext = createContext<ContextType>({
11
+ registerImage: () => null,
12
+ unregisterImage: () => null,
13
+ openGallery: () => null,
14
+ });
15
+
16
+ export const ImageGalleryProvider = ImageGalleryContext.Provider;
17
+ export const useImageGalleryContext = () => useContext(ImageGalleryContext);
@@ -0,0 +1,33 @@
1
+ import React from "react";
2
+ import ImageGallery from "./image-gallery";
3
+ import Image from "./image";
4
+
5
+ export default {
6
+ title: "Lab/ImageGallery",
7
+ component: ImageGallery,
8
+ parameters: { actions: { argTypesRegex: "^on.*" } },
9
+ };
10
+
11
+ const images = [
12
+ "https://opentopo.app/hero_image.jpeg",
13
+ "https://opentopo.app/generated/area-18/d/9/d9033d93-ea48-4f66-b0c1-6045c091b326_1024_1024_c.jpg",
14
+ "https://opentopo.app/generated/area-16/f/4/f4a4ca79-ea9e-44d1-a4ec-3c8ccfbcc218_1024_1024_c.jpg",
15
+ "https://opentopo.app/generated/area-1/8/b/8b84e378-1f55-4ce7-b750-b504091cb833_1024_1024_c.jpg",
16
+ "https://opentopo.app/generated/area-2/e/7/e7ec532b-20c2-407e-9305-fa7cfb71f01f_1024_1024_c.jpg",
17
+ ];
18
+
19
+ export function Default() {
20
+ return (
21
+ <ImageGallery>
22
+ <div className="flex-direction flex gap-2">
23
+ {images.map((src) => (
24
+ <Image
25
+ key={src}
26
+ src={src}
27
+ className="h-56 w-56 cursor-pointer object-cover transition-transform hover:scale-105"
28
+ />
29
+ ))}
30
+ </div>
31
+ </ImageGallery>
32
+ );
33
+ }