@machinemetrics/mm-react-embeddable 0.10.2 → 0.10.3
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,6 +1,6 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("react"),y=require("prop-types"),x=require("styled-components"),R=t.createContext(null),P=({children:r})=>{const[
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("react"),y=require("prop-types"),x=require("styled-components"),R=t.createContext(null),P=({children:r})=>{const[o,d]=t.useState({}),a=t.useRef({}),f=t.useCallback((e,s,n)=>{d(i=>({...i,[e]:{origin:s,frameRef:n}}))},[]),m=t.useCallback(e=>{d(s=>{const n={...s};return delete n[e],n})},[]);t.useEffect(()=>{const e=(n=[],i)=>{n.forEach(c=>c(i))},s=n=>{var w,E,M,b,p;if(!((w=n==null?void 0:n.data)!=null&&w.instanceId))return;const{instanceId:i,type:c}=n.data,u=a.current;e((E=u[i])==null?void 0:E[c],n.data),e((M=u["*"])==null?void 0:M[c],n.data),e((b=u[i])==null?void 0:b["*"],n.data),e((p=u["*"])==null?void 0:p["*"],n.data)};return window.addEventListener("message",s),()=>{window.removeEventListener("message",s)}},[o]);const l=t.useCallback((e,s,n)=>{var c,u;const i=o[e];if(!i){console.warn(`Origin not set for id: ${e}. Unable to send message.`);return}(u=(c=i==null?void 0:i.frameRef)==null?void 0:c.current)!=null&&u.contentWindow&&i.frameRef.current.contentWindow.postMessage({type:s,...n,instanceId:e},i.origin)},[o]),g=t.useCallback((e,s)=>{l(e,"load-options",s)},[l]),I=t.useCallback((e,s)=>{l(e,"validate",s)},[l]),C={registerFrame:f,unregisterFrame:m,sendMessage:l,loadOptions:g,validate:I,addListener:(e,s,n)=>(a.current[e]||(a.current[e]={}),a.current[e][s]||(a.current[e][s]=[]),a.current[e][s].push(n),()=>{a.current[e][s]=a.current[e][s].filter(i=>i!==n)})};return t.createElement(R.Provider,{value:C},r)},h={},$=async r=>{try{const o=new URL(r).origin;if(h[o]!==void 0)return h[o];const a=await(await fetch(`${o}/mm-app-manifest.json`)).json();if(!a.version)throw new Error("Invalid manifest");return h[o]=a,a}catch{}return h[origin]=!1,!1},L=async r=>!!await $(r),S=(r,o,d)=>{const a=t.useContext(R);if(a===null)throw new Error("useEmbeddedEffect must be used within a MMEmbeddableZoneProvider");const f=t.useRef(d);t.useEffect(()=>{f.current=d},[d]),t.useEffect(()=>{if(!(!r||!o))return a.addListener(r,o,(...m)=>f.current(...m))},[a,r,o])};P.propTypes={children:y.node.isRequired};const v=x.default||x,F=v.iframe`
|
|
2
2
|
width: 100%;
|
|
3
3
|
height: 100%;
|
|
4
4
|
border: none;
|
|
5
5
|
visibility: ${r=>r.$isReady?"visible":"hidden"};
|
|
6
|
-
`,Z=({id:r,src:
|
|
6
|
+
`,Z=({id:r,src:o,path:d,onInit:a=()=>{},context:f,isConfiguring:m,...l})=>{const g=t.useRef(),[I,C]=t.useState(),[e,s]=t.useState(0),{registerFrame:n,unregisterFrame:i,sendMessage:c}=t.useContext(R),[u,w]=t.useState(!0),[E,M]=t.useState();return t.useEffect(()=>{e&&c(r,"set-context",{context:f})},[f,r,e]),t.useEffect(()=>{d!==void 0&&M(d)},[d]),t.useEffect(()=>{E===void 0||!e||c(r,"navigate",{path:E})},[E,e,r,c]),t.useEffect(()=>{e&&c(r,"set-configuring",{isConfiguring:m})},[e,m]),t.useEffect(()=>{if(!(!o||!r||!g))return(async()=>{const b=await L(o);if(w(b),b){const p=new URL(o);n(r,p.origin,g),a(),C(`${p.origin}/mm-embedded-interop?id=${r}&origin=${window.location.origin}`);return}})(),()=>{i(r)}},[o,r,n,g]),S(r,"ready",()=>s(b=>b+1)),u?t.createElement(F,{$isReady:e,ref:g,src:I,...l}):t.createElement("div",{style:{height:"100%",display:"flex",alignItems:"center",justifyContent:"center"}},t.createElement("div",{style:{textAlign:"center"}},"Application must adhere to the MM App Manifest specification to be embedded."))};Z.propTypes={id:y.string,src:y.string.isRequired,path:y.string,onInit:y.func};exports.MMEmbeddableZone=Z;exports.MMEmbeddableZoneContext=R;exports.MMEmbeddableZoneProvider=P;exports.getAppInfo=$;exports.testIsEmbeddable=L;exports.useEmbeddedEffect=S;
|
|
@@ -1,95 +1,93 @@
|
|
|
1
|
-
import x, { createContext as C, useState as y, useRef as F, useCallback as E, useEffect as
|
|
1
|
+
import x, { createContext as C, useState as y, useRef as F, useCallback as E, useEffect as u, useContext as A } from "react";
|
|
2
2
|
import h from "prop-types";
|
|
3
3
|
import v from "styled-components";
|
|
4
4
|
const P = C(null), U = ({ children: t }) => {
|
|
5
|
-
const [
|
|
6
|
-
|
|
7
|
-
}, []),
|
|
8
|
-
|
|
9
|
-
const r = { ...
|
|
5
|
+
const [s, c] = y({}), o = F({}), f = E((e, n, r) => {
|
|
6
|
+
c((i) => ({ ...i, [e]: { origin: n, frameRef: r } }));
|
|
7
|
+
}, []), g = E((e) => {
|
|
8
|
+
c((n) => {
|
|
9
|
+
const r = { ...n };
|
|
10
10
|
return delete r[e], r;
|
|
11
11
|
});
|
|
12
12
|
}, []);
|
|
13
|
-
|
|
13
|
+
u(() => {
|
|
14
14
|
const e = (r = [], i) => {
|
|
15
|
-
r.forEach((
|
|
16
|
-
},
|
|
17
|
-
var
|
|
18
|
-
if (!((
|
|
15
|
+
r.forEach((a) => a(i));
|
|
16
|
+
}, n = (r) => {
|
|
17
|
+
var R, b, M, m, w;
|
|
18
|
+
if (!((R = r == null ? void 0 : r.data) != null && R.instanceId))
|
|
19
19
|
return;
|
|
20
|
-
const { instanceId: i, type:
|
|
21
|
-
e((b =
|
|
20
|
+
const { instanceId: i, type: a } = r.data, d = o.current;
|
|
21
|
+
e((b = d[i]) == null ? void 0 : b[a], r.data), e((M = d["*"]) == null ? void 0 : M[a], r.data), e((m = d[i]) == null ? void 0 : m["*"], r.data), e((w = d["*"]) == null ? void 0 : w["*"], r.data);
|
|
22
22
|
};
|
|
23
|
-
return window.addEventListener("message",
|
|
24
|
-
window.removeEventListener("message",
|
|
23
|
+
return window.addEventListener("message", n), () => {
|
|
24
|
+
window.removeEventListener("message", n);
|
|
25
25
|
};
|
|
26
|
-
}, [
|
|
27
|
-
const
|
|
28
|
-
(e,
|
|
29
|
-
|
|
26
|
+
}, [s]);
|
|
27
|
+
const l = E(
|
|
28
|
+
(e, n, r) => {
|
|
29
|
+
var a, d;
|
|
30
|
+
const i = s[e];
|
|
30
31
|
if (!i) {
|
|
31
32
|
console.warn(`Origin not set for id: ${e}. Unable to send message.`);
|
|
32
33
|
return;
|
|
33
34
|
}
|
|
34
|
-
i.frameRef.current.contentWindow.postMessage(
|
|
35
|
-
{ type:
|
|
35
|
+
(d = (a = i == null ? void 0 : i.frameRef) == null ? void 0 : a.current) != null && d.contentWindow && i.frameRef.current.contentWindow.postMessage(
|
|
36
|
+
{ type: n, ...r, instanceId: e },
|
|
36
37
|
i.origin
|
|
37
38
|
);
|
|
38
39
|
},
|
|
39
|
-
[
|
|
40
|
-
),
|
|
41
|
-
(e,
|
|
42
|
-
|
|
40
|
+
[s]
|
|
41
|
+
), p = E(
|
|
42
|
+
(e, n) => {
|
|
43
|
+
l(e, "load-options", n);
|
|
43
44
|
},
|
|
44
|
-
[
|
|
45
|
+
[l]
|
|
45
46
|
), $ = E(
|
|
46
|
-
(e,
|
|
47
|
-
|
|
47
|
+
(e, n) => {
|
|
48
|
+
l(e, "validate", n);
|
|
48
49
|
},
|
|
49
|
-
[
|
|
50
|
+
[l]
|
|
50
51
|
), L = {
|
|
51
|
-
registerFrame:
|
|
52
|
-
unregisterFrame:
|
|
53
|
-
sendMessage:
|
|
54
|
-
loadOptions:
|
|
52
|
+
registerFrame: f,
|
|
53
|
+
unregisterFrame: g,
|
|
54
|
+
sendMessage: l,
|
|
55
|
+
loadOptions: p,
|
|
55
56
|
validate: $,
|
|
56
|
-
addListener: (e,
|
|
57
|
-
|
|
57
|
+
addListener: (e, n, r) => (o.current[e] || (o.current[e] = {}), o.current[e][n] || (o.current[e][n] = []), o.current[e][n].push(r), () => {
|
|
58
|
+
o.current[e][n] = o.current[e][n].filter((i) => i !== r);
|
|
58
59
|
})
|
|
59
60
|
};
|
|
60
61
|
return /* @__PURE__ */ x.createElement(P.Provider, { value: L }, t);
|
|
61
62
|
}, I = {}, Z = async (t) => {
|
|
62
63
|
try {
|
|
63
|
-
const
|
|
64
|
-
if (I[
|
|
65
|
-
return I[
|
|
66
|
-
const
|
|
67
|
-
if (!
|
|
64
|
+
const s = new URL(t).origin;
|
|
65
|
+
if (I[s] !== void 0)
|
|
66
|
+
return I[s];
|
|
67
|
+
const o = await (await fetch(`${s}/mm-app-manifest.json`)).json();
|
|
68
|
+
if (!o.version)
|
|
68
69
|
throw new Error("Invalid manifest");
|
|
69
|
-
return I[
|
|
70
|
+
return I[s] = o, o;
|
|
70
71
|
} catch {
|
|
71
72
|
}
|
|
72
73
|
return I[origin] = !1, !1;
|
|
73
|
-
}, j = async (t) => !!await Z(t), O = (t,
|
|
74
|
-
const
|
|
75
|
-
if (
|
|
74
|
+
}, j = async (t) => !!await Z(t), O = (t, s, c) => {
|
|
75
|
+
const o = A(P);
|
|
76
|
+
if (o === null)
|
|
76
77
|
throw new Error(
|
|
77
78
|
"useEmbeddedEffect must be used within a MMEmbeddableZoneProvider"
|
|
78
79
|
);
|
|
79
|
-
const
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
}, [
|
|
83
|
-
if (!(!t || !
|
|
84
|
-
return
|
|
80
|
+
const f = F(c);
|
|
81
|
+
u(() => {
|
|
82
|
+
f.current = c;
|
|
83
|
+
}, [c]), u(() => {
|
|
84
|
+
if (!(!t || !s))
|
|
85
|
+
return o.addListener(
|
|
85
86
|
t,
|
|
86
|
-
|
|
87
|
-
(...
|
|
87
|
+
s,
|
|
88
|
+
(...g) => f.current(...g)
|
|
88
89
|
);
|
|
89
|
-
}, [
|
|
90
|
-
(u, c) => n.sendMessage(t, u, c),
|
|
91
|
-
[n, t]
|
|
92
|
-
);
|
|
90
|
+
}, [o, t, s]);
|
|
93
91
|
};
|
|
94
92
|
U.propTypes = {
|
|
95
93
|
children: h.node.isRequired
|
|
@@ -99,34 +97,34 @@ const T = v.default || v, q = T.iframe`
|
|
|
99
97
|
height: 100%;
|
|
100
98
|
border: none;
|
|
101
99
|
visibility: ${(t) => t.$isReady ? "visible" : "hidden"};
|
|
102
|
-
`,
|
|
100
|
+
`, W = ({
|
|
103
101
|
id: t,
|
|
104
|
-
src:
|
|
105
|
-
path:
|
|
106
|
-
onInit:
|
|
102
|
+
src: s,
|
|
103
|
+
path: c,
|
|
104
|
+
onInit: o = () => {
|
|
107
105
|
},
|
|
108
|
-
context:
|
|
109
|
-
isConfiguring:
|
|
110
|
-
...
|
|
106
|
+
context: f,
|
|
107
|
+
isConfiguring: g,
|
|
108
|
+
...l
|
|
111
109
|
}) => {
|
|
112
|
-
const
|
|
110
|
+
const p = F(), [$, L] = y(), [e, n] = y(0), { registerFrame: r, unregisterFrame: i, sendMessage: a } = A(
|
|
113
111
|
P
|
|
114
|
-
), [
|
|
115
|
-
return
|
|
116
|
-
e &&
|
|
117
|
-
}, [
|
|
118
|
-
|
|
119
|
-
}, [
|
|
120
|
-
b === void 0 || !e ||
|
|
121
|
-
}, [b, e, t,
|
|
122
|
-
e &&
|
|
123
|
-
}, [e,
|
|
124
|
-
if (!(!
|
|
112
|
+
), [d, R] = y(!0), [b, M] = y();
|
|
113
|
+
return u(() => {
|
|
114
|
+
e && a(t, "set-context", { context: f });
|
|
115
|
+
}, [f, t, e]), u(() => {
|
|
116
|
+
c !== void 0 && M(c);
|
|
117
|
+
}, [c]), u(() => {
|
|
118
|
+
b === void 0 || !e || a(t, "navigate", { path: b });
|
|
119
|
+
}, [b, e, t, a]), u(() => {
|
|
120
|
+
e && a(t, "set-configuring", { isConfiguring: g });
|
|
121
|
+
}, [e, g]), u(() => {
|
|
122
|
+
if (!(!s || !t || !p))
|
|
125
123
|
return (async () => {
|
|
126
|
-
const m = await j(
|
|
127
|
-
if (
|
|
128
|
-
const w = new URL(
|
|
129
|
-
r(t, w.origin,
|
|
124
|
+
const m = await j(s);
|
|
125
|
+
if (R(m), m) {
|
|
126
|
+
const w = new URL(s);
|
|
127
|
+
r(t, w.origin, p), o(), L(
|
|
130
128
|
`${w.origin}/mm-embedded-interop?id=${t}&origin=${window.location.origin}`
|
|
131
129
|
);
|
|
132
130
|
return;
|
|
@@ -134,7 +132,7 @@ const T = v.default || v, q = T.iframe`
|
|
|
134
132
|
})(), () => {
|
|
135
133
|
i(t);
|
|
136
134
|
};
|
|
137
|
-
}, [
|
|
135
|
+
}, [s, t, r, p]), O(t, "ready", () => n((m) => m + 1)), d ? /* @__PURE__ */ x.createElement(q, { $isReady: e, ref: p, src: $, ...l }) : /* @__PURE__ */ x.createElement(
|
|
138
136
|
"div",
|
|
139
137
|
{
|
|
140
138
|
style: {
|
|
@@ -147,14 +145,14 @@ const T = v.default || v, q = T.iframe`
|
|
|
147
145
|
/* @__PURE__ */ x.createElement("div", { style: { textAlign: "center" } }, "Application must adhere to the MM App Manifest specification to be embedded.")
|
|
148
146
|
);
|
|
149
147
|
};
|
|
150
|
-
|
|
148
|
+
W.propTypes = {
|
|
151
149
|
id: h.string,
|
|
152
150
|
src: h.string.isRequired,
|
|
153
151
|
path: h.string,
|
|
154
152
|
onInit: h.func
|
|
155
153
|
};
|
|
156
154
|
export {
|
|
157
|
-
|
|
155
|
+
W as MMEmbeddableZone,
|
|
158
156
|
P as MMEmbeddableZoneContext,
|
|
159
157
|
U as MMEmbeddableZoneProvider,
|
|
160
158
|
Z as getAppInfo,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
(function(
|
|
1
|
+
(function(u,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("react"),require("prop-types"),require("styled-components")):typeof define=="function"&&define.amd?define(["exports","react","prop-types","styled-components"],e):(u=typeof globalThis<"u"?globalThis:u||self,e(u["mm-react-embeddable"]={},u.React,u.PropTypes,u.styled))})(this,function(u,e,y,S){"use strict";const w=e.createContext(null),Z=({children:n})=>{const[i,f]=e.useState({}),o=e.useRef({}),l=e.useCallback((t,s,r)=>{f(d=>({...d,[t]:{origin:s,frameRef:r}}))},[]),E=e.useCallback(t=>{f(s=>{const r={...s};return delete r[t],r})},[]);e.useEffect(()=>{const t=(r=[],d)=>{r.forEach(a=>a(d))},s=r=>{var I,p,C,b,h;if(!((I=r==null?void 0:r.data)!=null&&I.instanceId))return;const{instanceId:d,type:a}=r.data,c=o.current;t((p=c[d])==null?void 0:p[a],r.data),t((C=c["*"])==null?void 0:C[a],r.data),t((b=c[d])==null?void 0:b["*"],r.data),t((h=c["*"])==null?void 0:h["*"],r.data)};return window.addEventListener("message",s),()=>{window.removeEventListener("message",s)}},[i]);const m=e.useCallback((t,s,r)=>{var a,c;const d=i[t];if(!d){console.warn(`Origin not set for id: ${t}. Unable to send message.`);return}(c=(a=d==null?void 0:d.frameRef)==null?void 0:a.current)!=null&&c.contentWindow&&d.frameRef.current.contentWindow.postMessage({type:s,...r,instanceId:t},d.origin)},[i]),g=e.useCallback((t,s)=>{m(t,"load-options",s)},[m]),$=e.useCallback((t,s)=>{m(t,"validate",s)},[m]),L={registerFrame:l,unregisterFrame:E,sendMessage:m,loadOptions:g,validate:$,addListener:(t,s,r)=>(o.current[t]||(o.current[t]={}),o.current[t][s]||(o.current[t][s]=[]),o.current[t][s].push(r),()=>{o.current[t][s]=o.current[t][s].filter(d=>d!==r)})};return e.createElement(w.Provider,{value:L},n)},M={},v=async n=>{try{const i=new URL(n).origin;if(M[i]!==void 0)return M[i];const o=await(await fetch(`${i}/mm-app-manifest.json`)).json();if(!o.version)throw new Error("Invalid manifest");return M[i]=o,o}catch{}return M[origin]=!1,!1},x=async n=>!!await v(n),F=(n,i,f)=>{const o=e.useContext(w);if(o===null)throw new Error("useEmbeddedEffect must be used within a MMEmbeddableZoneProvider");const l=e.useRef(f);e.useEffect(()=>{l.current=f},[f]),e.useEffect(()=>{if(!(!n||!i))return o.addListener(n,i,(...E)=>l.current(...E))},[o,n,i])};Z.propTypes={children:y.node.isRequired};const q=(S.default||S).iframe`
|
|
2
2
|
width: 100%;
|
|
3
3
|
height: 100%;
|
|
4
4
|
border: none;
|
|
5
5
|
visibility: ${n=>n.$isReady?"visible":"hidden"};
|
|
6
|
-
`,j=({id:n,src:
|
|
6
|
+
`,j=({id:n,src:i,path:f,onInit:o=()=>{},context:l,isConfiguring:E,...m})=>{const g=e.useRef(),[$,L]=e.useState(),[t,s]=e.useState(0),{registerFrame:r,unregisterFrame:d,sendMessage:a}=e.useContext(w),[c,I]=e.useState(!0),[p,C]=e.useState();return e.useEffect(()=>{t&&a(n,"set-context",{context:l})},[l,n,t]),e.useEffect(()=>{f!==void 0&&C(f)},[f]),e.useEffect(()=>{p===void 0||!t||a(n,"navigate",{path:p})},[p,t,n,a]),e.useEffect(()=>{t&&a(n,"set-configuring",{isConfiguring:E})},[t,E]),e.useEffect(()=>{if(!(!i||!n||!g))return(async()=>{const b=await x(i);if(I(b),b){const h=new URL(i);r(n,h.origin,g),o(),L(`${h.origin}/mm-embedded-interop?id=${n}&origin=${window.location.origin}`);return}})(),()=>{d(n)}},[i,n,r,g]),F(n,"ready",()=>s(b=>b+1)),c?e.createElement(q,{$isReady:t,ref:g,src:$,...m}):e.createElement("div",{style:{height:"100%",display:"flex",alignItems:"center",justifyContent:"center"}},e.createElement("div",{style:{textAlign:"center"}},"Application must adhere to the MM App Manifest specification to be embedded."))};j.propTypes={id:y.string,src:y.string.isRequired,path:y.string,onInit:y.func},u.MMEmbeddableZone=j,u.MMEmbeddableZoneContext=w,u.MMEmbeddableZoneProvider=Z,u.getAppInfo=v,u.testIsEmbeddable=x,u.useEmbeddedEffect=F,Object.defineProperty(u,Symbol.toStringTag,{value:"Module"})});
|