Giter Site home page Giter Site logo

Comments (5)

TobeyEh avatar TobeyEh commented on May 29, 2024 2

Hey! I have only tested it locally in a very simple setup but it really seems to work! 🎉
Thanks again for your great starterkit support! I will keep you posted concerning the level nesting.

from kirby-vue3-starterkit.

johannschopplich avatar johannschopplich commented on May 29, 2024

You can add nested levels by yourself. Haven't tested, but the following steps should work.

  1. Edit:
const routes = [
  ...site.children.map(page => ({
    path: `/${page.uri}`,
    component: () => import(`../views/${capitalize(page.template)}.vue`).catch(() => Default)
  })),
  ...site.grandchildren.map(page => ({
    path: `/${page.uri}`,
    component: () => import(`../views/${capitalize(page.template)}.vue`).catch(() => Default)
  })),
  ...site.grandchildren
    .filter(page => page.childTemplate)
    .map(page => ({
      path: `/${page.uri}/:id`,
      component: () => import(`../views/${capitalize(page.childTemplate)}.vue`).catch(() => Default)
    }))
]
  1. Add grand children below children key:
    'children' => array_values(
'grandchildren' => array_values(
  site()
      ->grandChildren()
      ->published()
      ->map(fn($child) => [
          'uri' => $child->uri(),
          'title' => $child->title()->value(),
          'isListed' => $child->isListed(),
          'template' => $child->intendedTemplate()->name(),
          'childTemplate' => $child->hasChildren() ? $child->children()->first()->intendedTemplate()->name() : null
      ])
      ->data()
),
  1. Have fun!

from kirby-vue3-starterkit.

johannschopplich avatar johannschopplich commented on May 29, 2024

@TobeyEh I'm curious. Did you succeed implementing nested pages?

from kirby-vue3-starterkit.

TobeyEh avatar TobeyEh commented on May 29, 2024

Hi, wow, thanks I will try it asap! The kirby panel structure has not been set up yet so I couldn't test is yet. Later this evening though. I just wanted to ask in advance if it's even possible, if not I would have just used the non-Vue starterkit.

from kirby-vue3-starterkit.

johannschopplich avatar johannschopplich commented on May 29, 2024

Cool! No rush. It's a good question. If I write dedicated docs one day, I'll put in in the FAQ section.

As I said, haven't tested locally myself, but it should work. Every route level has to be passed to the router, I've only included two levels as default – similar to the starterkit.

from kirby-vue3-starterkit.

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.