@vue/apollo-ssr
Advanced tools
Comparing version
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.exportStates = exports.getStates = exports.serializeStates = void 0; | ||
var serializeJs = require("serialize-javascript"); | ||
function serializeStates(apolloClients, options) { | ||
if (options === void 0) { options = {}; } | ||
var state = getStates(apolloClients, options); | ||
const serializeJs = require("serialize-javascript"); | ||
function serializeStates(apolloClients, options = {}) { | ||
const state = getStates(apolloClients, options); | ||
return options.useUnsafeSerializer | ||
@@ -13,12 +12,11 @@ ? JSON.stringify(state) | ||
exports.serializeStates = serializeStates; | ||
function getStates(apolloClients, options) { | ||
if (options === void 0) { options = {}; } | ||
var finalOptions = Object.assign({}, { | ||
function getStates(apolloClients, options = {}) { | ||
const finalOptions = Object.assign({}, { | ||
exportNamespace: '', | ||
}, options); | ||
var states = {}; | ||
for (var key in apolloClients) { | ||
var client = apolloClients[key]; | ||
var state = client.cache.extract(); | ||
states["".concat(finalOptions.exportNamespace).concat(key)] = state; | ||
const states = {}; | ||
for (const key in apolloClients) { | ||
const client = apolloClients[key]; | ||
const state = client.cache.extract(); | ||
states[`${finalOptions.exportNamespace}${key}`] = state; | ||
} | ||
@@ -28,5 +26,4 @@ return states; | ||
exports.getStates = getStates; | ||
function exportStates(apolloClients, options) { | ||
if (options === void 0) { options = {}; } | ||
var finalOptions = Object.assign({}, { | ||
function exportStates(apolloClients, options = {}) { | ||
const finalOptions = Object.assign({}, { | ||
globalName: '__APOLLO_STATE__', | ||
@@ -36,5 +33,5 @@ attachTo: 'window', | ||
}, options); | ||
return "".concat(finalOptions.attachTo, ".").concat(finalOptions.globalName, " = ").concat(serializeStates(apolloClients, options), ";"); | ||
return `${finalOptions.attachTo}.${finalOptions.globalName} = ${serializeStates(apolloClients, options)};`; | ||
} | ||
exports.exportStates = exportStates; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@vue/apollo-ssr", | ||
"version": "4.0.0-alpha.16", | ||
"version": "4.0.0-alpha.17", | ||
"description": "Apollo GraphQL for Vue - Server Side Rendering utilities", | ||
@@ -30,7 +30,2 @@ "repository": { | ||
], | ||
"scripts": { | ||
"dev": "yarn build --watch", | ||
"build": "tsc --outDir dist -d", | ||
"prepublishOnly": "yarn build" | ||
}, | ||
"dependencies": { | ||
@@ -40,5 +35,10 @@ "serialize-javascript": "^6.0.0" | ||
"devDependencies": { | ||
"@types/serialize-javascript": "^5.0.1" | ||
"@apollo/client": "^3.6.2", | ||
"@types/serialize-javascript": "^5.0.1", | ||
"typescript": "^4.1.5" | ||
}, | ||
"gitHead": "cb0e79489177be4d4c90cbe8a442e812c194cb4a" | ||
} | ||
"scripts": { | ||
"dev": "pnpm run build --watch", | ||
"build": "tsc --outDir dist -d" | ||
} | ||
} |
@@ -1,3 +0,30 @@ | ||
# @vue/apollo-ssr | ||
# Server-Side Rendering Utilities for Vue Apollo | ||
Server-Side Rendering Utilities for Vue Apollo | ||
[ ](https://www.npmjs.com/package/@vue/apollo-ssr) | ||
[](https://www.apollographql.com/) | ||
[](https://vuejs.org/) | ||
[](https://circleci.com/gh/vuejs/vue-apollo/tree/v4) | ||
<p align="center"> | ||
<img src="https://cdn-images-1.medium.com/max/400/1*H9AANoofLqjS10Xd5TwRYw.png"> | ||
</p> | ||
:book: Documentation [**for Vue 3**](http://v4.apollo.vuejs.org) | [for Vue 2](https://apollo.vuejs.org/) | ||
[:pen: Contributing guide](./CONTRIBUTING.md) | ||
[:heart: Sponsor me!](https://github.com/sponsors/Akryum) | ||
```bash | ||
npm i @vue/apollo-ssr | ||
yarn add @vue/apollo-ssr | ||
``` | ||
## Sponsors | ||
<p align="center"> | ||
<a href="https://guillaume-chau.info/sponsors/" target="_blank"> | ||
<img src='https://akryum.netlify.app/sponsors.svg'/> | ||
</a> | ||
</p> |
Sorry, the diff of this file is not supported yet
6273
14.26%31
675%3
200%50
-5.66%