Code Monkey home page Code Monkey logo

Comments (4)

nikcio avatar nikcio commented on June 22, 2024

Hi @jdpnielsen

The reason ContentByContentTypeQuery doesn't support preview is because the underlying method that is called in Umbraco doesn't take a parameter of preview. So we would either need to have a new method added to Umbraco in order to support this or fetch the content data in some other way.

The underlying call is to IPublishedCache.GetByContentType(IPublishedContentType contentType);. See src\Nikcio.UHeadless.Content\Queries\ContentByContentTypeQuery.cs

from nikcio.uheadless.

jdpnielsen avatar jdpnielsen commented on June 22, 2024

@nikcio That makes sense.

I just took a look at the underlying code for GetByContentType: https://github.com/umbraco/Umbraco-CMS/blob/v12/dev/src/Umbraco.Core/PublishedCache/PublishedCacheBase.cs#L91-L98 (hope this is the correct one anyway)

    public virtual IEnumerable<IPublishedContent> GetByContentType(IPublishedContentType contentType) =>

        // this is probably not super-efficient, but works
        // some cache implementation may want to override it, though
        GetAtRoot()
            .SelectMany(x => x.DescendantsOrSelf(_variationContextAccessor!))
            .Where(x => x.ContentType.Id == contentType.Id);

It seems the GetAtRoot() function take a preview parameter. Do you think it would make sense to implement a variant of this with preview support in this repo?

from nikcio.uheadless.

nikcio avatar nikcio commented on June 22, 2024

@jdpnielsen I never knew the implementation of GetByContentType was so simple 😆

But yeah we can totally replace GetByContentType with this and pass a preview parameter.
But it would be a breaking change because we will need to inject the variation context accessor to the query and add the preview parameter. But I'm already working on v5 so it can be included in that 😄

Do you want to take a swing at opening a PR for it?

from nikcio.uheadless.

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.