How to make multipage editor ?
See original GitHub issueIs it possible to make a multipage editor with Craft JS?
i have started with this example. i have tried to add multiple <Frame>
within one <Editor>
without any luck.
Should i have to create separate <Editor>
for each page ?
Issue Analytics
- State:
- Created 3 years ago
- Comments:10
Top Results From Across the Web
Creating a Multi-Page Editor - Java - Languages - Programming
We're going to focus on the editor, but it's instructive to take a brief look at the wizard as well. The job of...
Read more >How to make multipage editor? #192 - prevwong/craft.js - GitHub
I'm working on something similar. Basically I believe Craft is a page builder alone. So making it a multi page/ website builder you'd...
Read more >Wix Editor: Creating a Multi-Page Site | Help Center
Wix Editor: Creating a Multi-Page Site · Use dynamic pages · Add a blog · Display your media in galleries.
Read more >Multi-page form editors
A very simple way to get started is to create pages and add them as above. Each page need to implement FormPage and...
Read more >How to create multiple pages for your Remixer site
Overview Remixer offers two different services to create a website: single page and multipage. The following describes how to use the...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Realistically, when not editing content, none of events / rules / related properties are very useful, so i presume they can be stripped out, that being said, if the landing page and editor are separate ( let’s say they are two different views ) we can transform state even further ( that will require using a custom renderer instead of craft to show the page, so there is extra work involved, but it gives you more power over how things are displayed )
Hi @Bhaliya-jigar I think craft.js is agnostic on how you implement this multipage solution, and in my opinion this is great, because you can simply use it in any of your project. I can tell you for my use case, I have created one component with the Editor and just pass in the props I receive from the DB on each page request. And it works flawlessly