vue#ComponentPublicInstance TypeScript Examples
The following examples show how to use
vue#ComponentPublicInstance.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: provider.ts From fect with MIT License | 6 votes |
sortChildren = (
parent: ComponentInternalInstance,
publicChildren: ComponentPublicInstance[],
internalChildren: ComponentInternalInstance[]
) => {
const VNodes = flattenVNodes(parent.subTree.children)
internalChildren.sort(
// eslint-disable-next-line comma-dangle
(a, b) => VNodes.indexOf(a.vnode) - VNodes.indexOf(b.vnode)
)
const orderedPublicChildren = internalChildren.map((item) => item.proxy)
publicChildren.sort((a, b) => {
const indexA = orderedPublicChildren.indexOf(a)
const indexB = orderedPublicChildren.indexOf(b)
return indexA - indexB
})
}
Example #2
Source File: helper.ts From vue-i18n-next with MIT License | 6 votes |
function initialProps<P>(propsOption: ComponentObjectPropsOptions<P>) {
const copy = {} as ComponentPublicInstance<typeof propsOption>['$props']
for (const key in propsOption) {
const prop = propsOption[key]
// @ts-ignore
if (!prop.required && prop.default)
// @ts-ignore
copy[key] = prop.default
}
return copy
}
Example #3
Source File: use-route.ts From fect with MIT License | 5 votes |
route = (vm: ComponentPublicInstance<RouteProps>) => {
const router = vm.$router
const { to } = vm
if (to && router) {
router['push'](to)
}
}
Example #4
Source File: use-route.ts From fect with MIT License | 5 votes |
useRoute = () => {
const vm = getCurrentInstance()!.proxy as ComponentPublicInstance<RouteProps>
return () => route(vm)
}
Example #5
Source File: provider.ts From fect with MIT License | 5 votes |
createProvider = <
// eslint-disable-next-line
T extends ComponentPublicInstance = ComponentPublicInstance<{}, any>,
ProvideValue = never
>(
key: InjectionKey<ProvideValue>
) => {
const publicChildren: T[] = reactive([])
const internalChildren: ComponentInternalInstance[] = reactive([])
const parent = getCurrentInstance()!
const provider = (value?: ProvideValue) => {
const link = (child: ComponentInternalInstance) => {
if (child.proxy) {
internalChildren.push(child)
publicChildren.push(child.proxy as T)
sortChildren(parent, publicChildren, internalChildren)
}
}
const unlink = (child: ComponentInternalInstance) => {
const idx = internalChildren.indexOf(child)
publicChildren.splice(idx, 1)
internalChildren.splice(idx, 1)
}
provide(
key,
Object.assign(
{
link,
unlink,
children: publicChildren,
internalChildren
},
value
)
)
}
return {
children: publicChildren,
provider
}
}
Example #6
Source File: vue-editor-adapter.tsx From vue3-datagrid with MIT License | 5 votes |
private vueEl: ComponentPublicInstance<any>|undefined;
Example #7
Source File: helper.ts From vue-i18n-next with MIT License | 4 votes |
export function mount(
targetComponent: Parameters<typeof createApp>[0],
i18n: I18n,
options: Partial<MountOptions> = {}
): Promise<Wrapper> {
const TargetComponent = targetComponent
const installI18n = isBoolean(options.installI18n)
? options.installI18n
: true
return new Promise((resolve, reject) => {
// NOTE: only supports props as an object
const propsData = reactive(
assign(
// @ts-ignore
initialProps(TargetComponent.props || {}),
options.propsData
)
)
// eslint-disable-next-line @typescript-eslint/no-explicit-any
function setProps(partialProps: Record<string, any>) {
assign(propsData, partialProps)
return nextTick()
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const slots: Record<string, (propsData: any) => VNode> = {}
const Wrapper = defineComponent({
emits: ['ready'],
setup(_props, { emit }) {
const componentInstanceRef = shallowRef<ComponentPublicInstance>()
onErrorCaptured(err => {
reject(err)
return true
})
return () => {
return h(
// eslint-disable-next-line @typescript-eslint/no-explicit-any
TargetComponent as any,
{
ref: componentInstanceRef,
onVnodeMounted() {
emit('ready', componentInstanceRef.value)
},
...propsData
},
slots
)
}
}
})
const app = createApp(Wrapper, {
onReady: (instance: ComponentPublicInstance) => {
resolve({ app, vm: instance, rootEl, setProps, html, find })
}
})
if (options.provide) {
const keys = getKeys(options.provide)
for (const key of keys) {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
app.provide(key, options.provide[key as any])
}
}
if (options.components) {
for (const key in options.components) {
app.component(key, options.components[key])
}
}
if (options.slots) {
for (const key in options.slots) {
slots[key] = compileSlot(options.slots[key])
}
}
installI18n && app.use(i18n)
const rootEl = document.createElement('div')
document.body.appendChild(rootEl)
try {
app.mount(rootEl)
} catch (e) {
return reject(e)
}
function html() {
return rootEl.innerHTML
}
function find(selector: string) {
return rootEl.querySelector(selector)
}
activeWrapperRemovers.push(() => {
app.unmount()
rootEl.remove()
})
})
}