Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add basic support for vue options api #575

Merged
merged 1 commit into from
Nov 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"@nuxt/kit": "^3.8.2",
"@rollup/plugin-graphql": "^2.0.4",
"@vue/apollo-composable": "4.0.0-beta.11",
"@vue/apollo-option": "4.0.0-beta.9",
"defu": "^6.1.3",
"destr": "^2.0.2",
"graphql": "^16.8.1",
Expand Down
56 changes: 1 addition & 55 deletions playground/app.vue
Original file line number Diff line number Diff line change
@@ -1,57 +1,3 @@
<template>
<div id="wrapper" bg-light text-dark>
<main p-4>
<div flex flex-col gap-4>
<NCard class="p4">
<div class="n-header-upper">
GraphQL API
</div>

<form class="flex gap-3 items-center">
<NRadio
v-for="entry of apis"
:key="entry"
v-model="api"
:name="entry"
:value="entry"
n="red6 dark:red5"
>
{{ entry }}
</NRadio>
</form>
</NCard>

<template v-if="api === 'github'">
<GithubDemo />
</template>
<template v-else-if="api === 'starlink'">
<StarlinkDemo />
</template>
<template v-else-if="api === 'todos'">
<TodosDemo />
</template>
</div>
</main>

<footer border-t-1 border-slate flex justify-center items-center>
@nuxtjs/apollo playground
</footer>
</div>
<NuxtPage />
</template>

<script lang="ts" setup>
const apis = ref(['starlink', 'todos', 'github'])

const apiCookie = useCookie('apollo_api', { default: () => apis.value[0] })
const api = ref(apiCookie.value)
watch(api, value => (apiCookie.value = value))
</script>

<style scoped>
#wrapper {
min-height: 100vh;

display: grid;
grid-template-rows: 1fr 60px;
}
</style>
57 changes: 57 additions & 0 deletions playground/pages/index.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<script lang="ts" setup>
const apis = ref(['starlink', 'todos', 'github'])

const apiCookie = useCookie('apollo_api', { default: () => apis.value[0] })
const api = ref(apiCookie.value)
watch(api, value => (apiCookie.value = value))
</script>

<template>
<div id="wrapper" bg-light text-dark>
<main p-4>
<div flex flex-col gap-4>
<NCard class="p4">
<div class="n-header-upper">
GraphQL API
</div>

<form class="flex gap-3 items-center">
<NRadio
v-for="entry of apis"
:key="entry"
v-model="api"
:name="entry"
:value="entry"
n="red6 dark:red5"
>
{{ entry }}
</NRadio>
</form>
</NCard>

<template v-if="api === 'github'">
<GithubDemo />
</template>
<template v-else-if="api === 'starlink'">
<StarlinkDemo />
</template>
<template v-else-if="api === 'todos'">
<TodosDemo />
</template>
</div>
</main>

<footer border-t-1 border-slate flex justify-center items-center>
@nuxtjs/apollo playground
</footer>
</div>
</template>

<style scoped>
#wrapper {
min-height: 100vh;

display: grid;
grid-template-rows: 1fr 60px;
}
</style>
16 changes: 16 additions & 0 deletions playground/pages/options-api.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<script>
export default {
apollo: {
ships: {
query: gql`query ships ($limit: Int = 10) { ships(limit: $limit) { id name } }`,
variables: () => ({ limit: 3 })
}
}
}
</script>

<template>
<pre>
{{ ships }}
</pre>
</template>
14 changes: 14 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions src/runtime/plugin.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { destr } from 'destr'
import { onError } from '@apollo/client/link/error'
import { getMainDefinition } from '@apollo/client/utilities'
import { createApolloProvider } from '@vue/apollo-option'
import { ApolloClients, provideApolloClients } from '@vue/apollo-composable'
import { ApolloClient, ApolloLink, createHttpLink, InMemoryCache, split } from '@apollo/client/core'
import { GraphQLWsLink } from '@apollo/client/link/subscriptions'
Expand Down Expand Up @@ -136,6 +137,7 @@ export default defineNuxtPlugin((nuxtApp) => {

provideApolloClients(clients)
nuxtApp.vueApp.provide(ApolloClients, clients)
nuxtApp.vueApp.use(createApolloProvider({ defaultClient: clients?.default as any }))
nuxtApp._apolloClients = clients

const defaultClient = clients?.default
Expand Down