-
Notifications
You must be signed in to change notification settings - Fork 940
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
Vue/Nuxt Documentation is confusing and incomplete #3182
Comments
@jbool24 Thanks for filing as a separate issue. To answer your question: our Vue SDK is perfectly stable and reliable on Vue 3 (with or without Nuxt 3). It has hit Thank you for pointing out some of the inconsistencies in our docs. They were relying on old syntax from our first generation Vue SDK which is no longer supported. We are actively going over our Vue documentation now to make sure all old examples are updated to match the Gen 2 Vue SDK. Meanwhile, I encourage you to look at our example codebases which are up to date. You can see links to all of them here https://github.com/BuilderIO/builder/tree/main/packages/sdks/output/vue#usage To answer your questions: |
Thanks so much @samijaber!! 🙏 ❤️ I appreciate you looking into this. Is it safe to assume the new doc updates will reflect more context about what
Thanks for directing me here! Didn't even know that existed. I was lookin' Thank for this support. |
You do not need to worry about why the api-key is needed, or when it is used. THe SDK takes care of that. We do have internal tickets tracking an issue on how to better explain the API key prop in For your information: Note that the API key is public: it is not a private key, and is therefore safe to consume and store on the client side. |
Thanks for clarification. I would still like to recommend that for use cases in the Nuxt community, using For full clarify here is an example of what the module and runtime plugin could do // <module-root>/module.ts
import {
defineNuxtModule,
addPlugin,
addComponentsDir,
addImports,
addImportsDir,
createResolver
} from "@nuxt/kit";
import type { NuxtHookName } from "@nuxt/schema";
export interface ModuleOptions {
publicApiKey: string,
devtools: boolean, // enable nuxt/devtools integration
apiOptions: any, // default options for fetchOneEntry
customComponentsDir: string, // enable global directory for custom builder components
}
export default defineNuxtModule<ModuleOptions>({
meta: {
name: "@builder.io/sdk-vue/nuxt",
configKey: "builderio"
},
defaults: {
publicApiKey: '',
devtools: false,
customComponentsDir: '~/components/builderio',
apiOptions: {},
},
setup(options, nuxt) {
const resolver = createResolver(import.meta.url);
if(nuxt.options.vite.optimizeDeps) {
nuxt.options.vite.optimizeDeps.include = nuxt.options.vite.optimizeDeps.include || [];
// anything to manually add to the bundle
nuxt.options.vite.optimizeDeps.include.push("@builder.io/sdk-vue");
nuxt.options.vite.optimizeDeps.exclude = nuxt.options.vite.optimizeDeps.exclude || [];
// anything to exclude from the bundle
nuxt.options.vite.optimizeDeps.include.push("@builder.io/sdk-vue");
}
// Enable dirs
if(options.customComponentsDir) {
addComponentsDir({ path: options.customComponentsDir, global: true, pathPrefix: false });
}
nuxt.options.build.transpile.push(resolver.resolve("./runtime"));
nuxt.options.build.transpile.push("@builder.io/sdk-vue"); // <-- if we need/want to transpile
// Add plugin
nuxt.options.runtimeConfig.public.builderio = options;
const enablePluginCondition = options.usePlugin === true && options.enableSudoMode === false;
// here's magic sauce 🪄 to pre-config the key a bundle time.
// User doesn't need to care after setting ENV or directly in nuxt.config.ts
if (enablePluginCondition) {
addPlugin(resolver.resolve("./runtime/plugin")); // <-- see ./runtime/plugin.ts example below
}
// Add global CSS
nuxt.options.css.push('@builder.io/sdk-vue/css');
// Add auto imports globally
const names = [
"fetchEntries",
"fetchOneEntry",
];
for (const name of names) {
addImports({ name, as: name, from: "@builder.io/sdk-vue" });
}
// Add composables if there are helpers
addImportsDir(resolver.resolve("./runtime/composables"));
// We could maybe embed the live Editor too 🤷 if thats possible
if (options.devtools) {
nuxt.hook('devtools:customTabs' as NuxtHookName, (iframeTabs: Array<unknown>): void => {
iframeTabs.push({
name: 'builderio',
title: 'Builder.io',
icon: 'i-logos-builderio-icon',
view: {
type: 'iframe',
src: 'https://builder.io/content',
}
})
})
}
}
}); // <module-root>/runtime/plugin.ts
import { Content as BuilderContent } from '@builder.io/sdk-vue';
import { defineNuxtPlugin, useRuntimeConfig } from "#app";
/**
* Builder.io Pre-configuration from
*
* This would be set in nuxt.config.ts
* builderio {
* publicApiKey: string - could also be set by user with import.meta.env.NUXT_BUILDERIO_PUBLIC_API_KEY
* devtools: boolean
* apiOptions: any
* customComponentsDir: string
* }
*/
export default defineNuxtPlugin(({ vueApp }) => {
let { builderio } = useRuntimeConfig().public;
builderio = JSON.parse(JSON.stringify(builderio));
vueApp.use(BuilderContent, { ...builderio });
}); This would represent a much better DX for Nuxt users as this is what we are most accustomed to. And with vanilla Vue thanks to Vite, its usually preferred to use import.meta.env for such values. At bundle time Vite will rewrite all ENV vars that are marked with |
@samijaber @steve8708 PLEASE HELP 🙏
I recently opened a support ticket via email but that did not result in sufficient resolution or a way forward. Is there any update on the stability of the SDK for Vue3/Nuxt3? This doesn't seem to work as expected. However I can't get a baseline because the Page model example is the only thing that worked as expected when following guides on https://www.builder.io/c/docs or https://www.builder.io/c/blueprints
There are a number of discrepancies between the examples that are spread all over the documentation and it is difficult to figure out what is most current. Here are some examples of conflicting information...
Examples in the Builder Editor for Vue/Nuxt
Nuxt seems to demonstrate using the older Vue2 sdk
While Vue shows both Vue2 and Vue3 but doesn't provide context
Examples for
Section Type
models following Announcement bar guide with Vue/NuxtNuxt3 general user exceptions are that a Nuxt Module uses configs in runtime for API-KEYs or app public configs for public keys which goes in the nuxt.config.js. This doesn't mention either method or where to init the module for usage with Section type only renderings.
Editorial Example
This one shows both fetchOneEntry as well as using an API key on the component
Main Questions:
I love what this project is aiming to do and because of its power I would like to use this with Vue/Nuxt often.
😍 But these example aren't concrete enough to understand and its a blocker to getting started.
I know there is a lot of busy work going on so I mentioned to Support and Partner Program reps that I would be willing to help clean up the docs and contribute back if I can get someone to explain the appropriate usage. Either way is it possible to close the gaps for Vue3 and Nuxt3 framework guides so they agree site-wide across the documentation and all examples? I really want to get using this but feeling frustrated at every step on-boarding myself.
Thanks 👍
The text was updated successfully, but these errors were encountered: