Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 | 47x 47x 47x 47x 23x 23x 39x 23x 47x 47x 47x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 39x 32x 40x 40x 39x 39x 39x 39x 38x 38x 39x 39x 39x 13x 39x 16x 16x 39x 39x 39x 10x 14x 14x 5x 4x 5x 39x 39x 7x 39x 39x 39x 39x 7x 32x 39x 39x 39x 238x 3x 39x 24x 2x 11x 29x 29x 29x 2x 29x 2x 43x 31x 31x 14x 31x 14x 14x 11x 3x 1x 53x 53x 53x 39x 41x 41x 41x 41x 41x 8x 41x 7x 7x 1x 41x 41x 141x 10x 10x 10x 53x 39x 3x 3x 3x 3x 3x 3x | import { ComponentOptionsMixin, ComponentOptionsWithArrayProps, ComponentOptionsWithObjectProps, ComponentOptionsWithoutProps, ComponentPropsOptions, ComponentPublicInstance, ComputedOptions, EmitsOptions, MethodOptions, RenderFunction, SetupContext, ComponentInternalInstance, VNode, RootHydrateFunction, ExtractPropTypes, createVNode, defineComponent, nextTick, warn, ConcreteComponent, ComponentOptions, ComponentInjectOptions } from '@vue/runtime-core' import { camelize, extend, hyphenate, isArray, toNumber } from '@vue/shared' import { hydrate, render } from '.' export type VueElementConstructor<P = {}> = { new (initialProps?: Record<string, any>): VueElement & P } // defineCustomElement provides the same type inference as defineComponent // so most of the following overloads should be kept in sync w/ defineComponent. // overload 1: direct setup function export function defineCustomElement<Props, RawBindings = object>( setup: ( props: Readonly<Props>, ctx: SetupContext ) => RawBindings | RenderFunction ): VueElementConstructor<Props> // overload 2: object format with no props export function defineCustomElement< Props = {}, RawBindings = {}, D = {}, C extends ComputedOptions = {}, M extends MethodOptions = {}, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, E extends EmitsOptions = EmitsOptions, EE extends string = string, I extends ComponentInjectOptions = {}, II extends string = string >( options: ComponentOptionsWithoutProps< Props, RawBindings, D, C, M, Mixin, Extends, E, EE, I, II > & { styles?: string[] } ): VueElementConstructor<Props> // overload 3: object format with array props declaration export function defineCustomElement< PropNames extends string, RawBindings, D, C extends ComputedOptions = {}, M extends MethodOptions = {}, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, E extends EmitsOptions = Record<string, any>, EE extends string = string, I extends ComponentInjectOptions = {}, II extends string = string >( options: ComponentOptionsWithArrayProps< PropNames, RawBindings, D, C, M, Mixin, Extends, E, EE, I, II > & { styles?: string[] } ): VueElementConstructor<{ [K in PropNames]: any }> // overload 4: object format with object props declaration export function defineCustomElement< PropsOptions extends Readonly<ComponentPropsOptions>, RawBindings, D, C extends ComputedOptions = {}, M extends MethodOptions = {}, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, E extends EmitsOptions = Record<string, any>, EE extends string = string, I extends ComponentInjectOptions = {}, II extends string = string >( options: ComponentOptionsWithObjectProps< PropsOptions, RawBindings, D, C, M, Mixin, Extends, E, EE, I, II > & { styles?: string[] } ): VueElementConstructor<ExtractPropTypes<PropsOptions>> // overload 5: defining a custom element from the returned value of // `defineComponent` export function defineCustomElement(options: { new (...args: any[]): ComponentPublicInstance }): VueElementConstructor export function defineCustomElement( options: any, hydrate?: RootHydrateFunction ): VueElementConstructor { const Comp = defineComponent(options as any) class VueCustomElement extends VueElement { static def = Comp constructor(initialProps?: Record<string, any>) { super(Comp, initialProps, hydrate) } } return VueCustomElement } export const defineSSRCustomElement = ((options: any) => { // @ts-ignore return defineCustomElement(options, hydrate) }) as typeof defineCustomElement const BaseClass = ( typeof HTMLElement !== 'undefined' ? HTMLElement : class {} ) as typeof HTMLElement type InnerComponentDef = ConcreteComponent & { styles?: string[] } export class VueElement extends BaseClass { /** * @internal */ _instance: ComponentInternalInstance | null = null private _connected = false private _resolved = false private _numberProps: Record<string, true> | null = null private _styles?: HTMLStyleElement[] constructor( private _def: InnerComponentDef, private _props: Record<string, any> = {}, hydrate?: RootHydrateFunction ) { super() Iif (this.shadowRoot && hydrate) { hydrate(this._createVNode(), this.shadowRoot) } else { Iif (__DEV__ && this.shadowRoot) { warn( `Custom element has pre-rendered declarative shadow root but is not ` + `defined as hydratable. Use \`defineSSRCustomElement\`.` ) } this.attachShadow({ mode: 'open' }) if (!(this._def as ComponentOptions).__asyncLoader) { // for sync component defs we can immediately resolve props this._resolveProps(this._def) } } } connectedCallback() { this._connected = true if (!this._instance) { this._resolveDef() } } disconnectedCallback() { this._connected = false nextTick(() => { if (!this._connected) { render(null, this.shadowRoot!) this._instance = null } }) } /** * resolve inner component definition (handle possible async component) */ private _resolveDef() { Iif (this._resolved) { return } this._resolved = true // set initial attrs for (let i = 0; i < this.attributes.length; i++) { this._setAttr(this.attributes[i].name) } // watch future attr changes new MutationObserver(mutations => { for (const m of mutations) { this._setAttr(m.attributeName!) } }).observe(this, { attributes: true }) const resolve = (def: InnerComponentDef, isAsync = false) => { const { props, styles } = def // cast Number-type props set before resolve let numberProps if (props && !isArray(props)) { for (const key in props) { const opt = props[key] if (opt === Number || (opt && opt.type === Number)) { if (key in this._props) { this._props[key] = toNumber(this._props[key]) } ;(numberProps || (numberProps = Object.create(null)))[ camelize(key) ] = true } } } this._numberProps = numberProps if (isAsync) { // defining getter/setters on prototype // for sync defs, this already happened in the constructor this._resolveProps(def) } // apply CSS this._applyStyles(styles) // initial render this._update() } const asyncDef = (this._def as ComponentOptions).__asyncLoader if (asyncDef) { asyncDef().then(def => resolve(def, true)) } else { resolve(this._def) } } private _resolveProps(def: InnerComponentDef) { const { props } = def const declaredPropKeys = isArray(props) ? props : Object.keys(props || {}) // check if there are props set pre-upgrade or connect for (const key of Object.keys(this)) { if (key[0] !== '_' && declaredPropKeys.includes(key)) { this._setProp(key, this[key as keyof this], true, false) } } // defining getter/setters on prototype for (const key of declaredPropKeys.map(camelize)) { Object.defineProperty(this, key, { get() { return this._getProp(key) }, set(val) { this._setProp(key, val) } }) } } protected _setAttr(key: string) { let value = this.getAttribute(key) const camelKey = camelize(key) if (this._numberProps && this._numberProps[camelKey]) { value = toNumber(value) } this._setProp(camelKey, value, false) } /** * @internal */ protected _getProp(key: string) { return this._props[key] } /** * @internal */ protected _setProp( key: string, val: any, shouldReflect = true, shouldUpdate = true ) { if (val !== this._props[key]) { this._props[key] = val if (shouldUpdate && this._instance) { this._update() } // reflect if (shouldReflect) { Iif (val === true) { this.setAttribute(hyphenate(key), '') } else if (typeof val === 'string' || typeof val === 'number') { this.setAttribute(hyphenate(key), val + '') } else if (!val) { this.removeAttribute(hyphenate(key)) } } } } private _update() { render(this._createVNode(), this.shadowRoot!) } private _createVNode(): VNode<any, any> { const vnode = createVNode(this._def, extend({}, this._props)) if (!this._instance) { vnode.ce = instance => { this._instance = instance instance.isCE = true // HMR if (__DEV__) { instance.ceReload = newStyles => { // always reset styles Iif (this._styles) { this._styles.forEach(s => this.shadowRoot!.removeChild(s)) this._styles.length = 0 } this._applyStyles(newStyles) this._instance = null this._update() } } const dispatch = (event: string, args: any[]) => { this.dispatchEvent( new CustomEvent(event, { detail: args }) ) } // intercept emit instance.emit = (event: string, ...args: any[]) => { // dispatch both the raw and hyphenated versions of an event // to match Vue behavior dispatch(event, args) if (hyphenate(event) !== event) { dispatch(hyphenate(event), args) } } // locate nearest Vue custom element parent for provide/inject let parent: Node | null = this while ( (parent = parent && (parent.parentNode || (parent as ShadowRoot).host)) ) { if (parent instanceof VueElement) { instance.parent = parent._instance instance.provides = parent._instance!.provides break } } } } return vnode } private _applyStyles(styles: string[] | undefined) { if (styles) { styles.forEach(css => { const s = document.createElement('style') s.textContent = css this.shadowRoot!.appendChild(s) // record for HMR if (__DEV__) { ;(this._styles || (this._styles = [])).push(s) } }) } } } |