Giter Club home page Giter Club logo

Comments (8)

behzadsp avatar behzadsp commented on May 29, 2024 1

sure, this is my builder file

import { RenderContent, getContent, isPreviewing } from "@builder.io/sdk-vue"
import Hero from "@/views/components/Hero.vue"
import NavBar from "@/views/components/NavBar.vue"
import MainFooter from "@/views/components/MainFooter.vue"
import VpsHeader from "@/views/components/VpsHeader.vue"
import { onMounted } from "vue"

const props = defineProps<{
  slug: string
}>()

const BUILDER_PUBLIC_API_KEY = "my-api-key"

let canShowContent = ref(false)
let content = ref(null)
let title = ref(null)
let apiKey = ref(BUILDER_PUBLIC_API_KEY)

onMounted(() => {
  getContent({
    model: "test",
    apiKey: BUILDER_PUBLIC_API_KEY,
    userAttributes: {
      urlPath: "/" + props.slug + "/",
    },
    options: { enrich: true },
  }).then((res) => {
    content.value = res
    canShowContent.value = content.value || isPreviewing()
    title.value = (content.value && content.value.data && content.value.data.title) || "Unpublished"
  })
})

const REGISTERED_COMPONENTS = [
  {
    component: VpsHeader,
    name: "Vps Header",
    canHaveChildren: true,
    inputs: [
      {
        name: "description",
        type: "richText",
        hideFromUI: false,
        helperText: "This is an editable region.",
        defaultValue: "<b>This text is bold</b>",
      },
      {
        name: "image",
        type: "file",
        allowedFileTypes: ["jpeg", "jpg", "png", "svg", "webp"],
        required: false,
        defaultValue: "https://1gbits.com/build/assets/vps-hero-2f222f0f.svg",
      },
    ],
  },
  {
    component: Hero,
    name: "Hero",
    canHaveChildren: false,
  },
  {
    component: NavBar,
    name: "NavBar",
    canHaveChildren: false,
  },
  {
    component: MainFooter,
    name: "MainFooter",
    canHaveChildren: false,
  },
]

const getRegisteredComponents = () => {
  return REGISTERED_COMPONENTS
}
</script>

<template>
  <Head>
    <title>{{ title }}</title>
  </Head>
  <RenderContent
    v-if="canShowContent"
    model="page"
    :content="content"
    :api-key="apiKey"
    :enrich="true"
    :include-refs="true"
    :customComponents="getRegisteredComponents()" />
  <div v-else>Content not Found</div>
</template>

I'll try to make a minimum reproduction on github and let you know when its done!

from builder.

samijaber avatar samijaber commented on May 29, 2024 1

I've never setup a laravel project, but I see you're externalizing the SDK which makes no sense:

        build: {
            rollupOptions: {
                external: ['@builder.io/sdk-vue'],
            },
        },

You need to remove that config

from builder.

samijaber avatar samijaber commented on May 29, 2024

Can you share the integration code for Builder.io in your repo? Can you share a minimum reproduction in github?

from builder.

behzadsp avatar behzadsp commented on May 29, 2024

@samijaber I've added you to the project test repo new1gbitstest

from builder.

behzadsp avatar behzadsp commented on May 29, 2024

Thanks for the quick fix! Removing that config did the trick for the bare specifier issue.

I realized I left that config in there from some previous testing. but now, the content isn't rendering as SSR. Any ideas on how to get SSR on track?

from builder.

samijaber avatar samijaber commented on May 29, 2024

I am not familiar with the inertiaJS stack, so I cannot tell you how/why SSR is not working in that techstack. However, Builder's SDK works in SSR by default without any additional configuration. So this would typically be an issue with how the server is configured.

If you still need help, please provide a more detailed explanation of what you're seeing.

from builder.

behzadsp avatar behzadsp commented on May 29, 2024

Got it, thanks for the heads up! In my setup, everything is rendering as SSR except the Builder.io RenderContent component. Seems like it's specific to that part.

when I disable the Javascript on browser

<div v-else>Content not Found</div>

is rendering instead of the contents.

from builder.

samijaber avatar samijaber commented on May 29, 2024

You are most likely not providing the correct URL path as an argument to the data-fetching function (getContent/fetchOneEntry). In SSR, you need to use whatever solution your router library offers to pass the path.

Refer to the Nuxt example:

https://github.com/BuilderIO/builder/blob/f9d2be3fedfc9aedc07efef36c35066559c03446/examples/vue/nuxt-3-catchall/pages/[...app].vue#L48-L56

see:

userAttributes: {
      urlPath: route.path,
    },

Closing this issue as the original error is resolved/

from builder.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.