@oxyhq/services 0.0.53 → 0.0.55

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 (95) hide show
  1. package/dist/assets/dot-icon.d.ts +3 -0
  2. package/dist/assets/dot-icon.d.ts.map +1 -0
  3. package/dist/assets/dot-icon.js +6 -0
  4. package/dist/assets/verified-icon.d.ts +3 -0
  5. package/dist/assets/verified-icon.d.ts.map +1 -0
  6. package/dist/assets/verified-icon.js +10 -0
  7. package/dist/components/auth/AccountSwitcherModal.d.ts +5 -0
  8. package/dist/components/auth/AccountSwitcherModal.d.ts.map +1 -0
  9. package/dist/components/auth/AccountSwitcherModal.js +53 -0
  10. package/dist/components/auth/SessionOwnerButton.d.ts +3 -0
  11. package/dist/components/auth/SessionOwnerButton.d.ts.map +1 -0
  12. package/dist/components/auth/SessionOwnerButton.js +30 -0
  13. package/dist/components/auth/SignInButton.d.ts.map +1 -1
  14. package/dist/components/auth/SignInButton.js +6 -4
  15. package/dist/components/auth/styles/oavatar.module.css +34 -0
  16. package/dist/components/auth/styles/oavatar.module.css.map +1 -0
  17. package/dist/components/auth/styles/session-owner-modal.module.css +35 -0
  18. package/dist/components/auth/styles/session-owner-modal.module.css.map +1 -0
  19. package/dist/components/auth/styles/sign-in-button.module.css +30 -0
  20. package/dist/components/auth/styles/sign-in-button.module.css.map +1 -0
  21. package/dist/components/elements/button/components/button.d.ts +7 -0
  22. package/dist/components/elements/button/components/button.d.ts.map +1 -0
  23. package/dist/components/elements/button/components/button.js +6 -0
  24. package/dist/components/elements/button/components/styles/button.module.css +25 -0
  25. package/dist/components/elements/button/components/styles/button.module.css.map +1 -0
  26. package/dist/components/elements/button/index.d.ts +2 -0
  27. package/dist/components/elements/button/index.d.ts.map +1 -0
  28. package/dist/components/elements/button/index.js +1 -0
  29. package/dist/components/elements/ellipsis-wrapper/components/ellipsis-wrapper.d.ts +5 -0
  30. package/dist/components/elements/ellipsis-wrapper/components/ellipsis-wrapper.d.ts.map +1 -0
  31. package/dist/components/elements/ellipsis-wrapper/components/ellipsis-wrapper.js +4 -0
  32. package/dist/components/elements/ellipsis-wrapper/components/styles/ellipses-wrapper.module.css +11 -0
  33. package/dist/components/elements/ellipsis-wrapper/components/styles/ellipses-wrapper.module.css.map +1 -0
  34. package/dist/components/elements/ellipsis-wrapper/index.d.ts +2 -0
  35. package/dist/components/elements/ellipsis-wrapper/index.d.ts.map +1 -0
  36. package/dist/components/elements/ellipsis-wrapper/index.js +1 -0
  37. package/dist/components/elements/modal/components/confirmation-modal.d.ts +12 -0
  38. package/dist/components/elements/modal/components/confirmation-modal.d.ts.map +1 -0
  39. package/dist/components/elements/modal/components/confirmation-modal.js +21 -0
  40. package/dist/components/elements/modal/components/modal.d.ts +13 -0
  41. package/dist/components/elements/modal/components/modal.d.ts.map +1 -0
  42. package/dist/components/elements/modal/components/modal.js +111 -0
  43. package/dist/components/elements/modal/components/styles/confirmation-modal.module.css +105 -0
  44. package/dist/components/elements/modal/components/styles/confirmation-modal.module.css.map +1 -0
  45. package/dist/components/elements/modal/components/styles/modal.module.css +10 -0
  46. package/dist/components/elements/modal/components/styles/modal.module.css.map +1 -0
  47. package/dist/components/elements/modal/hooks/use-track-position.d.ts +5 -0
  48. package/dist/components/elements/modal/hooks/use-track-position.d.ts.map +1 -0
  49. package/dist/components/elements/modal/hooks/use-track-position.js +35 -0
  50. package/dist/components/elements/modal/index.d.ts +4 -0
  51. package/dist/components/elements/modal/index.d.ts.map +1 -0
  52. package/dist/components/elements/modal/index.js +3 -0
  53. package/dist/config/index.d.ts +1 -1
  54. package/dist/config/index.d.ts.map +1 -1
  55. package/dist/features/profile/components/avatar.d.ts +10 -0
  56. package/dist/features/profile/components/avatar.d.ts.map +1 -0
  57. package/dist/features/profile/components/avatar.js +7 -0
  58. package/dist/features/profile/components/styles/avatar.module.css +15 -0
  59. package/dist/features/profile/components/styles/avatar.module.css.map +1 -0
  60. package/dist/features/profile/components/styles/user-name.module.css +18 -0
  61. package/dist/features/profile/components/styles/user-name.module.css.map +1 -0
  62. package/dist/features/profile/components/styles/user-username.module.css +6 -0
  63. package/dist/features/profile/components/styles/user-username.module.css.map +1 -0
  64. package/dist/features/profile/components/user-name.d.ts +7 -0
  65. package/dist/features/profile/components/user-name.d.ts.map +1 -0
  66. package/dist/features/profile/components/user-name.js +8 -0
  67. package/dist/features/profile/components/user-username.d.ts +5 -0
  68. package/dist/features/profile/components/user-username.d.ts.map +1 -0
  69. package/dist/features/profile/components/user-username.js +7 -0
  70. package/dist/features/profile/index.d.ts +4 -0
  71. package/dist/features/profile/index.d.ts.map +1 -0
  72. package/dist/features/profile/index.js +3 -0
  73. package/dist/hooks/get-user.d.ts +2 -0
  74. package/dist/hooks/get-user.d.ts.map +1 -0
  75. package/dist/hooks/get-user.js +28 -0
  76. package/dist/hooks/getUserById.d.ts +2 -1
  77. package/dist/hooks/getUserById.d.ts.map +1 -1
  78. package/dist/hooks/getUserById.js +1 -1
  79. package/dist/hooks/use-user.d.ts +14 -0
  80. package/dist/hooks/use-user.d.ts.map +1 -0
  81. package/dist/hooks/use-user.js +8 -0
  82. package/dist/hooks/useOxySession.d.ts +1 -1
  83. package/dist/hooks/useOxySession.d.ts.map +1 -1
  84. package/dist/index.css +5 -0
  85. package/dist/index.css.map +1 -0
  86. package/dist/index.d.ts +3 -1
  87. package/dist/index.d.ts.map +1 -1
  88. package/dist/index.js +3 -1
  89. package/dist/interfaces/index.d.ts +10 -0
  90. package/dist/interfaces/index.d.ts.map +1 -0
  91. package/dist/interfaces/index.js +1 -0
  92. package/dist/utils/cn.d.ts +3 -0
  93. package/dist/utils/cn.d.ts.map +1 -0
  94. package/dist/utils/cn.js +5 -0
  95. package/package.json +9 -3
