|
|
|
@ -1,48 +1,8 @@
|
|
|
|
|
@namespace Connected.Components
|
|
|
|
|
@using Connected.Annotations;
|
|
|
|
|
@using Connected.Utilities
|
|
|
|
|
@using Connected.Extensions
|
|
|
|
|
|
|
|
|
|
@inherits UIComponent
|
|
|
|
|
|
|
|
|
|
<div @attributes="CustomAttributes" class="@Classname">
|
|
|
|
|
<div @attributes="CustomAttributes" class="@CompiledClassList.Build()">
|
|
|
|
|
@ChildContent
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
@code {
|
|
|
|
|
protected string Classname =>
|
|
|
|
|
new CssBuilder("grid-item")
|
|
|
|
|
.AddClass($"grid-item-xs-{xs.ToString()}", xs != 0)
|
|
|
|
|
.AddClass($"grid-item-sm-{sm.ToString()}", sm != 0)
|
|
|
|
|
.AddClass($"grid-item-md-{md.ToString()}", md != 0)
|
|
|
|
|
.AddClass($"grid-item-lg-{lg.ToString()}", lg != 0)
|
|
|
|
|
.AddClass($"grid-item-xl-{xl.ToString()}", xl != 0)
|
|
|
|
|
.AddClass($"grid-item-xxl-{xxl.ToString()}", xxl != 0)
|
|
|
|
|
.AddClass(AdditionalClassList)
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
[CascadingParameter]
|
|
|
|
|
private Grid Parent { get; set; }
|
|
|
|
|
|
|
|
|
|
[Parameter] [Category(CategoryTypes.Item.Behavior)] public int xs { get; set; }
|
|
|
|
|
[Parameter] [Category(CategoryTypes.Item.Behavior)] public int sm { get; set; }
|
|
|
|
|
[Parameter] [Category(CategoryTypes.Item.Behavior)] public int md { get; set; }
|
|
|
|
|
[Parameter] [Category(CategoryTypes.Item.Behavior)] public int lg { get; set; }
|
|
|
|
|
[Parameter] [Category(CategoryTypes.Item.Behavior)] public int xl { get; set; }
|
|
|
|
|
[Parameter] [Category(CategoryTypes.Item.Behavior)] public int xxl { get; set; }
|
|
|
|
|
|
|
|
|
|
// ToDo false,auto,true on all sizes.
|
|
|
|
|
|
|
|
|
|
[Parameter]
|
|
|
|
|
[Category(CategoryTypes.Item.Behavior)]
|
|
|
|
|
public RenderFragment ChildContent { get; set; }
|
|
|
|
|
|
|
|
|
|
protected override void OnInitialized()
|
|
|
|
|
{
|
|
|
|
|
// NOTE: we can't throw here, the component must be able to live alone for the docs API to infer default parameters
|
|
|
|
|
//if (Parent == null)
|
|
|
|
|
// throw new ArgumentNullException(nameof(Parent), "Item must exist within a Grid");
|
|
|
|
|
base.OnInitialized();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|