-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathindex.js
205 lines (183 loc) · 5.23 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
import {
defineComponent,
createApp,
defineAsyncComponent,
createVNode,
getCurrentInstance,
} from "vue";
import {
hyphenate,
camelize,
convertAttributeValue,
toVNodes,
getInitialProps,
createCustomEvent,
injectHook,
callHooks
} from "./utils";
function wrap(Component) {
const isAsync = typeof Component === "function" && !Component.cid;
let isInitialized = false;
let hyphenatedPropsList;
let camelizedPropsList;
let camelizedPropsMap;
function initialize(Component) {
if (isInitialized) return;
const options =
typeof Component === "function" ? Component.options : Component;
// extract props info
const propsList = Array.isArray(options.props)
? options.props
: Object.keys(options.props || {});
hyphenatedPropsList = propsList.map(hyphenate);
camelizedPropsList = propsList.map(camelize);
const originalPropsAsObject = Array.isArray(options.props)
? {}
: options.props || {};
camelizedPropsMap = camelizedPropsList.reduce((map, key, i) => {
map[key] = originalPropsAsObject[propsList[i]];
return map;
}, {});
// proxy $emit to native DOM events
injectHook(options, "beforeCreate", function() {
const emit = getCurrentInstance().emit;
getCurrentInstance().emit = function(name, ...args) {
this.$root.$options.customElement.dispatchEvent(
createCustomEvent(name, args)
);
return emit.call(this, name, ...args);
};
});
injectHook(options, 'created', function () {
// sync default props values to wrapper on created
camelizedPropsList.forEach(key => {
this.$root.props[key] = this[key]
})
})
// proxy props as Element properties
camelizedPropsList.forEach(key => {
Object.defineProperty(CustomElement.prototype, key, {
get() {
return this.wrapper.props[key];
},
set(newVal){
Promise.resolve().then(()=>{
this.wrapper.props[key] = newVal;
})
},
enumerable: false,
configurable: true
});
});
isInitialized = true;
}
function syncAttribute(el, key) {
const camelized = camelize(key);
const value = el.hasAttribute(key)
? el.getAttribute(key)
: undefined;
el.wrapper.props[camelized] = convertAttributeValue(
value,
key,
camelizedPropsMap[camelized]
);
}
class CustomElement extends HTMLElement {
wrapper
constructor() {
const self = super();
self.attachShadow({ mode: "open" });
self._wrapper = createApp(
defineComponent({
name: "shadow-root",
customElement: self,
shadowRoot: self.shadowRoot,
data(){
return {
props : {},
slotChildren : []
}
},
beforeCreate(){
self.wrapper = this
},
created(){
const syncInitialAttributes = () => {
this.props = getInitialProps(camelizedPropsList);
hyphenatedPropsList.forEach(key => {
syncAttribute(self, key);
});
};
if (isInitialized) {
syncInitialAttributes();
} else {
// async & unresolved
Component().then(resolved => {
if (resolved.__esModule || resolved[Symbol.toStringTag] === 'Module') {
resolved = resolved.default
}
initialize(resolved)
syncInitialAttributes()
})
}
this.slotChildren = Object.freeze(toVNodes(self.childNodes));
},
render(){
return createVNode(
isAsync ? defineAsyncComponent(Component) : Component,
{
ref: "inner",
...this.props
},
() => this.slotChildren
);
},
})
);
// Use MutationObserver to react to future attribute & slot content change
const observer = new MutationObserver(mutations => {
console.log("变化了吗");
let hasChildrenChange = false;
for (let i = 0; i < mutations.length; i++) {
const m = mutations[i];
if (
isInitialized &&
m.type === "attributes" &&
m.target === self
) {
syncAttribute(self, m.attributeName);
} else {
hasChildrenChange = true;
}
}
if (hasChildrenChange) {
self.wrapper.slotChildren = Object.freeze(toVNodes(self.childNodes));
}
});
observer.observe(self, {
childList: true,
subtree: true,
characterData: true,
attributes: true
});
}
get vueComponent(){
return this.wrapper?.$refs?.inner;
}
connectedCallback() {
if (!this.vueComponent) {
this._wrapper.mount(this.shadowRoot);
} else {
callHooks(this.vueComponent, "activated");
}
}
disconnectedCallback () {
callHooks(this.vueComponent, 'deactivated');
}
}
if (!isAsync) {
initialize(Component);
}
return CustomElement;
}
export default wrap;