Coder Social home page Coder Social logo

etch.orchardcore.contextualedit's People

Contributors

mehdi-miah avatar mobinzk avatar pbmikew avatar peterkeating avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Forkers

aghili371 pbmikew

etch.orchardcore.contextualedit's Issues

Fix DI Warning in error logs

Just checked the error logs on a site running RC2 and spotted this warning:

The content part display driver 'Etch.OrchardCore.ContextualEdit.Drivers.ContextualEditPartDisplay' should not be registered in DI. Use UseDisplayDriver instead.

Unable to resolve content item other than homepage

I've used your NuGet package in current version 1.4.0 in OrchardCore site and followed your instructions. Widget is displayed on homepage only.

So I downloaded your source code from github and referenced project to be able to debug.

The problem I've found is in the ContextualEditService, method GetContentItemForRequestAsync, line 42. The variable contentItemId is always null. And the reason is that _contentHandleProvider instance variable is AliasPartContentHandleProvider type instead of expected AutorouteHandleProvider type.

One solution that works for me is replace IContentHandleProvider with IContentHandleManager. It will use all content handle providers ordered by Order property and return first successfull result.

Another solution, that also works is to resolve AutorouteHandleProvider from content handle provider collection registered in dependency injection container. This solution will use only expected content handle provider. May there is another solution to resolve correct service from DI but currently I don't know how.

public ContextualEditService(IEnumerable<IContentHandleProvider> contentHandleProviders, IContentManager contentManager, IHttpContextAccessor httpContextAccessor, ISiteService siteService)
{
    _contentHandleProvider = contentHandleProviders.OfType<AutorouteHandleProvider>().First();
    _contentManager = contentManager;
    _httpContextAccessor = httpContextAccessor;
    _siteService = siteService;
}

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.