@payloadcms/live-preview-react 3.0.0-canary.b750ebf → 3.0.0-canary.b8c9483

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.
@@ -1 +1 @@
1
- {"version":3,"file":"RefreshRouteOnSave.d.ts","sourceRoot":"","sources":["../src/RefreshRouteOnSave.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAK9B,eAAO,MAAM,kBAAkB,EAAE,KAAK,CAAC,EAAE,CAAC;IACxC,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,OAAO,EAAE,MAAM,IAAI,CAAA;IACnB,SAAS,EAAE,MAAM,CAAA;CAClB,CAuCA,CAAA"}
1
+ {"version":3,"file":"RefreshRouteOnSave.d.ts","sourceRoot":"","sources":["../src/RefreshRouteOnSave.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAK9B,eAAO,MAAM,kBAAkB,EAAE,KAAK,CAAC,EAAE,CAAC;IACxC,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,OAAO,EAAE,MAAM,IAAI,CAAA;IACnB,SAAS,EAAE,MAAM,CAAA;CAClB,CA0CA,CAAA"}
@@ -26,6 +26,8 @@ export const RefreshRouteOnSave = (props)=>{
26
26
  ready({
27
27
  serverURL
28
28
  });
29
+ // refresh after the ready message is sent to get the latest data
30
+ refresh();
29
31
  }
30
32
  return ()=>{
31
33
  if (typeof window !== 'undefined') {
@@ -36,7 +38,8 @@ export const RefreshRouteOnSave = (props)=>{
36
38
  serverURL,
37
39
  onMessage,
38
40
  depth,
39
- apiRoute
41
+ apiRoute,
42
+ refresh
40
43
  ]);
41
44
  return null;
42
45
  };
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/RefreshRouteOnSave.tsx"],"sourcesContent":["'use client'\n\nimport type React from 'react'\n\nimport { isDocumentEvent, ready } from '@payloadcms/live-preview'\nimport { useCallback, useEffect, useRef } from 'react'\n\nexport const RefreshRouteOnSave: React.FC<{\n apiRoute?: string\n depth?: number\n refresh: () => void\n serverURL: string\n}> = (props) => {\n const { apiRoute, depth, refresh, serverURL } = props\n const hasSentReadyMessage = useRef<boolean>(false)\n\n const onMessage = useCallback(\n (event: MessageEvent) => {\n if (isDocumentEvent(event, serverURL)) {\n if (typeof refresh === 'function') {\n refresh()\n } else {\n // eslint-disable-next-line no-console\n console.error('You must provide a refresh function to `RefreshRouteOnSave`')\n }\n }\n },\n [refresh, serverURL],\n )\n\n useEffect(() => {\n if (typeof window !== 'undefined') {\n window.addEventListener('message', onMessage)\n }\n\n if (!hasSentReadyMessage.current) {\n hasSentReadyMessage.current = true\n\n ready({\n serverURL,\n })\n }\n\n return () => {\n if (typeof window !== 'undefined') {\n window.removeEventListener('message', onMessage)\n }\n }\n }, [serverURL, onMessage, depth, apiRoute])\n\n return null\n}\n"],"names":["isDocumentEvent","ready","useCallback","useEffect","useRef","RefreshRouteOnSave","props","apiRoute","depth","refresh","serverURL","hasSentReadyMessage","onMessage","event","console","error","window","addEventListener","current","removeEventListener"],"mappings":"AAAA;AAIA,SAASA,eAAe,EAAEC,KAAK,QAAQ,2BAA0B;AACjE,SAASC,WAAW,EAAEC,SAAS,EAAEC,MAAM,QAAQ,QAAO;AAEtD,OAAO,MAAMC,qBAKR,CAACC;IACJ,MAAM,EAAEC,QAAQ,EAAEC,KAAK,EAAEC,OAAO,EAAEC,SAAS,EAAE,GAAGJ;IAChD,MAAMK,sBAAsBP,OAAgB;IAE5C,MAAMQ,YAAYV,YAChB,CAACW;QACC,IAAIb,gBAAgBa,OAAOH,YAAY;YACrC,IAAI,OAAOD,YAAY,YAAY;gBACjCA;YACF,OAAO;gBACL,sCAAsC;gBACtCK,QAAQC,KAAK,CAAC;YAChB;QACF;IACF,GACA;QAACN;QAASC;KAAU;IAGtBP,UAAU;QACR,IAAI,OAAOa,WAAW,aAAa;YACjCA,OAAOC,gBAAgB,CAAC,WAAWL;QACrC;QAEA,IAAI,CAACD,oBAAoBO,OAAO,EAAE;YAChCP,oBAAoBO,OAAO,GAAG;YAE9BjB,MAAM;gBACJS;YACF;QACF;QAEA,OAAO;YACL,IAAI,OAAOM,WAAW,aAAa;gBACjCA,OAAOG,mBAAmB,CAAC,WAAWP;YACxC;QACF;IACF,GAAG;QAACF;QAAWE;QAAWJ;QAAOD;KAAS;IAE1C,OAAO;AACT,EAAC"}
1
+ {"version":3,"sources":["../src/RefreshRouteOnSave.tsx"],"sourcesContent":["'use client'\n\nimport type React from 'react'\n\nimport { isDocumentEvent, ready } from '@payloadcms/live-preview'\nimport { useCallback, useEffect, useRef } from 'react'\n\nexport const RefreshRouteOnSave: React.FC<{\n apiRoute?: string\n depth?: number\n refresh: () => void\n serverURL: string\n}> = (props) => {\n const { apiRoute, depth, refresh, serverURL } = props\n const hasSentReadyMessage = useRef<boolean>(false)\n\n const onMessage = useCallback(\n (event: MessageEvent) => {\n if (isDocumentEvent(event, serverURL)) {\n if (typeof refresh === 'function') {\n refresh()\n } else {\n // eslint-disable-next-line no-console\n console.error('You must provide a refresh function to `RefreshRouteOnSave`')\n }\n }\n },\n [refresh, serverURL],\n )\n\n useEffect(() => {\n if (typeof window !== 'undefined') {\n window.addEventListener('message', onMessage)\n }\n\n if (!hasSentReadyMessage.current) {\n hasSentReadyMessage.current = true\n\n ready({\n serverURL,\n })\n\n // refresh after the ready message is sent to get the latest data\n refresh()\n }\n\n return () => {\n if (typeof window !== 'undefined') {\n window.removeEventListener('message', onMessage)\n }\n }\n }, [serverURL, onMessage, depth, apiRoute, refresh])\n\n return null\n}\n"],"names":["isDocumentEvent","ready","useCallback","useEffect","useRef","RefreshRouteOnSave","props","apiRoute","depth","refresh","serverURL","hasSentReadyMessage","onMessage","event","console","error","window","addEventListener","current","removeEventListener"],"mappings":"AAAA;AAIA,SAASA,eAAe,EAAEC,KAAK,QAAQ,2BAA0B;AACjE,SAASC,WAAW,EAAEC,SAAS,EAAEC,MAAM,QAAQ,QAAO;AAEtD,OAAO,MAAMC,qBAKR,CAACC;IACJ,MAAM,EAAEC,QAAQ,EAAEC,KAAK,EAAEC,OAAO,EAAEC,SAAS,EAAE,GAAGJ;IAChD,MAAMK,sBAAsBP,OAAgB;IAE5C,MAAMQ,YAAYV,YAChB,CAACW;QACC,IAAIb,gBAAgBa,OAAOH,YAAY;YACrC,IAAI,OAAOD,YAAY,YAAY;gBACjCA;YACF,OAAO;gBACL,sCAAsC;gBACtCK,QAAQC,KAAK,CAAC;YAChB;QACF;IACF,GACA;QAACN;QAASC;KAAU;IAGtBP,UAAU;QACR,IAAI,OAAOa,WAAW,aAAa;YACjCA,OAAOC,gBAAgB,CAAC,WAAWL;QACrC;QAEA,IAAI,CAACD,oBAAoBO,OAAO,EAAE;YAChCP,oBAAoBO,OAAO,GAAG;YAE9BjB,MAAM;gBACJS;YACF;YAEA,iEAAiE;YACjED;QACF;QAEA,OAAO;YACL,IAAI,OAAOO,WAAW,aAAa;gBACjCA,OAAOG,mBAAmB,CAAC,WAAWP;YACxC;QACF;IACF,GAAG;QAACF;QAAWE;QAAWJ;QAAOD;QAAUE;KAAQ;IAEnD,OAAO;AACT,EAAC"}
package/license.md ADDED
@@ -0,0 +1,22 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2018-2024 Payload CMS, Inc. <info@payloadcms.com>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ 'Software'), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@payloadcms/live-preview-react",
3
- "version": "3.0.0-canary.b750ebf",
4
- "description": "The official live preview React SDK for Payload",
3
+ "version": "3.0.0-canary.b8c9483",
4
+ "description": "The official React SDK for Payload Live Preview",
5
5
  "homepage": "https://payloadcms.com",
6
6
  "repository": {
7
7
  "type": "git",
@@ -10,6 +10,13 @@
10
10
  },
11
11
  "license": "MIT",
12
12
  "author": "Payload <dev@payloadcms.com> (https://payloadcms.com)",
13
+ "maintainers": [
14
+ {
15
+ "name": "Payload",
16
+ "email": "info@payloadcms.com",
17
+ "url": "https://payloadcms.com"
18
+ }
19
+ ],
13
20
  "type": "module",
14
21
  "exports": {
15
22
  ".": {
@@ -24,30 +31,32 @@
24
31
  "dist"
25
32
  ],
26
33
  "dependencies": {
27
- "@payloadcms/live-preview": "3.0.0-canary.b750ebf"
34
+ "@payloadcms/live-preview": "3.0.0-canary.b8c9483"
28
35
  },
29
36
  "devDependencies": {
30
- "@types/react": "npm:types-react@19.0.0-rc.0",
31
- "@types/react-dom": "npm:types-react-dom@19.0.0-rc.0",
32
- "payload": "3.0.0-canary.b750ebf",
33
- "@payloadcms/eslint-config": "3.0.0-beta.59"
37
+ "@types/react": "npm:types-react@19.0.0-rc.1",
38
+ "@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
39
+ "@payloadcms/eslint-config": "3.0.0-beta.112",
40
+ "payload": "3.0.0-canary.b8c9483"
34
41
  },
35
42
  "peerDependencies": {
36
- "react": "^19.0.0 || ^19.0.0-rc-6230622a1a-20240610",
37
- "react-dom": "^19.0.0 || ^19.0.0-rc-6230622a1a-20240610"
43
+ "react": "^19.0.0 || ^19.0.0-rc-65a56d0e-20241020",
44
+ "react-dom": "^19.0.0 || ^19.0.0-rc-65a56d0e-20241020"
38
45
  },
39
46
  "publishConfig": {
40
47
  "registry": "https://registry.npmjs.org/"
41
48
  },
42
49
  "overrides": {
43
- "@types/react": "npm:types-react@19.0.0-rc.0",
44
- "@types/react-dom": "npm:types-react-dom@19.0.0-rc.0"
50
+ "@types/react": "npm:types-react@19.0.0-rc.1",
51
+ "@types/react-dom": "npm:types-react-dom@19.0.0-rc.1"
45
52
  },
46
53
  "scripts": {
47
54
  "build": "pnpm copyfiles && pnpm build:types && pnpm build:swc",
48
55
  "build:swc": "swc ./src -d ./dist --config-file .swcrc --strip-leading-paths",
49
56
  "build:types": "tsc --emitDeclarationOnly --outDir dist",
50
57
  "clean": "rimraf {dist,*.tsbuildinfo}",
51
- "copyfiles": "copyfiles -u 1 \"src/**/*.{html,css,scss,ttf,woff,woff2,eot,svg,jpg,png,json}\" dist/"
58
+ "copyfiles": "copyfiles -u 1 \"src/**/*.{html,css,scss,ttf,woff,woff2,eot,svg,jpg,png,json}\" dist/",
59
+ "lint": "eslint .",
60
+ "lint:fix": "eslint . --fix"
52
61
  }
53
62
  }