feat: Complete fleet — 94 skills across 10+ domains
Pulled ALL skills from 15 source repositories: - anthropics/skills: 16 (docs, design, MCP, testing) - obra/superpowers: 14 (TDD, debugging, agents, planning) - coreyhaines31/marketingskills: 25 (marketing, CRO, SEO, growth) - better-auth/skills: 5 (auth patterns) - vercel-labs/agent-skills: 5 (React, design, Vercel) - antfu/skills: 16 (Vue, Vite, Vitest, pnpm, Turborepo) - Plus 13 individual skills from various repos Mosaic Stack is not limited to coding — the Orchestrator and subagents serve coding, business, design, marketing, writing, logistics, analysis, and more. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
215
skills/vueuse-functions/references/createInjectionState.md
Normal file
215
skills/vueuse-functions/references/createInjectionState.md
Normal file
@@ -0,0 +1,215 @@
|
||||
---
|
||||
category: State
|
||||
---
|
||||
|
||||
# createInjectionState
|
||||
|
||||
Create global state that can be injected into components.
|
||||
|
||||
## Usage
|
||||
|
||||
```ts twoslash include useCounterStore
|
||||
// useCounterStore.ts
|
||||
import { createInjectionState } from '@vueuse/core'
|
||||
import { computed, shallowRef } from 'vue'
|
||||
|
||||
const [useProvideCounterStore, useCounterStore] = createInjectionState((initialValue: number) => {
|
||||
// state
|
||||
const count = shallowRef(initialValue)
|
||||
|
||||
// getters
|
||||
const double = computed(() => count.value * 2)
|
||||
|
||||
// actions
|
||||
function increment() {
|
||||
count.value++
|
||||
}
|
||||
|
||||
return { count, double, increment }
|
||||
})
|
||||
|
||||
export { useProvideCounterStore }
|
||||
|
||||
// If you want to hide `useCounterStore` and wrap it in default value logic or throw error logic, please don't export `useCounterStore`
|
||||
export { useCounterStore }
|
||||
|
||||
export function useCounterStoreWithDefaultValue() {
|
||||
return useCounterStore() ?? {
|
||||
count: shallowRef(0),
|
||||
double: shallowRef(0),
|
||||
increment: () => {},
|
||||
}
|
||||
}
|
||||
|
||||
export function useCounterStoreOrThrow() {
|
||||
const counterStore = useCounterStore()
|
||||
if (counterStore == null)
|
||||
throw new Error('Please call `useProvideCounterStore` on the appropriate parent component')
|
||||
return counterStore
|
||||
}
|
||||
```
|
||||
|
||||
```vue
|
||||
<!-- RootComponent.vue -->
|
||||
<script setup lang="ts">
|
||||
// @filename: useCounterStore.ts
|
||||
// @include: useCounterStore
|
||||
// ---cut---
|
||||
import { useProvideCounterStore } from './useCounterStore'
|
||||
|
||||
useProvideCounterStore(0)
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<slot />
|
||||
</div>
|
||||
</template>
|
||||
```
|
||||
|
||||
```vue
|
||||
<!-- CountComponent.vue -->
|
||||
<script setup lang="ts">
|
||||
// @filename: useCounterStore.ts
|
||||
// @include: useCounterStore
|
||||
// ---cut---
|
||||
import { useCounterStore } from './useCounterStore'
|
||||
|
||||
// use non-null assertion operator to ignore the case that store is not provided.
|
||||
const { count, double } = useCounterStore()!
|
||||
// if you want to allow component to working without providing store, you can use follow code instead:
|
||||
// const { count, double } = useCounterStore() ?? { count: shallowRef(0), double: shallowRef(0) }
|
||||
// also, you can use another hook to provide default value
|
||||
// const { count, double } = useCounterStoreWithDefaultValue()
|
||||
// or throw error
|
||||
// const { count, double } = useCounterStoreOrThrow()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<ul>
|
||||
<li>
|
||||
count: {{ count }}
|
||||
</li>
|
||||
<li>
|
||||
double: {{ double }}
|
||||
</li>
|
||||
</ul>
|
||||
</template>
|
||||
```
|
||||
|
||||
```vue
|
||||
<!-- ButtonComponent.vue -->
|
||||
<script setup lang="ts">
|
||||
// @filename: useCounterStore.ts
|
||||
// @include: useCounterStore
|
||||
// ---cut---
|
||||
import { useCounterStore } from './useCounterStore'
|
||||
|
||||
// use non-null assertion operator to ignore the case that store is not provided.
|
||||
const { increment } = useCounterStore()!
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<button @click="increment">
|
||||
+
|
||||
</button>
|
||||
</template>
|
||||
```
|
||||
|
||||
## Provide a custom InjectionKey
|
||||
|
||||
```ts
|
||||
// useCounterStore.ts
|
||||
import { createInjectionState } from '@vueuse/core'
|
||||
import { computed, shallowRef } from 'vue'
|
||||
|
||||
// custom injectionKey
|
||||
const CounterStoreKey = 'counter-store'
|
||||
|
||||
const [useProvideCounterStore, useCounterStore] = createInjectionState((initialValue: number) => {
|
||||
// state
|
||||
const count = shallowRef(initialValue)
|
||||
|
||||
// getters
|
||||
const double = computed(() => count.value * 2)
|
||||
|
||||
// actions
|
||||
function increment() {
|
||||
count.value++
|
||||
}
|
||||
|
||||
return { count, double, increment }
|
||||
}, { injectionKey: CounterStoreKey })
|
||||
```
|
||||
|
||||
## Provide a custom default value
|
||||
|
||||
```ts
|
||||
// useCounterStore.ts
|
||||
import { createInjectionState } from '@vueuse/core'
|
||||
import { computed, shallowRef } from 'vue'
|
||||
|
||||
const [useProvideCounterStore, useCounterStore] = createInjectionState((initialValue: number) => {
|
||||
// state
|
||||
const count = shallowRef(initialValue)
|
||||
|
||||
// getters
|
||||
const double = computed(() => count.value * 2)
|
||||
|
||||
// actions
|
||||
function increment() {
|
||||
count.value++
|
||||
}
|
||||
|
||||
return { count, double, increment }
|
||||
}, { defaultValue: 0 })
|
||||
```
|
||||
|
||||
## Type Declarations
|
||||
|
||||
```ts
|
||||
export type CreateInjectionStateReturn<
|
||||
Arguments extends Array<any>,
|
||||
Return,
|
||||
> = Readonly<
|
||||
[
|
||||
/**
|
||||
* Call this function in a provider component to create and provide the state.
|
||||
*
|
||||
* @param args Arguments passed to the composable
|
||||
* @returns The state returned by the composable
|
||||
*/
|
||||
useProvidingState: (...args: Arguments) => Return,
|
||||
/**
|
||||
* Call this function in a consumer component to inject the state.
|
||||
*
|
||||
* @returns The injected state, or `undefined` if not provided and no default value was set.
|
||||
*/
|
||||
useInjectedState: () => Return | undefined,
|
||||
]
|
||||
>
|
||||
export interface CreateInjectionStateOptions<Return> {
|
||||
/**
|
||||
* Custom injectionKey for InjectionState
|
||||
*/
|
||||
injectionKey?: string | InjectionKey<Return>
|
||||
/**
|
||||
* Default value for the InjectionState
|
||||
*/
|
||||
defaultValue?: Return
|
||||
}
|
||||
/**
|
||||
* Create global state that can be injected into components.
|
||||
*
|
||||
* @see https://vueuse.org/createInjectionState
|
||||
*
|
||||
* @__NO_SIDE_EFFECTS__
|
||||
*/
|
||||
export declare function createInjectionState<
|
||||
Arguments extends Array<any>,
|
||||
Return,
|
||||
>(
|
||||
composable: (...args: Arguments) => Return,
|
||||
options?: CreateInjectionStateOptions<Return>,
|
||||
): CreateInjectionStateReturn<Arguments, Return>
|
||||
```
|
||||
Reference in New Issue
Block a user