@@ -0,0 +1,105 @@
1
+ .container {
2
+ position: fixed;
3
+ top: 0;
4
+ left: 0;
5
+ bottom: 0;
6
+ right: 0;
7
+ width: fit-content;
8
+ max-width: 320px;
9
+ height: fit-content;
10
+ margin: auto;
11
+ background-color: var(--clr-background);
12
+ padding: 2em;
13
+ border-radius: 1rem;
14
+ }
15
+ .container .logo {
16
+ display: grid;
17
+ place-items: center;
18
+ margin-bottom: 1em;
19
+ }
20
+ .container .logo svg {
21
+ width: var(--fs-kilo);
22
+ height: var(--fs-kilo);
23
+ fill: var(--clr-primary);
24
+ }
25
+ .container h1 {
26
+ font-size: var(--fs-h2);
27
+ font-weight: var(--fw-700);
28
+ margin-bottom: 0.5em;
29
+ }
30
+ .container p {
31
+ font-size: var(--fs-milli);
32
+ color: var(--clr-tertiary);
33
+ margin-bottom: 2rem;
34
+ line-height: 1.4;
35
+ }
36
+ .container .buttons {
37
+ display: grid;
38
+ gap: 0.8rem;
39
+ }
40
+ .container .buttons button {
41
+ display: grid;
42
+ place-items: center;
43
+ padding: 0.9em;
44
+ border-radius: 100vmax;
45
+ font-size: var(--fs-milli);
46
+ font-weight: var(--fw-700);
47
+ cursor: pointer;
48
+ transition: background-color 0.2s ease;
49
+ }
50
+ .container .buttons .delete {
51
+ background-color: var(--clr-red);
52
+ }
53
+ .container .buttons .delete:hover {
54
+ background-color: var(--clr-red-hover);
55
+ }
56
+ .container .buttons .delete:active {
57
+ background-color: var(--clr-red-active);
58
+ }
59
+ .container .buttons .delete:focus-visible {
60
+ outline: 2px solid var(--clr-secondary);
61
+ background-color: var(--clr-red-hover);
62
+ }
63
+ .container .buttons .unfollow {
64
+ background-color: var(--clr-secondary);
65
+ color: var(--clr-background);
66
+ }
67
+ .container .buttons .unfollow:hover {
68
+ background-color: var(--clr-secondary-hover);
69
+ }
70
+ .container .buttons .unfollow:active {
71
+ background-color: var(--clr-secondary-active);
72
+ }
73
+ .container .buttons .unfollow:focus-visible {
74
+ outline: 2px solid var(--clr-secondary);
75
+ }
76
+ .container .buttons .signout {
77
+ background-color: var(--clr-secondary);
78
+ color: var(--clr-background);
79
+ }
80
+ .container .buttons .signout:hover {
81
+ background-color: var(--clr-signout-logout-hover);
82
+ }
83
+ .container .buttons .signout:active {
84
+ background-color: var(--clr-signout-logout-active);
85
+ }
86
+ .container .buttons .signout:focus-visible {
87
+ outline: 2px solid var(--clr-secondary);
88
+ background-color: var(--clr-signout-logout-hover);
89
+ }
90
+ .container .buttons .cancel {
91
+ color: var(--clr-secondary);
92
+ border: 1px solid var(--clr-tertiary);
93
+ }
94
+ .container .buttons .cancel:hover {
95
+ background-color: var(--clr-trends-hover);
96
+ }
97
+ .container .buttons .cancel:active {
98
+ background-color: var(--clr-trends-active);
99
+ }
100
+ .container .buttons .cancel:focus-visible {
101
+ outline: 2px solid var(--clr-secondary);
102
+ background-color: var(--clr-trends-hover);
103
+ }
104
+
105
+ /*# sourceMappingURL=confirmation-modal.module.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sourceRoot":"","sources":["../../../../../../src/components/elements/modal/components/styles/confirmation-modal.module.scss"],"names":[],"mappings":"AAAA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;;AAIJ;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;EACA;;AAIJ;EACE;EACA;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;;AAIJ;EACE;EACA;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;EACA;;AAIJ;EACE;EACA;;AAEA;EACE;;AAGF;EACE;;AAGF;EACE;EACA","file":"confirmation-modal.module.css"}
@@ -0,0 +1,10 @@
1
+ .container {
2
+ z-index: var(--z-index-modal-backdrop);
3
+ position: fixed;
4
+ top: 0;
5
+ left: 0;
6
+ width: 100%;
7
+ height: 100%;
8
+ }
9
+
10
+ /*# sourceMappingURL=modal.module.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sourceRoot":"","sources":["../../../../../../src/components/elements/modal/components/styles/modal.module.scss"],"names":[],"mappings":"AAAA;EACE;EACA;EACA;EACA;EACA;EACA","file":"modal.module.css"}
@@ -0,0 +1,5 @@
1
+ export declare const useTrackPosition: ({ buttonRef, trackScroll, }: {
2
+ buttonRef: React.RefObject<HTMLButtonElement>;
3
+ trackScroll?: boolean;
4
+ }) => DOMRect | null;
5
+ //# sourceMappingURL=use-track-position.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"use-track-position.d.ts","sourceRoot":"","sources":["../../../../../src/components/elements/modal/hooks/use-track-position.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,gBAAgB,gCAG1B;IACD,SAAS,EAAE,KAAK,CAAC,SAAS,CAAC,iBAAiB,CAAC,CAAC;IAC9C,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB,mBAuCA,CAAC"}
@@ -0,0 +1,35 @@
1
+ "use client";
2
+ import { useState, useLayoutEffect } from "react";
3
+ export const useTrackPosition = ({ buttonRef, trackScroll = false, }) => {
4
+ const [buttonBoundaries, setButtonBoundaries] = useState(buttonRef?.current?.getBoundingClientRect() ?? null);
5
+ useLayoutEffect(() => {
6
+ const handleResize = () => {
7
+ if (buttonRef?.current) {
8
+ setButtonBoundaries(buttonRef.current.getBoundingClientRect());
9
+ }
10
+ };
11
+ window.addEventListener("resize", handleResize);
12
+ if (trackScroll) {
13
+ window.addEventListener("scroll", handleResize);
14
+ }
15
+ return () => {
16
+ window.removeEventListener("resize", handleResize);
17
+ if (trackScroll) {
18
+ window.removeEventListener("scroll", handleResize);
19
+ }
20
+ };
21
+ }, [
22
+ buttonRef,
23
+ buttonRef.current?.getBoundingClientRect,
24
+ trackScroll,
25
+ setButtonBoundaries,
26
+ ]);
27
+ useLayoutEffect(() => {
28
+ setButtonBoundaries(buttonRef.current?.getBoundingClientRect() ?? null);
29
+ }, [
30
+ buttonRef,
31
+ buttonRef.current?.getBoundingClientRect,
32
+ setButtonBoundaries,
33
+ ]);
34
+ return buttonBoundaries;
35
+ };
@@ -0,0 +1,4 @@
1
+ export * from "./components/modal";
2
+ export * from "./components/confirmation-modal";
3
+ export * from "./hooks/use-track-position";
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/elements/modal/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,iCAAiC,CAAC;AAChD,cAAc,4BAA4B,CAAC"}
@@ -0,0 +1,3 @@
1
+ export * from "./components/modal";
2
+ export * from "./components/confirmation-modal";
3
+ export * from "./hooks/use-track-position";
@@ -15,7 +15,7 @@ declare global {
15
15
  }
16
16
  }
17
17
  }
18
- export declare const NODE_ENV: "development" | "production" | "test";
18
+ export declare const NODE_ENV: "development" | "production";
19
19
  export declare const OXY_AUTH_URL: string;
20
20
  export {};
21
21
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/config/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,QAAA,MAAM,SAAS;;;;;;;;;EAGb,CAAC;AAEH,OAAO,CAAC,MAAM,CAAC;IAEb,UAAU,MAAM,CAAC;QACf,UAAU,UAAW,SAAQ,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC;SAAG;KAC1D;CACF;AAED,eAAO,MAAM,QAAQ,uCAAuB,CAAC;AAC7C,eAAO,MAAM,YAAY,QACoD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/config/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,QAAA,MAAM,SAAS;;;;;;;;;EAGb,CAAC;AAEH,OAAO,CAAC,MAAM,CAAC;IAEb,UAAU,MAAM,CAAC;QACf,UAAU,UAAW,SAAQ,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC;SAAG;KAC1D;CACF;AAED,eAAO,MAAM,QAAQ,8BAAuB,CAAC;AAC7C,eAAO,MAAM,YAAY,QACoD,CAAC"}
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ interface IAvatar extends React.ImgHTMLAttributes<HTMLImageElement> {
3
+ userImage: string | null | undefined;
4
+ className?: string;
5
+ width?: number;
6
+ height?: number;
7
+ }
8
+ export declare const Avatar: ({ userImage, className, ...props }: IAvatar) => React.JSX.Element;
9
+ export {};
10
+ //# sourceMappingURL=avatar.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"avatar.d.ts","sourceRoot":"","sources":["../../../../src/features/profile/components/avatar.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,UAAU,OAAQ,SAAQ,KAAK,CAAC,iBAAiB,CAAC,gBAAgB,CAAC;IACjE,SAAS,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IACrC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,MAAM,uCAAwC,OAAO,sBAiBjE,CAAC"}
@@ -0,0 +1,7 @@
1
+ import Image from "next/image";
2
+ import React from "react";
3
+ import { cn } from "../../../utils/cn";
4
+ export const Avatar = ({ userImage, className, ...props }) => {
5
+ return (React.createElement("div", { className: cn("relative aspect-square w-[calc(var(--tw-fs-kilo)+9px)] overflow-hidden rounded-full", className) },
6
+ React.createElement(Image, { ...props, src: userImage || `/user_placeholder.png`, alt: "profile picture", fill: true, className: "block size-full object-cover" })));
7
+ };
@@ -0,0 +1,15 @@
1
+ .container {
2
+ position: relative;
3
+ width: var(--avatar-width);
4
+ border-radius: 50%;
5
+ overflow: hidden;
6
+ aspect-ratio: 1/1;
7
+ }
8
+ .container img {
9
+ display: block;
10
+ width: 100%;
11
+ height: 100%;
12
+ object-fit: cover;
13
+ }
14
+
15
+ /*# sourceMappingURL=avatar.module.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sourceRoot":"","sources":["../../../../../src/features/profile/components/styles/avatar.module.scss"],"names":[],"mappings":"AAAA;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA","file":"avatar.module.css"}
@@ -0,0 +1,18 @@
1
+ .container {
2
+ font-size: var(--fs-milli);
3
+ font-weight: var(--fw-500);
4
+ color: var(--clr-secondary);
5
+ display: grid;
6
+ grid-auto-flow: column;
7
+ }
8
+ .container span {
9
+ white-space: nowrap;
10
+ overflow: hidden;
11
+ text-overflow: ellipsis;
12
+ }
13
+
14
+ .hover:hover {
15
+ text-decoration: underline;
16
+ }
17
+
18
+ /*# sourceMappingURL=user-name.module.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sourceRoot":"","sources":["../../../../../src/features/profile/components/styles/user-name.module.scss"],"names":[],"mappings":"AAAA;EACE;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;;;AAKF;EACE","file":"user-name.module.css"}
@@ -0,0 +1,6 @@
1
+ .container {
2
+ font-size: var(--fs-milli);
3
+ color: var(--clr-tertiary);
4
+ }
5
+
6
+ /*# sourceMappingURL=user-username.module.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sourceRoot":"","sources":["../../../../../src/features/profile/components/styles/user-username.module.scss"],"names":[],"mappings":"AAAA;EACE;EACA","file":"user-username.module.css"}
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ export declare const UserName: ({ name, isVerified, hover, }: {
3
+ name: string | undefined;
4
+ isVerified?: boolean | undefined;
5
+ hover?: boolean | undefined;
6
+ }) => React.JSX.Element;
7
+ //# sourceMappingURL=user-name.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"user-name.d.ts","sourceRoot":"","sources":["../../../../src/features/profile/components/user-name.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,eAAO,MAAM,QAAQ,iCAIlB;IACD,IAAI,EAAE,MAAM,GAAG,SAAS,CAAC;IACzB,UAAU,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IACjC,KAAK,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;CAC7B,sBAOA,CAAC"}
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+ import { VerifiedIcon } from "../../../assets/verified-icon";
3
+ import styles from "./styles/user-name.module.css";
4
+ export const UserName = ({ name, isVerified = false, hover = false, }) => {
5
+ return (React.createElement("div", { className: `${styles.container} ${hover ? styles.hover : ""}` },
6
+ name && React.createElement("span", null, name),
7
+ isVerified && React.createElement(VerifiedIcon, null)));
8
+ };
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ export declare const UserUsername: ({ username, }: {
3
+ username: string | undefined;
4
+ }) => React.JSX.Element;
5
+ //# sourceMappingURL=user-username.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"user-username.d.ts","sourceRoot":"","sources":["../../../../src/features/profile/components/user-username.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,eAAO,MAAM,YAAY,kBAEtB;IACD,QAAQ,EAAE,MAAM,GAAG,SAAS,CAAC;CAC9B,sBAEA,CAAC"}
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ import styles from "./styles/user-username.module.css";
3
+ export const UserUsername = ({ username, }) => {
4
+ return React.createElement("span", { className: styles.container },
5
+ "@",
6
+ username);
7
+ };
@@ -0,0 +1,4 @@
1
+ export * from "./components/avatar";
2
+ export * from "./components/user-name";
3
+ export * from "./components/user-username";
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/features/profile/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,wBAAwB,CAAC;AACvC,cAAc,4BAA4B,CAAC"}
@@ -0,0 +1,3 @@
1
+ export * from "./components/avatar";
2
+ export * from "./components/user-name";
3
+ export * from "./components/user-username";
@@ -0,0 +1,2 @@
1
+ export declare const getUser: (id: string | undefined) => Promise<any>;
2
+ //# sourceMappingURL=get-user.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-user.d.ts","sourceRoot":"","sources":["../../src/hooks/get-user.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,OAAO,OAAc,MAAM,GAAG,SAAS,iBAsBnD,CAAC"}
@@ -0,0 +1,28 @@
1
+ import axios from "axios";
2
+ import { OXY_AUTH_URL } from "../config";
3
+ export const getUser = async (id) => {
4
+ try {
5
+ const response = await axios.get(OXY_AUTH_URL + `/api/users/${id}`);
6
+ return response.data;
7
+ }
8
+ catch (error) {
9
+ if (error.response) {
10
+ // The request was made and the server responded with a status code
11
+ // that falls out of the range of 2xx
12
+ console.log(error.response.data);
13
+ console.log(error.response.status);
14
+ console.log(error.response.headers);
15
+ }
16
+ else if (error.request) {
17
+ // The request was made but no response was received
18
+ // `error.request` is an instance of XMLHttpRequest in the browser and an instance of
19
+ // http.ClientRequest in node.js
20
+ console.log(error.request);
21
+ }
22
+ else {
23
+ // Something happened in setting up the request that triggered an Error
24
+ console.log("Error", error.message);
25
+ }
26
+ console.log(error.config);
27
+ }
28
+ };
@@ -1,10 +1,11 @@
1
1
  interface User {
2
2
  id: string;
3
+ username: string;
3
4
  name: string;
4
5
  email: string;
5
6
  role: string;
6
7
  avatar: string;
7
8
  }
8
- declare const getUserById: (id?: string[], fields?: (keyof User)[]) => Promise<any>;
9
+ declare const getUserById: (id?: string | string[], fields?: (keyof User)[]) => Promise<User>;
9
10
  export default getUserById;
10
11
  //# sourceMappingURL=getUserById.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"getUserById.d.ts","sourceRoot":"","sources":["../../src/hooks/getUserById.ts"],"names":[],"mappings":"AAGA,UAAU,IAAI;IACZ,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,QAAA,MAAM,WAAW,QAAe,MAAM,EAAE,WAAW,CAAC,MAAM,IAAI,CAAC,EAAE,iBAiBhE,CAAC;AAEF,eAAe,WAAW,CAAC"}
1
+ {"version":3,"file":"getUserById.d.ts","sourceRoot":"","sources":["../../src/hooks/getUserById.ts"],"names":[],"mappings":"AAGA,UAAU,IAAI;IACZ,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,QAAA,MAAM,WAAW,QAAe,MAAM,GAAG,MAAM,EAAE,WAAW,CAAC,MAAM,IAAI,CAAC,EAAE,kBAiBzE,CAAC;AAEF,eAAe,WAAW,CAAC"}
@@ -2,7 +2,7 @@ import axios from "axios";
2
2
  import { OXY_AUTH_URL } from "../config";
3
3
  const getUserById = async (id, fields) => {
4
4
  try {
5
- const response = await axios.get(OXY_AUTH_URL + "/api/users/${id}");
5
+ const response = await axios.get(OXY_AUTH_URL + `/api/users/${id}`);
6
6
  const user = fields
7
7
  ? fields.reduce((obj, key) => ({ ...obj, [key]: response.data[key] }), {})
8
8
  : response.data;
@@ -0,0 +1,14 @@
1
+ export interface IUser {
2
+ id: string;
3
+ username: string;
4
+ name: string;
5
+ email: string;
6
+ role: string;
7
+ avatar: string;
8
+ color: string;
9
+ }
10
+ export declare const useUser: ({ id, initialData: IUser, }: {
11
+ id: string | undefined;
12
+ initialData?: IUser;
13
+ }) => Promise<any>;
14
+ //# sourceMappingURL=use-user.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"use-user.d.ts","sourceRoot":"","sources":["../../src/hooks/use-user.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,KAAK;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;CACf;AAED,eAAO,MAAM,OAAO,gCAGjB;IACD,EAAE,EAAE,MAAM,GAAG,SAAS,CAAC;IACvB,WAAW,CAAC,EAAE,KAAK,CAAC;CACrB,iBAMA,CAAC"}
@@ -0,0 +1,8 @@
1
+ import { getUser } from "./get-user";
2
+ export const useUser = async ({ id, initialData: IUser, }) => {
3
+ if (!id) {
4
+ // Return a default value or null when id is not provided
5
+ return null;
6
+ }
7
+ return getUser(id);
8
+ };
@@ -6,7 +6,7 @@ interface SessionModel {
6
6
  lastname: string;
7
7
  email: string;
8
8
  verified: boolean;
9
- profile_image_url: string;
9
+ avatar: string;
10
10
  created_at: string;
11
11
  };
12
12
  }
@@ -1 +1 @@
1
- {"version":3,"file":"useOxySession.d.ts","sourceRoot":"","sources":["../../src/hooks/useOxySession.ts"],"names":[],"mappings":"AAOA,UAAU,YAAY;IACpB,IAAI,EAAE;QACJ,EAAE,EAAE,MAAM,CAAC;QACX,QAAQ,EAAE,MAAM,CAAC;QACjB,IAAI,EAAE,MAAM,CAAC;QACb,QAAQ,EAAE,MAAM,CAAC;QACjB,KAAK,EAAE,MAAM,CAAC;QACd,QAAQ,EAAE,OAAO,CAAC;QAClB,iBAAiB,EAAE,MAAM,CAAC;QAC1B,UAAU,EAAE,MAAM,CAAC;KACpB,CAAC;CACH;AAED,KAAK,YAAY,GAAG;IAClB,OAAO,EAAE,YAAY,GAAG,IAAI,CAAC;IAC7B,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,GAAG,CAAC;IACX,gBAAgB,EAAE,MAAM,IAAI,CAAC;CAC9B,CAAC;AAEF,eAAO,MAAM,eAAe,2EAuC1B,CAAC;AAEH,iBAAS,aAAa;;;;EAQrB;AAED,eAAe,aAAa,CAAC"}
1
+ {"version":3,"file":"useOxySession.d.ts","sourceRoot":"","sources":["../../src/hooks/useOxySession.ts"],"names":[],"mappings":"AAOA,UAAU,YAAY;IACpB,IAAI,EAAE;QACJ,EAAE,EAAE,MAAM,CAAC;QACX,QAAQ,EAAE,MAAM,CAAC;QACjB,IAAI,EAAE,MAAM,CAAC;QACb,QAAQ,EAAE,MAAM,CAAC;QACjB,KAAK,EAAE,MAAM,CAAC;QACd,QAAQ,EAAE,OAAO,CAAC;QAClB,MAAM,EAAE,MAAM,CAAC;QACf,UAAU,EAAE,MAAM,CAAC;KACpB,CAAC;CACH;AAED,KAAK,YAAY,GAAG;IAClB,OAAO,EAAE,YAAY,GAAG,IAAI,CAAC;IAC7B,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,GAAG,CAAC;IACX,gBAAgB,EAAE,MAAM,IAAI,CAAC;CAC9B,CAAC;AAEF,eAAO,MAAM,eAAe,2EAuC1B,CAAC;AAEH,iBAAS,aAAa;;;;EAQrB;AAED,eAAe,aAAa,CAAC"}
package/dist/index.css ADDED
@@ -0,0 +1,5 @@
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
4
+
5
+ /*# sourceMappingURL=index.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sourceRoot":"","sources":["../src/index.css"],"names":[],"mappings":"AAAA;AACA;AACA","file":"index.css"}
package/dist/index.d.ts CHANGED
@@ -1,5 +1,7 @@
1
1
  import useOxySession from "./hooks/useOxySession";
2
2
  import getUserById from "./hooks/getUserById";
3
3
  import SignInButton from "./components/auth/SignInButton";
4
- export { useOxySession, getUserById, SignInButton };
4
+ import { AccountSwitcherModal } from "./components/auth/AccountSwitcherModal";
5
+ import { SessionOwnerButton } from "./components/auth/SessionOwnerButton";
6
+ export { useOxySession, getUserById, SignInButton, AccountSwitcherModal, SessionOwnerButton, };
5
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,aAAa,MAAM,uBAAuB,CAAC;AAClD,OAAO,WAAW,MAAM,qBAAqB,CAAC;AAC9C,OAAO,YAAY,MAAM,gCAAgC,CAAC;AAE1D,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,YAAY,EAAE,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,aAAa,MAAM,uBAAuB,CAAC;AAClD,OAAO,WAAW,MAAM,qBAAqB,CAAC;AAC9C,OAAO,YAAY,MAAM,gCAAgC,CAAC;AAC1D,OAAO,EAAE,oBAAoB,EAAE,MAAM,wCAAwC,CAAC;AAC9E,OAAO,EAAE,kBAAkB,EAAE,MAAM,sCAAsC,CAAC;AAE1E,OAAO,EACL,aAAa,EACb,WAAW,EACX,YAAY,EACZ,oBAAoB,EACpB,kBAAkB,GACnB,CAAC"}
package/dist/index.js CHANGED
@@ -1,4 +1,6 @@
1
1
  import useOxySession from "./hooks/useOxySession";
2
2
  import getUserById from "./hooks/getUserById";
3
3
  import SignInButton from "./components/auth/SignInButton";
4
- export { useOxySession, getUserById, SignInButton };
4
+ import { AccountSwitcherModal } from "./components/auth/AccountSwitcherModal";
5
+ import { SessionOwnerButton } from "./components/auth/SessionOwnerButton";
6
+ export { useOxySession, getUserById, SignInButton, AccountSwitcherModal, SessionOwnerButton, };
@@ -0,0 +1,10 @@
1
+ export interface IUser {
2
+ id: string;
3
+ username: string;
4
+ name: string;
5
+ email: string;
6
+ role: string;
7
+ avatar: string;
8
+ color: string;
9
+ }
10
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/interfaces/index.tsx"],"names":[],"mappings":"AAaA,MAAM,WAAW,KAAK;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;CACf"}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,3 @@
1
+ import { type ClassValue } from "clsx";
2
+ export declare const cn: (...inputs: ClassValue[]) => string;
3
+ //# sourceMappingURL=cn.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cn.d.ts","sourceRoot":"","sources":["../../src/utils/cn.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,KAAK,UAAU,EAAE,MAAM,MAAM,CAAC;AAG7C,eAAO,MAAM,EAAE,cAAe,UAAU,EAAE,WAEzC,CAAC"}
@@ -0,0 +1,5 @@
1
+ import { clsx } from "clsx";
2
+ import { twMerge } from "tailwind-merge";
3
+ export const cn = (...inputs) => {
4
+ return twMerge(clsx(inputs));
5
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oxyhq/services",
3
- "version": "0.0.53",
3
+ "version": "0.0.55",
4
4
  "description": "",
5
5
  "homepage": "https://oxy.so/",
6
6
  "main": "./dist/index.js",
@@ -31,20 +31,26 @@
31
31
  "@types/react-dom": "^18.3.0",
32
32
  "@typescript-eslint/eslint-plugin": "^7.0.1",
33
33
  "@typescript-eslint/parser": "^7.0.1",
34
- "autoprefixer": "^10.4.17",
34
+ "autoprefixer": "^10.4.19",
35
35
  "eslint": "^8.56.0",
36
36
  "ncp": "^2.0.0",
37
37
  "sass": "^1.77.2",
38
- "tailwindcss": "^3.4.1",
38
+ "tailwindcss": "^3.4.3",
39
39
  "typescript": "^5.4.5"
40
40
  },
41
41
  "dependencies": {
42
+ "@tanstack/react-query": "^5.40.0",
42
43
  "axios": "^1.6.8",
44
+ "clsx": "^2.1.1",
43
45
  "dotenv": "^16.4.5",
46
+ "framer-motion": "^11.3.19",
44
47
  "localforage": "^1.10.0",
45
48
  "next": "^14.2.5",
49
+ "postcss": "^8.4.38",
46
50
  "react": "^18.3.1",
47
51
  "react-dom": "^18.3.1",
52
+ "react-icons": "^5.2.1",
53
+ "tailwind-merge": "^2.3.0",
48
54
  "zod": "^3.23.8",
49
55
  "zustand": "^4.5.2"
50
56
  }