sanity-plugin-asset-source-unsplash 4.0.1 → 5.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.
- package/README.md +1 -18
- package/dist/index.d.ts +79 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +284 -0
- package/dist/index.js.map +1 -0
- package/package.json +33 -71
- package/lib/index.d.ts +0 -85
- package/lib/index.js +0 -329
- package/lib/index.js.map +0 -1
- package/src/components/Icon.tsx +0 -11
- package/src/components/Photo.styled.tsx +0 -45
- package/src/components/Photo.tsx +0 -85
- package/src/components/UnsplashAssetSource.styled.tsx +0 -13
- package/src/components/UnsplashAssetSource.tsx +0 -248
- package/src/datastores/unsplash.ts +0 -85
- package/src/index.ts +0 -33
- package/src/sanity-ui.d.ts +0 -6
- package/src/types.ts +0 -64
package/README.md
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
# Sanity Asset Source Plugin: Unsplash
|
|
2
2
|
|
|
3
|
-
> For the v2 version, please refer to the [v2-branch](https://github.com/sanity-io/sanity-plugin-asset-source-unsplash/tree/studio-v2).
|
|
4
|
-
|
|
5
3
|
## What is it?
|
|
6
4
|
|
|
7
5
|
Search for photos on Unsplash and add them to your project right inside Sanity Studio.
|
|
@@ -216,7 +214,7 @@ export default defineConfig({
|
|
|
216
214
|
}
|
|
217
215
|
```
|
|
218
216
|
|
|
219
|
-
##
|
|
217
|
+
## Further reading
|
|
220
218
|
|
|
221
219
|
- https://unsplash.com/documentation
|
|
222
220
|
- https://www.sanity.io/docs/custom-asset-sources
|
|
@@ -224,18 +222,3 @@ export default defineConfig({
|
|
|
224
222
|
## License
|
|
225
223
|
|
|
226
224
|
MIT-licensed. See LICENSE.
|
|
227
|
-
|
|
228
|
-
## Develop & test
|
|
229
|
-
|
|
230
|
-
This plugin uses [@sanity/plugin-kit](https://github.com/sanity-io/plugin-kit)
|
|
231
|
-
with default configuration for build & watch scripts.
|
|
232
|
-
|
|
233
|
-
See [Testing a plugin in Sanity Studio](https://github.com/sanity-io/plugin-kit#testing-a-plugin-in-sanity-studio)
|
|
234
|
-
on how to run this plugin with hotreload in the studio.
|
|
235
|
-
|
|
236
|
-
### Release new version
|
|
237
|
-
|
|
238
|
-
Run ["CI & Release" workflow](https://github.com/sanity-io/sanity-plugin-asset-source-unsplash/actions/workflows/main.yml).
|
|
239
|
-
Make sure to select the main branch and check "Release new version".
|
|
240
|
-
|
|
241
|
-
Semantic release will only release on configured branches, so it is safe to run release on any branch.
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import * as sanity0 from "sanity";
|
|
2
|
+
import { AssetSource } from "sanity";
|
|
3
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
declare function UnsplashIcon(): react_jsx_runtime0.JSX.Element;
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
interface Asset {
|
|
12
|
+
kind: 'url' | 'base64' | 'file' | 'assetDocumentId';
|
|
13
|
+
value: string | File;
|
|
14
|
+
assetDocumentProps?: {
|
|
15
|
+
originalFileName?: string;
|
|
16
|
+
label?: string;
|
|
17
|
+
title?: string;
|
|
18
|
+
description?: string;
|
|
19
|
+
source?: {
|
|
20
|
+
id: string;
|
|
21
|
+
name: string;
|
|
22
|
+
url?: string;
|
|
23
|
+
};
|
|
24
|
+
creditLine?: string;
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
interface AssetDocument {
|
|
31
|
+
_id: string;
|
|
32
|
+
label?: string;
|
|
33
|
+
title?: string;
|
|
34
|
+
description?: string;
|
|
35
|
+
source?: {
|
|
36
|
+
id: string;
|
|
37
|
+
name: string;
|
|
38
|
+
url?: string;
|
|
39
|
+
};
|
|
40
|
+
creditLine?: string;
|
|
41
|
+
originalFilename?: string;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
interface UnsplashPhoto {
|
|
47
|
+
id: string;
|
|
48
|
+
width: number;
|
|
49
|
+
height: number;
|
|
50
|
+
description?: string;
|
|
51
|
+
alt_description?: string;
|
|
52
|
+
urls: {
|
|
53
|
+
full: string;
|
|
54
|
+
small: string;
|
|
55
|
+
};
|
|
56
|
+
user: {
|
|
57
|
+
name: string;
|
|
58
|
+
username: string;
|
|
59
|
+
links: {
|
|
60
|
+
html: string;
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
links: {
|
|
64
|
+
html: string;
|
|
65
|
+
self: string;
|
|
66
|
+
download: string;
|
|
67
|
+
download_location: string;
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
declare const unsplashAssetSource: AssetSource;
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
declare const unsplashImageAsset: sanity0.Plugin<void>;
|
|
78
|
+
export { type Asset, type AssetDocument, UnsplashIcon, type UnsplashPhoto, unsplashAssetSource, unsplashImageAsset };
|
|
79
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","names":["UnsplashIcon","react_jsx_runtime0","JSX","Element","Asset","File","AssetDocument","UnsplashPhoto","AssetSource","UnsplashIcon","Asset","AssetDocument","UnsplashPhoto","unsplashAssetSource","unsplashImageAsset","sanity0","Plugin"],"sources":["../src/components/Icon.d.ts","../src/types.d.ts","../src/index.d.ts"],"sourcesContent":["/**\n * @public\n */\nexport declare function UnsplashIcon(): import(\"react/jsx-runtime\").JSX.Element;\n//# sourceMappingURL=Icon.d.ts.map","/**\n * @public\n */\nexport interface Asset {\n kind: 'url' | 'base64' | 'file' | 'assetDocumentId';\n value: string | File;\n assetDocumentProps?: {\n originalFileName?: string;\n label?: string;\n title?: string;\n description?: string;\n source?: {\n id: string;\n name: string;\n url?: string;\n };\n creditLine?: string;\n };\n}\n/**\n * @public\n */\nexport interface AssetDocument {\n _id: string;\n label?: string;\n title?: string;\n description?: string;\n source?: {\n id: string;\n name: string;\n url?: string;\n };\n creditLine?: string;\n originalFilename?: string;\n}\n/**\n * @public\n */\nexport interface UnsplashPhoto {\n id: string;\n width: number;\n height: number;\n description?: string;\n alt_description?: string;\n urls: {\n full: string;\n small: string;\n };\n user: {\n name: string;\n username: string;\n links: {\n html: string;\n };\n };\n links: {\n html: string;\n self: string;\n download: string;\n download_location: string;\n };\n}\n//# sourceMappingURL=types.d.ts.map","import { type AssetSource } from 'sanity';\nimport { UnsplashIcon } from './components/Icon';\nexport type { Asset, AssetDocument, UnsplashPhoto } from './types';\n/**\n * @public\n */\nexport declare const unsplashAssetSource: AssetSource;\n/**\n * @public\n */\nexport declare const unsplashImageAsset: import(\"sanity\").Plugin<void>;\nexport { UnsplashIcon };\n//# sourceMappingURL=index.d.ts.map"],"mappings":";;;;;;iBAGwBA,YAAAA,CAAAA,GAA4CC,kBAAAA,CAAAC,GAAAA,CAAIC;;;;UCAvDC,KAAAA;EDAOJ,IAAAA,EAAAA,KAAAA,GAAAA,QAAY,GAAA,MAAgCC,GAAAA,iBAAIE;kBCEpDE;EAFHD,kBAAK,CAEFC,EAAAA;IAiBHC,gBAAa,CAAA,EAAA,MAAA;IAgBbC,KAAAA,CAAAA,EAAAA,MAAa;;IChCTM,WAAAA,CAAAA,EAAAA,MAAgC;IAIhCC,MAAAA,CAAAA,EAAAA;;;;;;;;;;;UDYJR,aAAAA;;;;;;;;;;;;;;;;UAgBAC,aAAAA;;;;;;;;;;;;;;;;;;;;;;;;;ADnCjB;;ACAiBH,cCGIS,mBDDG,ECCkBL,WDDlB;AAiBxB;AAgBA;;AChCqBK,cAIAC,kBAJqBN,EAI4BO,OAAAA,CAAZC,MAJL,CAAA,IAAA,CAAA"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,284 @@
|
|
|
1
|
+
import { useClient, definePlugin } from "sanity";
|
|
2
|
+
import { jsxs, jsx } from "react/jsx-runtime";
|
|
3
|
+
import { c } from "react-compiler-runtime";
|
|
4
|
+
import { SearchIcon } from "@sanity/icons";
|
|
5
|
+
import { Card, Text, TextInput, Dialog, Stack, Flex, Spinner } from "@sanity/ui";
|
|
6
|
+
import React, { useEffect } from "react";
|
|
7
|
+
import InfiniteScroll from "react-infinite-scroll-component";
|
|
8
|
+
import { PhotoAlbum } from "react-photo-album";
|
|
9
|
+
import { concat, defer, BehaviorSubject } from "rxjs";
|
|
10
|
+
import { withLatestFrom, debounceTime, distinctUntilChanged, switchMap, map } from "rxjs/operators";
|
|
11
|
+
import { styled } from "styled-components";
|
|
12
|
+
function UnsplashIcon() {
|
|
13
|
+
const $ = c(1);
|
|
14
|
+
let t0;
|
|
15
|
+
return $[0] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (t0 = /* @__PURE__ */ jsxs("svg", { role: "img", viewBox: "0 0 25 25", width: "1em", height: "1em", fill: "currentColor", children: [
|
|
16
|
+
/* @__PURE__ */ jsx("title", {}),
|
|
17
|
+
/* @__PURE__ */ jsx("path", { d: "M9 9V4h7v5H9Zm7 3h5v9H4v-9h5v5h7v-5Z" })
|
|
18
|
+
] }), $[0] = t0) : t0 = $[0], t0;
|
|
19
|
+
}
|
|
20
|
+
const fetchSearch = (client, query, page, perPage) => defer(() => client.observable.request({
|
|
21
|
+
url: `/addons/unsplash/search/photos?query=${encodeURIComponent(query)}&page=${page}&per_page=${perPage}`,
|
|
22
|
+
withCredentials: !0,
|
|
23
|
+
method: "GET"
|
|
24
|
+
})), fetchList = (client, type, page, perPage) => defer(() => client.observable.request({
|
|
25
|
+
url: `/addons/unsplash/photos?order_by=${type}&page=${page}&per_page=${perPage}`,
|
|
26
|
+
withCredentials: !0,
|
|
27
|
+
method: "GET"
|
|
28
|
+
}));
|
|
29
|
+
function fetchDownloadUrl(client, photo) {
|
|
30
|
+
const downloadUrl = photo.links.download_location.replace("https://api.unsplash.com", "/addons/unsplash");
|
|
31
|
+
return client.request({
|
|
32
|
+
url: downloadUrl,
|
|
33
|
+
withCredentials: !0,
|
|
34
|
+
method: "GET"
|
|
35
|
+
}).then((result) => result.url);
|
|
36
|
+
}
|
|
37
|
+
const search = (client, query, page, resultsPerPage) => concat(query.pipe(withLatestFrom(page), debounceTime(500), distinctUntilChanged(), switchMap(([q, p]) => q ? fetchSearch(client, q, p, resultsPerPage).pipe(distinctUntilChanged(), map((result) => result.results)) : fetchList(client, "popular", p, resultsPerPage)))), Root = styled.div.withConfig({
|
|
38
|
+
displayName: "Root",
|
|
39
|
+
componentId: "sc-1yt1fqs-0"
|
|
40
|
+
})`overflow:hidden;background-origin:content-box;background-repeat:no-repeat;background-clip:border-box;background-size:cover;position:relative;outline:none !important;border:${({
|
|
41
|
+
theme
|
|
42
|
+
}) => `1px solid ${theme.sanity.color.card.enabled.border}`};box-sizing:content-box;-webkit-user-drag:none;&:hover{opacity:0.85;}&:focus,&:active{border:1px solid var(--input-border-color-focus);box-shadow:inset 0 0 0 3px var(--input-border-color-focus);}`, CreditLineLink = styled.a.withConfig({
|
|
43
|
+
displayName: "CreditLineLink",
|
|
44
|
+
componentId: "sc-1yt1fqs-1"
|
|
45
|
+
})`text-decoration:none;cursor:pointer;`, CreditLine = styled(Card).withConfig({
|
|
46
|
+
displayName: "CreditLine",
|
|
47
|
+
componentId: "sc-1yt1fqs-2"
|
|
48
|
+
})`${({
|
|
49
|
+
theme
|
|
50
|
+
}) => `
|
|
51
|
+
--creditline-fg: ${theme.sanity.color.card.enabled.fg};
|
|
52
|
+
--creditline-bg: ${theme.sanity.color.card.enabled.bg};
|
|
53
|
+
`};-webkit-user-drag:none;position:absolute;background-color:var(--creditline-bg);bottom:0;[data-ui='Text']{color:var(--creditline-fg);}`, UTM_SOURCE = "sanity-plugin-asset-source-unsplash";
|
|
54
|
+
function Photo(props) {
|
|
55
|
+
const $ = c(35), {
|
|
56
|
+
onClick,
|
|
57
|
+
data,
|
|
58
|
+
onKeyDown,
|
|
59
|
+
onFocus,
|
|
60
|
+
active,
|
|
61
|
+
width,
|
|
62
|
+
height
|
|
63
|
+
} = props;
|
|
64
|
+
let t0;
|
|
65
|
+
$[0] !== data || $[1] !== onClick ? (t0 = () => {
|
|
66
|
+
onClick(data);
|
|
67
|
+
}, $[0] = data, $[1] = onClick, $[2] = t0) : t0 = $[2];
|
|
68
|
+
const handleClick = t0;
|
|
69
|
+
let t1;
|
|
70
|
+
$[3] !== data.id || $[4] !== data.links.html ? (t1 = (event) => {
|
|
71
|
+
event.stopPropagation();
|
|
72
|
+
const url = `${data.links.html}?utm_source=${encodeURIComponent(UTM_SOURCE)}&utm_medium=referral`;
|
|
73
|
+
window.open(url, data.id, "noreferrer,noopener");
|
|
74
|
+
}, $[3] = data.id, $[4] = data.links.html, $[5] = t1) : t1 = $[5];
|
|
75
|
+
const handleCreditLineClicked = t1;
|
|
76
|
+
let t2;
|
|
77
|
+
$[6] !== data || $[7] !== onClick || $[8] !== onKeyDown ? (t2 = (event_0) => {
|
|
78
|
+
onKeyDown(event_0), event_0.key === "Enter" && onClick(data);
|
|
79
|
+
}, $[6] = data, $[7] = onClick, $[8] = onKeyDown, $[9] = t2) : t2 = $[9];
|
|
80
|
+
const handleKeyDown = t2;
|
|
81
|
+
let t3;
|
|
82
|
+
$[10] !== data || $[11] !== onFocus ? (t3 = () => {
|
|
83
|
+
onFocus(data);
|
|
84
|
+
}, $[10] = data, $[11] = onFocus, $[12] = t3) : t3 = $[12];
|
|
85
|
+
const handleMouseDown = t3;
|
|
86
|
+
let t4, t5;
|
|
87
|
+
$[13] !== active || $[14] !== data || $[15] !== onFocus ? (t4 = () => {
|
|
88
|
+
active && onFocus(data);
|
|
89
|
+
}, t5 = [active, data, onFocus], $[13] = active, $[14] = data, $[15] = onFocus, $[16] = t4, $[17] = t5) : (t4 = $[16], t5 = $[17]), useEffect(t4, t5);
|
|
90
|
+
const src = data.urls.small, userName = data.user.name, t6 = `Select image by ${userName} from Unsplash`, t7 = `${width}px`, t8 = `${height}px`, t9 = `url("${src}")`;
|
|
91
|
+
let t10;
|
|
92
|
+
$[18] !== t7 || $[19] !== t8 || $[20] !== t9 ? (t10 = {
|
|
93
|
+
width: t7,
|
|
94
|
+
height: t8,
|
|
95
|
+
backgroundImage: t9
|
|
96
|
+
}, $[18] = t7, $[19] = t8, $[20] = t9, $[21] = t10) : t10 = $[21];
|
|
97
|
+
const t11 = `Open image by ${userName} on Unsplash in new window`;
|
|
98
|
+
let t12;
|
|
99
|
+
$[22] !== data.user.username || $[23] !== t11 ? (t12 = /* @__PURE__ */ jsx(CreditLine, { padding: 2, radius: 2, margin: 2, children: /* @__PURE__ */ jsxs(Text, { size: 1, title: t11, children: [
|
|
100
|
+
"By @",
|
|
101
|
+
data.user.username
|
|
102
|
+
] }) }), $[22] = data.user.username, $[23] = t11, $[24] = t12) : t12 = $[24];
|
|
103
|
+
let t13;
|
|
104
|
+
$[25] !== handleCreditLineClicked || $[26] !== t12 ? (t13 = /* @__PURE__ */ jsx(CreditLineLink, { onClick: handleCreditLineClicked, children: t12 }), $[25] = handleCreditLineClicked, $[26] = t12, $[27] = t13) : t13 = $[27];
|
|
105
|
+
let t14;
|
|
106
|
+
return $[28] !== handleClick || $[29] !== handleKeyDown || $[30] !== handleMouseDown || $[31] !== t10 || $[32] !== t13 || $[33] !== t6 ? (t14 = /* @__PURE__ */ jsx(Root, { title: t6, tabIndex: 0, onKeyDown: handleKeyDown, onMouseDown: handleMouseDown, style: t10, onClick: handleClick, children: t13 }), $[28] = handleClick, $[29] = handleKeyDown, $[30] = handleMouseDown, $[31] = t10, $[32] = t13, $[33] = t6, $[34] = t14) : t14 = $[34], t14;
|
|
107
|
+
}
|
|
108
|
+
const SearchInput = styled(TextInput).withConfig({
|
|
109
|
+
displayName: "SearchInput",
|
|
110
|
+
componentId: "sc-ssjkn6-0"
|
|
111
|
+
})`position:sticky;top:0;z-index:1;`;
|
|
112
|
+
styled.div.withConfig({
|
|
113
|
+
displayName: "Scroller",
|
|
114
|
+
componentId: "sc-ssjkn6-1"
|
|
115
|
+
})`overflow-y:auto;max-height:80vh;`;
|
|
116
|
+
const RESULTS_PER_PAGE = 42, PHOTO_SPACING = 2, PHOTO_PADDING = 1;
|
|
117
|
+
function UnsplashAssetSource(props) {
|
|
118
|
+
const $ = c(4);
|
|
119
|
+
let t0;
|
|
120
|
+
$[0] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (t0 = {
|
|
121
|
+
apiVersion: "2022-09-01"
|
|
122
|
+
}, $[0] = t0) : t0 = $[0];
|
|
123
|
+
const client = useClient(t0);
|
|
124
|
+
let t1;
|
|
125
|
+
return $[1] !== client || $[2] !== props ? (t1 = /* @__PURE__ */ jsx(UnsplashAssetSourceInternal, { ...props, client }), $[1] = client, $[2] = props, $[3] = t1) : t1 = $[3], t1;
|
|
126
|
+
}
|
|
127
|
+
class UnsplashAssetSourceInternal extends React.Component {
|
|
128
|
+
static defaultProps = {
|
|
129
|
+
selectedAssets: void 0
|
|
130
|
+
};
|
|
131
|
+
state = {
|
|
132
|
+
cursor: 0,
|
|
133
|
+
query: "",
|
|
134
|
+
page: 1,
|
|
135
|
+
searchResults: [[]],
|
|
136
|
+
isLoading: !0
|
|
137
|
+
};
|
|
138
|
+
searchSubscription = null;
|
|
139
|
+
searchSubject$ = new BehaviorSubject("");
|
|
140
|
+
pageSubject$ = new BehaviorSubject(1);
|
|
141
|
+
componentDidMount() {
|
|
142
|
+
this.searchSubscription = search(this.props.client, this.searchSubject$, this.pageSubject$, RESULTS_PER_PAGE).subscribe({
|
|
143
|
+
next: (results) => {
|
|
144
|
+
this.setState((prev) => ({
|
|
145
|
+
searchResults: [...prev.searchResults, results],
|
|
146
|
+
isLoading: !1
|
|
147
|
+
}));
|
|
148
|
+
}
|
|
149
|
+
});
|
|
150
|
+
}
|
|
151
|
+
componentWillUnmount() {
|
|
152
|
+
this.searchSubscription && this.searchSubscription.unsubscribe();
|
|
153
|
+
}
|
|
154
|
+
handleSelect = (photo) => (this.setState({
|
|
155
|
+
isLoading: !0
|
|
156
|
+
}), fetchDownloadUrl(this.props.client, photo).then((downloadUrl) => {
|
|
157
|
+
const description = photo.description || void 0, asset = {
|
|
158
|
+
kind: "url",
|
|
159
|
+
value: downloadUrl,
|
|
160
|
+
// @ts-expect-error TODO: this is a partial assetDocumentProps, update types.
|
|
161
|
+
assetDocumentProps: {
|
|
162
|
+
_type: "sanity.imageAsset",
|
|
163
|
+
source: {
|
|
164
|
+
name: "unsplash",
|
|
165
|
+
id: photo.id,
|
|
166
|
+
url: photo.links.html
|
|
167
|
+
},
|
|
168
|
+
description,
|
|
169
|
+
creditLine: `${photo.user.name} by Unsplash`
|
|
170
|
+
}
|
|
171
|
+
};
|
|
172
|
+
this.props.onSelect([asset]);
|
|
173
|
+
}));
|
|
174
|
+
handleClose = () => {
|
|
175
|
+
this.props.onClose();
|
|
176
|
+
};
|
|
177
|
+
handleSearchTermChanged = (event) => {
|
|
178
|
+
const query = event.currentTarget.value;
|
|
179
|
+
this.setState({
|
|
180
|
+
query,
|
|
181
|
+
page: 1,
|
|
182
|
+
searchResults: [[]],
|
|
183
|
+
isLoading: !0,
|
|
184
|
+
cursor: 0
|
|
185
|
+
}), this.pageSubject$.next(1), this.searchSubject$.next(query);
|
|
186
|
+
};
|
|
187
|
+
handleSearchTermCleared = () => {
|
|
188
|
+
this.setState({
|
|
189
|
+
query: "",
|
|
190
|
+
page: 1,
|
|
191
|
+
searchResults: [[]],
|
|
192
|
+
isLoading: !0,
|
|
193
|
+
cursor: 0
|
|
194
|
+
}), this.pageSubject$.next(1), this.searchSubject$.next("");
|
|
195
|
+
};
|
|
196
|
+
handleScrollerLoadMore = () => {
|
|
197
|
+
const nextPage = this.state.page + 1;
|
|
198
|
+
this.setState({
|
|
199
|
+
page: nextPage,
|
|
200
|
+
isLoading: !0
|
|
201
|
+
}), this.pageSubject$.next(nextPage), this.searchSubject$.next(this.state.query);
|
|
202
|
+
};
|
|
203
|
+
handleKeyDown = (event) => {
|
|
204
|
+
const {
|
|
205
|
+
cursor
|
|
206
|
+
} = this.state;
|
|
207
|
+
(event.keyCode === 38 || event.keyCode === 37) && cursor > 0 ? this.setState((prevState) => ({
|
|
208
|
+
cursor: prevState.cursor - 1
|
|
209
|
+
})) : (event.keyCode === 40 || event.keyCode === 39) && cursor < this.getPhotos().length - 1 && this.setState((prevState) => ({
|
|
210
|
+
cursor: prevState.cursor + 1
|
|
211
|
+
}));
|
|
212
|
+
};
|
|
213
|
+
getPhotos() {
|
|
214
|
+
return this.state.searchResults.flat();
|
|
215
|
+
}
|
|
216
|
+
updateCursor = (photo) => {
|
|
217
|
+
const index = this.getPhotos().findIndex((result) => result.id === photo.id);
|
|
218
|
+
this.setState({
|
|
219
|
+
cursor: index
|
|
220
|
+
});
|
|
221
|
+
};
|
|
222
|
+
renderImage = (props) => {
|
|
223
|
+
const {
|
|
224
|
+
photo,
|
|
225
|
+
layout
|
|
226
|
+
} = props, active = this.getPhotos().findIndex((result) => result.id === photo.data.id) === this.state.cursor || !1;
|
|
227
|
+
return /* @__PURE__ */ jsx(Photo, { onClick: this.handleSelect, onKeyDown: this.handleKeyDown, data: photo.data, width: layout.width, height: layout.height, active, onFocus: this.updateCursor });
|
|
228
|
+
};
|
|
229
|
+
render() {
|
|
230
|
+
const {
|
|
231
|
+
query,
|
|
232
|
+
searchResults,
|
|
233
|
+
isLoading
|
|
234
|
+
} = this.state;
|
|
235
|
+
return /* @__PURE__ */ jsx(Dialog, { animate: !0, id: "unsplash-asset-source", header: "Select image from Unsplash", onClose: this.handleClose, open: !0, width: 4, children: /* @__PURE__ */ jsxs(Stack, { space: 3, paddingX: 4, paddingBottom: 4, children: [
|
|
236
|
+
/* @__PURE__ */ jsx(SearchInput, { clearButton: query.length > 0, icon: SearchIcon, onChange: this.handleSearchTermChanged, onClear: this.handleSearchTermCleared, placeholder: "Search by topics or colors", value: query }),
|
|
237
|
+
!isLoading && this.getPhotos().length === 0 && /* @__PURE__ */ jsx(Text, { size: 1, muted: !0, children: "No results found" }),
|
|
238
|
+
/* @__PURE__ */ jsx(
|
|
239
|
+
InfiniteScroll,
|
|
240
|
+
{
|
|
241
|
+
dataLength: this.getPhotos().length,
|
|
242
|
+
next: this.handleScrollerLoadMore,
|
|
243
|
+
hasMore: !0,
|
|
244
|
+
scrollThreshold: 0.99,
|
|
245
|
+
height: "60vh",
|
|
246
|
+
loader: /* @__PURE__ */ jsx(Flex, { align: "center", justify: "center", padding: 3, children: /* @__PURE__ */ jsx(Spinner, { muted: !0 }) }),
|
|
247
|
+
endMessage: /* @__PURE__ */ jsx(Text, { size: 1, muted: !0, children: "No more results" }),
|
|
248
|
+
children: searchResults.filter((photos) => photos.length > 0).map((photos, index) => /* @__PURE__ */ jsx(PhotoAlbum, { layout: "rows", spacing: PHOTO_SPACING, padding: PHOTO_PADDING, targetRowHeight: (width) => width < 300 ? 150 : width < 600 ? 200 : 300, photos: photos.map((photo) => ({
|
|
249
|
+
src: photo.urls.small,
|
|
250
|
+
width: photo.width,
|
|
251
|
+
height: photo.height,
|
|
252
|
+
key: photo.id,
|
|
253
|
+
data: photo
|
|
254
|
+
})), renderPhoto: this.renderImage, componentsProps: {
|
|
255
|
+
containerProps: {
|
|
256
|
+
style: {
|
|
257
|
+
marginBottom: `${PHOTO_SPACING}px`
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
} }, `gallery-${query || "popular"}-${index}`))
|
|
261
|
+
}
|
|
262
|
+
)
|
|
263
|
+
] }) });
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
const unsplashAssetSource = {
|
|
267
|
+
name: "unsplash",
|
|
268
|
+
title: "Unsplash",
|
|
269
|
+
component: UnsplashAssetSource,
|
|
270
|
+
icon: UnsplashIcon
|
|
271
|
+
}, unsplashImageAsset = definePlugin({
|
|
272
|
+
name: "asset-source-unsplash-plugin",
|
|
273
|
+
form: {
|
|
274
|
+
image: {
|
|
275
|
+
assetSources: (prev) => [...prev, unsplashAssetSource]
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
});
|
|
279
|
+
export {
|
|
280
|
+
UnsplashIcon,
|
|
281
|
+
unsplashAssetSource,
|
|
282
|
+
unsplashImageAsset
|
|
283
|
+
};
|
|
284
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/components/Icon.tsx","../src/datastores/unsplash.ts","../src/components/Photo.styled.tsx","../src/components/Photo.tsx","../src/components/UnsplashAssetSource.styled.tsx","../src/components/UnsplashAssetSource.tsx","../src/index.ts"],"sourcesContent":["/**\n * @public\n */\nexport function UnsplashIcon() {\n return (\n <svg role=\"img\" viewBox=\"0 0 25 25\" width=\"1em\" height=\"1em\" fill=\"currentColor\">\n <title />\n <path d=\"M9 9V4h7v5H9Zm7 3h5v9H4v-9h5v5h7v-5Z\" />\n </svg>\n )\n}\n","import type {SanityClient} from 'sanity'\n\nimport {type BehaviorSubject, concat, defer, type Observable} from 'rxjs'\nimport {debounceTime, distinctUntilChanged, map, switchMap, withLatestFrom} from 'rxjs/operators'\n\nimport type {UnsplashPhoto} from '../types'\n\ntype SearchSubject = BehaviorSubject<string>\ntype PageSubject = BehaviorSubject<number>\n\nconst fetchSearch = (\n client: SanityClient,\n query: string,\n page: number,\n perPage: number,\n): Observable<{\n results: UnsplashPhoto[]\n total: number\n total_pages: number\n}> =>\n defer(() =>\n client.observable.request({\n url: `/addons/unsplash/search/photos?query=${encodeURIComponent(\n query,\n )}&page=${page}&per_page=${perPage}`,\n withCredentials: true,\n method: 'GET',\n }),\n )\n\nconst fetchList = (\n client: SanityClient,\n type: string,\n page: number,\n perPage: number,\n): Observable<UnsplashPhoto[]> =>\n defer(() =>\n client.observable.request({\n url: `/addons/unsplash/photos?order_by=${type}&page=${page}&per_page=${perPage}`,\n withCredentials: true,\n method: 'GET',\n }),\n )\n\nexport function fetchDownloadUrl(client: SanityClient, photo: UnsplashPhoto): Promise<string> {\n const downloadUrl = photo.links.download_location.replace(\n 'https://api.unsplash.com',\n '/addons/unsplash',\n )\n return client\n .request({\n url: downloadUrl,\n withCredentials: true,\n method: 'GET',\n })\n .then((result: {url: string}) => {\n return result.url\n })\n}\n\nexport const search = (\n client: SanityClient,\n query: SearchSubject,\n page: PageSubject,\n resultsPerPage: number,\n): Observable<UnsplashPhoto[]> => {\n return concat(\n query.pipe(\n withLatestFrom(page),\n debounceTime(500),\n distinctUntilChanged(),\n switchMap(([q, p]) => {\n if (q) {\n return fetchSearch(client, q, p, resultsPerPage).pipe(\n distinctUntilChanged(),\n map((result) => result.results),\n )\n }\n return fetchList(client, 'popular', p, resultsPerPage)\n }),\n ),\n )\n}\n","import {Card} from '@sanity/ui'\nimport {styled} from 'styled-components'\n\nexport const Root = styled.div`\n overflow: hidden;\n background-origin: content-box;\n background-repeat: no-repeat;\n background-clip: border-box;\n background-size: cover;\n position: relative;\n outline: none !important;\n border: ${({theme}) => `1px solid ${theme.sanity.color.card.enabled.border}`};\n box-sizing: content-box;\n -webkit-user-drag: none;\n\n &:hover {\n opacity: 0.85;\n }\n\n &:focus,\n &:active {\n border: 1px solid var(--input-border-color-focus);\n box-shadow: inset 0 0 0 3px var(--input-border-color-focus);\n }\n`\n\nexport const CreditLineLink = styled.a`\n text-decoration: none;\n cursor: pointer;\n`\n\nexport const CreditLine = styled(Card)`\n ${({theme}) => `\n --creditline-fg: ${theme.sanity.color.card.enabled.fg};\n --creditline-bg: ${theme.sanity.color.card.enabled.bg};\n `};\n -webkit-user-drag: none;\n position: absolute;\n background-color: var(--creditline-bg);\n bottom: 0;\n\n [data-ui='Text'] {\n color: var(--creditline-fg);\n }\n`\n","import {Text} from '@sanity/ui'\nimport {useCallback, useEffect} from 'react'\n\nimport type {UnsplashPhoto} from '../types'\n\nimport {CreditLine, CreditLineLink, Root} from './Photo.styled'\n\ntype Props = {\n data: UnsplashPhoto\n width: number\n height: number\n onClick: (photo: UnsplashPhoto) => void\n onKeyDown: (event: React.KeyboardEvent<HTMLDivElement>) => void\n active: boolean\n onFocus: (photo: UnsplashPhoto) => void\n}\n\nconst UTM_SOURCE = 'sanity-plugin-asset-source-unsplash'\n\nexport default function Photo(props: Props) {\n const {onClick, data, onKeyDown, onFocus, active, width, height} = props\n\n const handleClick = useCallback(() => {\n onClick(data)\n }, [onClick, data])\n\n const handleCreditLineClicked = useCallback(\n (event: React.MouseEvent<HTMLAnchorElement>) => {\n event.stopPropagation()\n const url = `${data.links.html}?utm_source=${encodeURIComponent(\n UTM_SOURCE,\n )}&utm_medium=referral`\n window.open(url, data.id, 'noreferrer,noopener')\n },\n [data],\n )\n\n const handleKeyDown = useCallback(\n (event: React.KeyboardEvent<HTMLDivElement>) => {\n onKeyDown(event)\n if (event.key === 'Enter') {\n onClick(data)\n }\n },\n [onKeyDown, data, onClick],\n )\n\n const handleMouseDown = useCallback(() => {\n onFocus(data)\n }, [onFocus, data])\n\n useEffect(() => {\n if (active) {\n onFocus(data)\n }\n }, [active, data, onFocus])\n\n const src = data.urls.small\n const userName = data.user.name\n\n return (\n <Root\n title={`Select image by ${userName} from Unsplash`}\n tabIndex={0}\n onKeyDown={handleKeyDown}\n onMouseDown={handleMouseDown}\n style={{\n width: `${width}px`,\n height: `${height}px`,\n backgroundImage: `url(\"${src}\")`,\n }}\n onClick={handleClick}\n >\n <CreditLineLink onClick={handleCreditLineClicked}>\n <CreditLine padding={2} radius={2} margin={2}>\n <Text size={1} title={`Open image by ${userName} on Unsplash in new window`}>\n By @{data.user.username}\n </Text>\n </CreditLine>\n </CreditLineLink>\n </Root>\n )\n}\n","import {TextInput} from '@sanity/ui'\nimport {styled} from 'styled-components'\n\nexport const SearchInput = styled(TextInput)`\n position: sticky;\n top: 0;\n z-index: 1;\n`\n\nexport const Scroller = styled.div`\n overflow-y: auto;\n max-height: 80vh;\n`\n","import {SearchIcon} from '@sanity/icons'\nimport {Dialog, Flex, Spinner, Stack, Text} from '@sanity/ui'\nimport React from 'react'\nimport InfiniteScroll from 'react-infinite-scroll-component'\nimport {PhotoAlbum, type RenderPhotoProps, type Photo as PhotoType} from 'react-photo-album'\nimport {BehaviorSubject, type Subscription} from 'rxjs'\nimport {\n type AssetFromSource,\n type AssetSourceComponentProps,\n type SanityClient,\n useClient,\n} from 'sanity'\n\nimport type {UnsplashPhoto} from '../types'\n\nimport {fetchDownloadUrl, search} from '../datastores/unsplash'\nimport Photo from './Photo'\nimport {SearchInput} from './UnsplashAssetSource.styled'\n\ntype UnsplashPhotoAlbumPhoto = PhotoType & {\n key: string\n data: UnsplashPhoto\n}\n\ntype State = {\n query: string\n searchResults: UnsplashPhoto[][]\n page: number\n isLoading: boolean\n cursor: number\n}\n\nconst RESULTS_PER_PAGE = 42\nconst PHOTO_SPACING = 2\nconst PHOTO_PADDING = 1 // offset the 1px border width\n\nexport default function UnsplashAssetSource(props: AssetSourceComponentProps) {\n const client = useClient({apiVersion: '2022-09-01'})\n return <UnsplashAssetSourceInternal {...props} client={client} />\n}\n\nclass UnsplashAssetSourceInternal extends React.Component<\n AssetSourceComponentProps & {client: SanityClient},\n State\n> {\n static defaultProps = {\n selectedAssets: undefined,\n }\n\n override state = {\n cursor: 0,\n query: '',\n page: 1,\n searchResults: [[]],\n isLoading: true,\n }\n\n searchSubscription: Subscription | null = null\n\n searchSubject$ = new BehaviorSubject('')\n pageSubject$ = new BehaviorSubject(1)\n\n override componentDidMount() {\n this.searchSubscription = search(\n this.props.client,\n this.searchSubject$,\n this.pageSubject$,\n RESULTS_PER_PAGE,\n ).subscribe({\n next: (results: UnsplashPhoto[]) => {\n this.setState((prev) => ({\n searchResults: [...prev.searchResults, results],\n isLoading: false,\n }))\n },\n })\n }\n\n override componentWillUnmount() {\n if (this.searchSubscription) {\n this.searchSubscription.unsubscribe()\n }\n }\n\n handleSelect = (photo: UnsplashPhoto) => {\n this.setState({isLoading: true})\n return fetchDownloadUrl(this.props.client, photo).then((downloadUrl) => {\n const description = photo.description || undefined\n const asset: AssetFromSource = {\n kind: 'url',\n value: downloadUrl,\n // @ts-expect-error TODO: this is a partial assetDocumentProps, update types.\n assetDocumentProps: {\n _type: 'sanity.imageAsset',\n source: {\n name: 'unsplash',\n id: photo.id,\n url: photo.links.html,\n },\n description,\n creditLine: `${photo.user.name} by Unsplash`,\n },\n }\n this.props.onSelect([asset])\n return undefined\n })\n }\n\n handleClose = () => {\n this.props.onClose()\n }\n\n handleSearchTermChanged = (event: React.ChangeEvent<HTMLInputElement>) => {\n const query = event.currentTarget.value\n this.setState({\n query,\n page: 1,\n searchResults: [[]],\n isLoading: true,\n cursor: 0,\n })\n this.pageSubject$.next(1)\n this.searchSubject$.next(query)\n }\n\n handleSearchTermCleared = () => {\n this.setState({\n query: '',\n page: 1,\n searchResults: [[]],\n isLoading: true,\n cursor: 0,\n })\n this.pageSubject$.next(1)\n this.searchSubject$.next('')\n }\n\n handleScrollerLoadMore = () => {\n const nextPage = this.state.page + 1\n this.setState({page: nextPage, isLoading: true})\n this.pageSubject$.next(nextPage)\n this.searchSubject$.next(this.state.query)\n }\n\n handleKeyDown = (event: React.KeyboardEvent<HTMLDivElement>) => {\n const {cursor} = this.state\n if ((event.keyCode === 38 || event.keyCode === 37) && cursor > 0) {\n this.setState((prevState) => ({\n cursor: prevState.cursor - 1,\n }))\n } else if (\n (event.keyCode === 40 || event.keyCode === 39) &&\n cursor < this.getPhotos().length - 1\n ) {\n this.setState((prevState) => ({\n cursor: prevState.cursor + 1,\n }))\n }\n }\n\n getPhotos() {\n return this.state.searchResults.flat()\n }\n\n updateCursor = (photo: UnsplashPhoto) => {\n const index = this.getPhotos().findIndex((result: UnsplashPhoto) => result.id === photo.id)\n this.setState({cursor: index})\n }\n\n renderImage = (props: RenderPhotoProps<UnsplashPhotoAlbumPhoto>) => {\n const {photo, layout} = props\n const active =\n this.getPhotos().findIndex((result: UnsplashPhoto) => result.id === photo.data.id) ===\n this.state.cursor || false\n return (\n <Photo\n onClick={this.handleSelect}\n onKeyDown={this.handleKeyDown}\n data={photo.data}\n width={layout.width}\n height={layout.height}\n active={active}\n onFocus={this.updateCursor}\n />\n )\n }\n\n override render() {\n const {query, searchResults, isLoading} = this.state\n\n return (\n <Dialog\n animate\n id=\"unsplash-asset-source\"\n header=\"Select image from Unsplash\"\n onClose={this.handleClose}\n open\n width={4}\n >\n <Stack space={3} paddingX={4} paddingBottom={4}>\n <SearchInput\n clearButton={query.length > 0}\n icon={SearchIcon}\n onChange={this.handleSearchTermChanged}\n onClear={this.handleSearchTermCleared}\n placeholder=\"Search by topics or colors\"\n value={query}\n />\n {!isLoading && this.getPhotos().length === 0 && (\n <Text size={1} muted>\n No results found\n </Text>\n )}\n <InfiniteScroll\n dataLength={this.getPhotos().length} // This is important field to render the next data\n next={this.handleScrollerLoadMore}\n // scrollableTarget=\"unsplash-scroller\"\n hasMore\n scrollThreshold={0.99}\n height=\"60vh\"\n loader={\n <Flex align=\"center\" justify=\"center\" padding={3}>\n <Spinner muted />\n </Flex>\n }\n endMessage={\n <Text size={1} muted>\n No more results\n </Text>\n }\n >\n {searchResults\n .filter((photos) => photos.length > 0)\n .map((photos: UnsplashPhoto[], index) => (\n <PhotoAlbum\n key={`gallery-${query || 'popular'}-${index}`}\n layout=\"rows\"\n spacing={PHOTO_SPACING}\n padding={PHOTO_PADDING}\n targetRowHeight={(width) => {\n if (width < 300) return 150\n if (width < 600) return 200\n return 300\n }}\n photos={photos.map((photo: UnsplashPhoto) => ({\n src: photo.urls.small,\n width: photo.width,\n height: photo.height,\n key: photo.id,\n data: photo,\n }))}\n renderPhoto={this.renderImage}\n componentsProps={{\n containerProps: {\n style: {marginBottom: `${PHOTO_SPACING}px`},\n },\n }}\n />\n ))}\n </InfiniteScroll>\n </Stack>\n </Dialog>\n )\n }\n}\n","import {type AssetSource, definePlugin} from 'sanity'\n\nimport {UnsplashIcon} from './components/Icon'\nimport Unsplash from './components/UnsplashAssetSource'\n\nexport type {Asset, AssetDocument, UnsplashPhoto} from './types'\n\n/**\n * @public\n */\nexport const unsplashAssetSource: AssetSource = {\n name: 'unsplash',\n title: 'Unsplash',\n component: Unsplash,\n icon: UnsplashIcon,\n}\n\n/**\n * @public\n */\nexport const unsplashImageAsset = definePlugin({\n name: 'asset-source-unsplash-plugin',\n\n form: {\n image: {\n assetSources: (prev) => {\n return [...prev, unsplashAssetSource]\n },\n },\n },\n})\n\nexport {UnsplashIcon}\n"],"names":["UnsplashIcon","$","_c","t0","for","fetchSearch","client","query","page","perPage","defer","observable","request","url","encodeURIComponent","withCredentials","method","fetchList","type","fetchDownloadUrl","photo","downloadUrl","links","download_location","replace","then","result","search","resultsPerPage","concat","pipe","withLatestFrom","debounceTime","distinctUntilChanged","switchMap","q","p","map","results","Root","styled","div","withConfig","displayName","componentId","theme","sanity","color","card","enabled","border","CreditLineLink","a","CreditLine","Card","fg","bg","UTM_SOURCE","Photo","props","onClick","data","onKeyDown","onFocus","active","width","height","handleClick","t1","id","html","event","stopPropagation","window","open","handleCreditLineClicked","t2","event_0","key","handleKeyDown","t3","handleMouseDown","t4","t5","useEffect","src","urls","small","userName","user","name","t6","t7","t8","t9","t10","backgroundImage","t11","t12","username","t13","t14","SearchInput","TextInput","RESULTS_PER_PAGE","PHOTO_SPACING","PHOTO_PADDING","UnsplashAssetSource","apiVersion","useClient","UnsplashAssetSourceInternal","React","Component","defaultProps","selectedAssets","undefined","state","cursor","searchResults","isLoading","searchSubscription","searchSubject$","BehaviorSubject","pageSubject$","componentDidMount","subscribe","next","setState","prev","componentWillUnmount","unsubscribe","handleSelect","description","asset","kind","value","assetDocumentProps","_type","source","creditLine","onSelect","handleClose","onClose","handleSearchTermChanged","currentTarget","handleSearchTermCleared","handleScrollerLoadMore","nextPage","keyCode","prevState","getPhotos","length","flat","updateCursor","index","findIndex","renderImage","layout","render","SearchIcon","filter","photos","containerProps","style","marginBottom","unsplashAssetSource","title","component","Unsplash","icon","unsplashImageAsset","definePlugin","form","image","assetSources"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,106 +1,68 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sanity-plugin-asset-source-unsplash",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Use images from Unsplash.com in your Sanity Studio",
|
|
5
5
|
"keywords": [
|
|
6
|
-
"sanity",
|
|
7
|
-
"plugin",
|
|
8
|
-
"images",
|
|
9
|
-
"unsplash",
|
|
10
6
|
"assets",
|
|
11
|
-
"
|
|
7
|
+
"images",
|
|
8
|
+
"plugin",
|
|
9
|
+
"sanity",
|
|
10
|
+
"source",
|
|
11
|
+
"unsplash"
|
|
12
12
|
],
|
|
13
|
-
"homepage": "https://github.com/sanity-io/sanity-plugin-asset-source-unsplash#readme",
|
|
13
|
+
"homepage": "https://github.com/sanity-io/plugins/tree/main/plugins/sanity-plugin-asset-source-unsplash#readme",
|
|
14
14
|
"bugs": {
|
|
15
|
-
"url": "https://github.com/sanity-io/
|
|
15
|
+
"url": "https://github.com/sanity-io/plugins/issues"
|
|
16
16
|
},
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "git",
|
|
19
|
-
"url": "git@github.com
|
|
19
|
+
"url": "git+ssh://git@github.com/sanity-io/plugins.git",
|
|
20
|
+
"directory": "plugins/sanity-plugin-asset-source-unsplash"
|
|
20
21
|
},
|
|
21
|
-
"license": "MIT",
|
|
22
22
|
"author": "Sanity.io <hello@sanity.io>",
|
|
23
|
-
"
|
|
23
|
+
"license": "MIT",
|
|
24
24
|
"type": "module",
|
|
25
25
|
"exports": {
|
|
26
|
-
".":
|
|
27
|
-
"source": "./src/index.ts",
|
|
28
|
-
"default": "./lib/index.js"
|
|
29
|
-
},
|
|
26
|
+
".": "./dist/index.js",
|
|
30
27
|
"./package.json": "./package.json"
|
|
31
28
|
},
|
|
32
|
-
"
|
|
33
|
-
"types": "./lib/index.d.ts",
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
34
30
|
"files": [
|
|
35
|
-
"
|
|
36
|
-
"lib"
|
|
31
|
+
"dist"
|
|
37
32
|
],
|
|
38
|
-
"scripts": {
|
|
39
|
-
"build": "plugin-kit verify-package --silent && pkg-utils build --strict --check --clean",
|
|
40
|
-
"format": "prettier --write --cache --ignore-unknown .",
|
|
41
|
-
"link-watch": "plugin-kit link-watch",
|
|
42
|
-
"lint": "eslint .",
|
|
43
|
-
"prepare": "husky install || true",
|
|
44
|
-
"prepublishOnly": "npm run build",
|
|
45
|
-
"test": "npm run lint && npm run type-check && npm run build",
|
|
46
|
-
"type-check": "tsc --noEmit",
|
|
47
|
-
"watch": "pkg-utils watch --strict"
|
|
48
|
-
},
|
|
49
|
-
"browserslist": "extends @sanity/browserslist-config",
|
|
50
33
|
"dependencies": {
|
|
51
34
|
"@sanity/icons": "^3.7.4",
|
|
52
|
-
"@sanity/ui": "^3.
|
|
35
|
+
"@sanity/ui": "^3.1.11",
|
|
36
|
+
"react-compiler-runtime": "^1.0.0",
|
|
53
37
|
"react-infinite-scroll-component": "6.1.0",
|
|
54
38
|
"react-photo-album": "2.4.1",
|
|
55
39
|
"rxjs": "^7.8.2"
|
|
56
40
|
},
|
|
57
41
|
"devDependencies": {
|
|
58
|
-
"@
|
|
59
|
-
"@
|
|
60
|
-
"@
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"@typescript-eslint/eslint-plugin": "^8.22.0",
|
|
67
|
-
"@typescript-eslint/parser": "^8.22.0",
|
|
68
|
-
"eslint": "^8.57.1",
|
|
69
|
-
"eslint-config-prettier": "^9.1.0",
|
|
70
|
-
"eslint-config-sanity": "^7.1.4",
|
|
71
|
-
"eslint-plugin-import": "^2.31.0",
|
|
72
|
-
"eslint-plugin-prettier": "^5.2.3",
|
|
73
|
-
"eslint-plugin-react": "^7.37.4",
|
|
74
|
-
"eslint-plugin-react-hooks": "^5.1.0",
|
|
75
|
-
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
76
|
-
"husky": "^8.0.3",
|
|
77
|
-
"lint-staged": "^15.0.2",
|
|
78
|
-
"prettier": "^3.6.2",
|
|
79
|
-
"prettier-plugin-packagejson": "^2.5.19",
|
|
80
|
-
"react": "^19.1.1",
|
|
81
|
-
"react-dom": "^19.1.1",
|
|
82
|
-
"sanity": "^4.4.1",
|
|
83
|
-
"semantic-release": "^23.1.1",
|
|
42
|
+
"@sanity/pkg-utils": "^10.1.3",
|
|
43
|
+
"@types/react": "^19.2.7",
|
|
44
|
+
"@typescript/native-preview": "7.0.0-dev.20251212.1",
|
|
45
|
+
"babel-plugin-react-compiler": "^1.0.0",
|
|
46
|
+
"babel-plugin-styled-components": "^2.1.4",
|
|
47
|
+
"eslint": "^9.39.1",
|
|
48
|
+
"react": "^19.2.3",
|
|
49
|
+
"sanity": "^4.21.1",
|
|
84
50
|
"styled-components": "^6.1.19",
|
|
85
|
-
"typescript": "5.
|
|
51
|
+
"typescript": "5.9.3",
|
|
52
|
+
"@repo/eslint-config": "0.0.7",
|
|
53
|
+
"@repo/tsconfig": "1.0.0",
|
|
54
|
+
"@repo/package.config": "0.0.0"
|
|
86
55
|
},
|
|
87
56
|
"peerDependencies": {
|
|
88
57
|
"react": "^18.3 || ^19",
|
|
89
|
-
"
|
|
90
|
-
"sanity": "^4",
|
|
58
|
+
"sanity": "^4.0.0-0 || ^5.0.0-0",
|
|
91
59
|
"styled-components": "^6.1"
|
|
92
60
|
},
|
|
93
61
|
"engines": {
|
|
94
62
|
"node": ">=20.19 <22 || >=22.12"
|
|
95
63
|
},
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
|
|
99
|
-
"sanityExchangeUrl": "https://www.sanity.io/plugins/sanity-plugin-asset-source-unsplash",
|
|
100
|
-
"sanityPlugin": {
|
|
101
|
-
"verifyPackage": {
|
|
102
|
-
"nodeEngine": false,
|
|
103
|
-
"sanityV2Json": false
|
|
104
|
-
}
|
|
64
|
+
"scripts": {
|
|
65
|
+
"build": "pkg build --strict --check --clean",
|
|
66
|
+
"lint": "eslint ."
|
|
105
67
|
}
|
|
106
|
-
}
|
|
68
|
+
}
|