diff --git a/src/Orchard.Web/Modules/Orchard.CustomForms/Drivers/CustomFormPartDriver.cs b/src/Orchard.Web/Modules/Orchard.CustomForms/Drivers/CustomFormPartDriver.cs index 28d8a6ea3..4fe5d8899 100644 --- a/src/Orchard.Web/Modules/Orchard.CustomForms/Drivers/CustomFormPartDriver.cs +++ b/src/Orchard.Web/Modules/Orchard.CustomForms/Drivers/CustomFormPartDriver.cs @@ -11,20 +11,26 @@ using System; using Orchard.Core.Contents.Settings; using Orchard.Security; using Orchard.Localization; +using Orchard.CustomForms.Services; namespace Orchard.CustomForms.Drivers { public class CustomFormPartDriver : ContentPartDriver { private readonly IContentDefinitionManager _contentDefinitionManager; private readonly IOrchardServices _orchardServices; private readonly IAuthorizationService _authService; + private readonly IEditorBuilderWrapper _editorBuilderWrapper; public CustomFormPartDriver( IContentDefinitionManager contentDefinitionManager, IOrchardServices orchardServices, - IAuthorizationService authService) { + IAuthorizationService authService, + IEditorBuilderWrapper editorBuilderWrapper) { + _contentDefinitionManager = contentDefinitionManager; _orchardServices = orchardServices; _authService = authService; + _editorBuilderWrapper = editorBuilderWrapper; + T = NullLocalizer.Instance; } @@ -32,39 +38,43 @@ namespace Orchard.CustomForms.Drivers { protected override DriverResult Display(CustomFormPart part, string displayType, dynamic shapeHelper) { // this method is used by the widget to render the form when it is displayed + // Display CustomForm_Wrapper shape only if shape type is Detail. + if (displayType.Equals("Detail")) { + int contentId = 0; + var queryString = _orchardServices.WorkContext.HttpContext.Request.QueryString; - int contentId = 0; - var queryString = _orchardServices.WorkContext.HttpContext.Request.QueryString; + if (queryString.AllKeys.Contains("contentId")) { + int.TryParse(queryString["contentId"], out contentId); + } - if (queryString.AllKeys.Contains("contentId")) { - int.TryParse(queryString["contentId"], out contentId); - } + ContentItem contentItem; + if (contentId > 0) { + contentItem = _orchardServices.ContentManager.Get(contentId); - ContentItem contentItem; - if (contentId > 0) { - contentItem = _orchardServices.ContentManager.Get(contentId); + if (part.UseContentTypePermissions && !_orchardServices.Authorizer.Authorize(Core.Contents.Permissions.EditContent, contentItem)) + return null; + } else { + contentItem = _orchardServices.ContentManager.New(part.ContentType); - if (part.UseContentTypePermissions && !_orchardServices.Authorizer.Authorize(Core.Contents.Permissions.EditContent, contentItem)) + if (part.UseContentTypePermissions && !_orchardServices.Authorizer.Authorize(Core.Contents.Permissions.CreateContent, contentItem)) + return null; + } + + if (contentItem == null || contentItem.ContentType != part.ContentType) return null; - } else { - contentItem = _orchardServices.ContentManager.New(part.ContentType); - if (part.UseContentTypePermissions && !_orchardServices.Authorizer.Authorize(Core.Contents.Permissions.CreateContent, contentItem)) + if (!contentItem.Has()) { return null; + } + + return ContentShape("Parts_CustomForm_Wrapper", () => { + return shapeHelper.Parts_CustomForm_Wrapper() + .Editor(_editorBuilderWrapper.BuildEditor(contentItem)) + .ContentPart(part); + }); } - - if (contentItem == null || contentItem.ContentType != part.ContentType) - return null; - - if (!contentItem.Has()) { - return null; - } - - return ContentShape("Parts_CustomForm_Wrapper", () => { - return shapeHelper.Parts_CustomForm_Wrapper() - .Editor(_orchardServices.ContentManager.BuildEditor(contentItem)) - .ContentPart(part); - }); + // Returning null avoids rendering the edit shape for current custom form. + return null; } protected override DriverResult Editor(CustomFormPart part, dynamic shapeHelper) { diff --git a/src/Orchard.Web/Modules/Orchard.CustomForms/Orchard.CustomForms.csproj b/src/Orchard.Web/Modules/Orchard.CustomForms/Orchard.CustomForms.csproj index 3f38e0295..43c8c516d 100644 --- a/src/Orchard.Web/Modules/Orchard.CustomForms/Orchard.CustomForms.csproj +++ b/src/Orchard.Web/Modules/Orchard.CustomForms/Orchard.CustomForms.csproj @@ -146,6 +146,8 @@ + + @@ -231,4 +233,4 @@ - + \ No newline at end of file diff --git a/src/Orchard.Web/Modules/Orchard.CustomForms/Services/EditorBuilderWrapper.cs b/src/Orchard.Web/Modules/Orchard.CustomForms/Services/EditorBuilderWrapper.cs new file mode 100644 index 000000000..5ec318a04 --- /dev/null +++ b/src/Orchard.Web/Modules/Orchard.CustomForms/Services/EditorBuilderWrapper.cs @@ -0,0 +1,22 @@ +using Orchard.ContentManagement; + +namespace Orchard.CustomForms.Services { + public class EditorBuilderWrapper : IEditorBuilderWrapper { + + private readonly IContentManager _contentManager; + + public EditorBuilderWrapper( + IContentManager contentManager) { + + _contentManager = contentManager; + } + + public dynamic BuildEditor(IContent content) { + return _contentManager.BuildEditor(content); + } + + public dynamic UpdateEditor(IContent content, IUpdateModel updateModel) { + return _contentManager.UpdateEditor(content, updateModel); + } + } +} \ No newline at end of file diff --git a/src/Orchard.Web/Modules/Orchard.CustomForms/Services/IEditorBuilderWrapper.cs b/src/Orchard.Web/Modules/Orchard.CustomForms/Services/IEditorBuilderWrapper.cs new file mode 100644 index 000000000..8b9978b41 --- /dev/null +++ b/src/Orchard.Web/Modules/Orchard.CustomForms/Services/IEditorBuilderWrapper.cs @@ -0,0 +1,8 @@ +using Orchard.ContentManagement; + +namespace Orchard.CustomForms.Services { + public interface IEditorBuilderWrapper : IDependency { + dynamic BuildEditor(IContent content); + dynamic UpdateEditor(IContent content, IUpdateModel updateModel); + } +} diff --git a/src/Orchard.Web/Modules/Orchard.CustomForms/Views/Item/Create.cshtml b/src/Orchard.Web/Modules/Orchard.CustomForms/Views/Item/Create.cshtml index e35d358db..2d5693802 100644 --- a/src/Orchard.Web/Modules/Orchard.CustomForms/Views/Item/Create.cshtml +++ b/src/Orchard.Web/Modules/Orchard.CustomForms/Views/Item/Create.cshtml @@ -1,7 +1,13 @@ @using Orchard.ContentManagement @using Orchard.Utility.Extensions @using Orchard.ContentManagement.Aspects; +@using Orchard.ContentManagement.MetaData; +@using Orchard.ContentManagement.MetaData.Models; +@using Orchard.Core.Contents.Settings; + @{ + IContentDefinitionManager _contentDefinitionManager = WorkContext.Resolve(); + ContentItem customForm = Model.ContentItem; string returnUrl = Model.ReturnUrl; var metadata = customForm.ContentManager.GetItemMetadata(customForm); @@ -14,6 +20,18 @@ var submitButtonText = String.IsNullOrEmpty(Model.ContentItem.CustomFormPart.SubmitButtonText) ? T("Submit").Text : Model.ContentItem.CustomFormPart.SubmitButtonText; var publishButtonText = String.IsNullOrEmpty(Model.ContentItem.CustomFormPart.PublishButtonText) ? T("Publish").Text : Model.ContentItem.CustomFormPart.PublishButtonText; + + var showPublishButton = Model.ContentItem.CustomFormPart.SavePublishContentItem; + // Read type definition to check if content is draftable + var typeDefinition = _contentDefinitionManager + .ListTypeDefinitions() + .Where(x => String.Equals(x.Name, Model.ContentItem.CustomFormPart.ContentType, StringComparison.OrdinalIgnoreCase)) + .FirstOrDefault(); + if (typeDefinition != null) { + // Publish button has to be visible only if content is draftable AND is set to show the publish button + showPublishButton = showPublishButton && + typeDefinition.Settings.GetModel().Draftable; + } } @Display(New.Parts_Title().Title(displayText)) @@ -29,8 +47,22 @@ @if (Model.ContentItem.CustomFormPart.SavePublishContentItem == false || Model.ContentItem.CustomFormPart.SaveContentItem == true) { } - @if (Model.ContentItem.CustomFormPart.SavePublishContentItem == true) { + @if (showPublishButton) { } + + +
+ @if (Model.Actions != null) { +
+ @Display(Model.Actions) +
+ } + @if (Model.Sidebar != null) { +
+ @Display(Model.Sidebar) +
+ } +
} \ No newline at end of file diff --git a/src/Orchard.Web/Modules/Orchard.CustomForms/Views/Parts.CustomForm.Wrapper.cshtml b/src/Orchard.Web/Modules/Orchard.CustomForms/Views/Parts.CustomForm.Wrapper.cshtml index fe0d2109a..ee78a66f9 100644 --- a/src/Orchard.Web/Modules/Orchard.CustomForms/Views/Parts.CustomForm.Wrapper.cshtml +++ b/src/Orchard.Web/Modules/Orchard.CustomForms/Views/Parts.CustomForm.Wrapper.cshtml @@ -1,4 +1,10 @@ -@{ +@using Orchard.ContentManagement.MetaData; +@using Orchard.ContentManagement.MetaData.Models; +@using Orchard.Core.Contents.Settings; + +@{ + IContentDefinitionManager _contentDefinitionManager = WorkContext.Resolve(); + dynamic editor = Model.Editor; if (TempData.ContainsKey("CustomFormWidget.InvalidCustomFormState")) { @@ -7,18 +13,34 @@ // remove default Save/Publish buttons editor.Zones["Sidebar"].Items.Clear(); + + var showPublishButton = Model.ContentItem.CustomFormPart.SavePublishContentItem; + + // Read type definition to check if content is draftable + var typeDefinition = _contentDefinitionManager + .ListTypeDefinitions() + .Where(x => String.Equals(x.Name, Model.ContentItem.CustomFormPart.ContentType, StringComparison.OrdinalIgnoreCase)) + .FirstOrDefault(); + if (typeDefinition != null) { + // Publish button has to be visible only if content is draftable AND is set to show the publish button + showPublishButton = showPublishButton && + typeDefinition.Settings.GetModel().Draftable; + } } @using (Html.BeginFormAntiForgeryPost(Url.Action("Create", "Item", new { area = "Orchard.CustomForms", id = Model.ContentItem.Id }))) { - @Html.ValidationSummary() +@Html.ValidationSummary() // Model is a Shape, calling Display() so that it is rendered using the most specific template for its Shape type - @Display(editor) - @Html.Hidden("returnUrl", Request.RawUrl, new { id = string.Empty }); - @Html.Hidden("contentId", !string.IsNullOrWhiteSpace(Request.QueryString["contentId"]) ? Request.QueryString["contentId"] : "0", new { id = string.Empty }); -
- - @if (Model.ContentItem.CustomFormPart.SavePublishContentItem == true) { - - } -
-} +@Display(editor) + +@Html.Hidden("returnUrl", Request.RawUrl, new { id = string.Empty }); +@Html.Hidden("contentId", !string.IsNullOrWhiteSpace(Request.QueryString["contentId"]) ? Request.QueryString["contentId"] : "0", new { id = string.Empty }); + +
+ + + @if (showPublishButton) { + + } +
+} \ No newline at end of file