Giter VIP home page Giter VIP logo

Comments (8)

Frithir avatar Frithir commented on May 29, 2024 1

Yes, cleaning a few things up with style. I'll have to check up on this later on.

from yellowcake.

Frithir avatar Frithir commented on May 29, 2024 1

Ok, you need to apply a template to your new services page. Then for the CMS preview panel to work look at the cms.js follow the pattern.

import { DefaultPageTemplate } from '../templates/DefaultPage'
Then
CMS.registerPreviewTemplate('infoPages', ({ entry }) => ( <DefaultPageTemplate {...entry.toJS().data} /> ))

Let me know how you go :)

from yellowcake.

ethan-hurst avatar ethan-hurst commented on May 29, 2024 1

Thank you for your help mate!

from yellowcake.

ethan-hurst avatar ethan-hurst commented on May 29, 2024

More on this. Its not that styles.css isn't being loaded. Its that in the CMS. Some pages don't get the correct class names added. For example. Home Page see below.

image

Then we see a custom page that has been added.
image

we get these weird pseudo class names.

from yellowcake.

Frithir avatar Frithir commented on May 29, 2024

As far as the reference to styles this loads the built public version of your css so the preview panel looks like the live site.
if ( window.location.hostname === 'localhost' && window.localStorage.getItem('netlifySiteURL') ) { CMS.registerPreviewStyle( window.localStorage.getItem('netlifySiteURL') + '/styles.css' ) } else { CMS.registerPreviewStyle('/styles.css') }

from yellowcake.

ethan-hurst avatar ethan-hurst commented on May 29, 2024

Alright. That makes a lot more sense. I've added in the templates to CMS.js however I'm still getting some weird stuff happening here.

For reference the repo is here. https://github.com/flamebeard/WhereAmI

As far as the reference to styles this loads the built public version of your css so the preview panel looks like the live site.
if ( window.location.hostname === 'localhost' && window.localStorage.getItem('netlifySiteURL') ) { CMS.registerPreviewStyle( window.localStorage.getItem('netlifySiteURL') + '/styles.css' ) } else { CMS.registerPreviewStyle('/styles.css') }

Where is the above code? I couldn't find that in the repo?

Thanks for your help too!

from yellowcake.

Frithir avatar Frithir commented on May 29, 2024

Have you got it up on Netlify? enable identity and all that jazz. shouldn't need to change this but is on the top of this page :) https://github.com/thriveweb/yellowcake/blob/master/src/cms/cms.js

from yellowcake.

ethan-hurst avatar ethan-hurst commented on May 29, 2024

Just worked this out. Under cms.js I had forgot to register the name of the page from config.yml

for example it looked like this

CMS.registerPreviewTemplate('blog-page', ({ entry }) => (
  <HowPageTemplate {...entry.toJS().data} />
))

When it should have looked like this

CMS.registerPreviewTemplate('how-page', ({ entry }) => (
  <HowPageTemplate {...entry.toJS().data} />
))

from yellowcake.

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.