mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
3.6 KiB
98 lines
3.6 KiB
@page
|
|
@using Localization.Resources.AbpUi
|
|
@using Microsoft.Extensions.Localization
|
|
@using Volo.Abp.GlobalFeatures
|
|
@using Volo.CmsKit.GlobalFeatures
|
|
@using Volo.CmsKit.Pages
|
|
@using Volo.CmsKit.Public.Web.Pages.CmsKit.Shared.Components.Commenting
|
|
@using Volo.CmsKit.Public.Web.Pages.CmsKit.Shared.Components.Contents
|
|
@using Volo.CmsKit.Public.Web.Pages.CmsKit.Shared.Components.Rating
|
|
@using Volo.CmsKit.Public.Web.Pages.CmsKit.Shared.Components.ReactionSelection
|
|
@using Volo.CmsKit.Web.Pages.CmsKit.Shared.Components.Tags
|
|
@model IndexModel
|
|
@inject IStringLocalizer<AbpUiResource> Localizer
|
|
<h1 class="text-center">CMS Kit DEMO</h1>
|
|
|
|
<abp-card>
|
|
<abp-card-body class="p-5">
|
|
<abp-blockquote class="text-center">
|
|
@if (GlobalFeatureManager.Instance.IsEnabled<ContentsFeature>())
|
|
{
|
|
@await Component.InvokeAsync(typeof(ContentViewComponent), new {entityType = "quote", entityId = "1"})
|
|
}
|
|
|
|
@if (GlobalFeatureManager.Instance.IsEnabled<TagsFeature>())
|
|
{
|
|
@await Component.InvokeAsync(typeof(TagViewComponent), new
|
|
{
|
|
entityType = "quote",
|
|
entityId = "1"
|
|
})
|
|
}
|
|
</abp-blockquote>
|
|
</abp-card-body>
|
|
</abp-card>
|
|
|
|
<abp-row>
|
|
<abp-column size-md="_6">
|
|
@if (GlobalFeatureManager.Instance.IsEnabled<RatingsFeature>())
|
|
{
|
|
@await Component.InvokeAsync(typeof(RatingViewComponent), new {entityType = "quote", entityId = "1"})
|
|
}
|
|
</abp-column>
|
|
<abp-column size-md="_6">
|
|
@if (GlobalFeatureManager.Instance.IsEnabled<ReactionsFeature>())
|
|
{
|
|
@await Component.InvokeAsync(typeof(ReactionSelectionViewComponent), new {entityType = "quote", entityId = "1"})
|
|
}
|
|
</abp-column>
|
|
<abp-column size-md="_12">
|
|
@if (GlobalFeatureManager.Instance.IsEnabled<CommentsFeature>())
|
|
{
|
|
@await Component.InvokeAsync(typeof(CommentingViewComponent), new {entityType = "quote", entityId = "1"})
|
|
}
|
|
</abp-column>
|
|
</abp-row>
|
|
<abp-card>
|
|
<abp-card-body class="p-5">
|
|
<abp-blockquote class="text-center">
|
|
<p class="h2 mb-4">
|
|
"Writing code is very simple, but writing simple code is the hardest thing there is!"
|
|
</p>
|
|
<p class="m-0"> - Halil ibrahim Kalkan <small class="d-block text-muted">Inspired from Johan Cruyff</small></p>
|
|
</abp-blockquote>
|
|
</abp-card-body>
|
|
</abp-card>
|
|
<abp-row>
|
|
<abp-column size-md="_6">
|
|
@if (GlobalFeatureManager.Instance.IsEnabled<RatingsFeature>())
|
|
{
|
|
@await Component.InvokeAsync(typeof(RatingViewComponent), new {entityType = "quote", entityId = "2"})
|
|
}
|
|
</abp-column>
|
|
<abp-column size-md="_6">
|
|
@if (GlobalFeatureManager.Instance.IsEnabled<ReactionsFeature>())
|
|
{
|
|
@await Component.InvokeAsync(typeof(ReactionSelectionViewComponent), new {entityType = "quote", entityId = "2"})
|
|
}
|
|
</abp-column>
|
|
<abp-column size-md="_12">
|
|
@if (GlobalFeatureManager.Instance.IsEnabled<CommentsFeature>())
|
|
{
|
|
@await Component.InvokeAsync(typeof(CommentingViewComponent), new {entityType = "quote", entityId = "2"})
|
|
}
|
|
</abp-column>
|
|
</abp-row>
|
|
|
|
<abp-row>
|
|
<abp-column size="_12">
|
|
@if (GlobalFeatureManager.Instance.IsEnabled<TagsFeature>())
|
|
{
|
|
@await Component.InvokeAsync(typeof(TagViewComponent), new
|
|
{
|
|
entityType = "IndexPage",
|
|
entityId = Guid.Empty.ToString()
|
|
})
|
|
}
|
|
</abp-column>
|
|
</abp-row> |