ant-design-blazor/components/carousel/Carousel.razor.cs

246 lines
8.5 KiB
C#
Raw Normal View History

// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Collections.Generic;
using System.Text.Json;
using System.Threading;
using System.Threading.Tasks;
using AntDesign.JsInterop;
using Microsoft.AspNetCore.Components;
namespace AntDesign
{
/**
<summary>
<para>A carousel component. Scales with its container.</para>
<h2>When To Use</h2>
<list type="bullet">
<item>When there is a group of content on the same level.</item>
<item>When there is insufficient content space, it can be used to save space in the form of a revolving door.</item>
<item>Commonly used for a group of pictures/cards.</item>
</list>
</summary>
<seealso cref="CarouselSlick"/>
*/
[Documentation(DocumentationCategory.Components, DocumentationType.DataDisplay, "https://gw.alipayobjects.com/zos/antfincdn/%24C9tmj978R/Carousel.svg")]
public partial class Carousel : AntDomComponentBase
{
private const string PrefixCls = "ant-carousel";
private string TrackStyle
{
get
{
if (Effect == CarouselEffect.ScrollX && IsHorizontal)
{
return $"width: {TotalWidth}px; opacity: 1; transform: translate3d(-{SlickWidth * (IndexOfSlick(ActiveSlick) + 1)}px, 0px, 0px);transition: -webkit-transform 500ms ease 0s;";
}
else if (Effect == CarouselEffect.ScrollX && !IsHorizontal)
{
return $"height: {TotalHeight}px; opacity: 1; transform: translate3d(0px, -{SlickHeight * (IndexOfSlick(ActiveSlick) + 1)}px, 0px);transition: -webkit-transform 500ms ease 0s;";
}
else if (Effect == CarouselEffect.Fade && IsHorizontal)
{
return $"width: {TotalWidth}px; opacity: 1;";
}
else if (Effect == CarouselEffect.Fade && !IsHorizontal)
{
return $"height: {TotalHeight}px; opacity: 1;";
}
return string.Empty;
}
}
internal string SlickClonedStyle => $"width: {SlickWidth}px;";
private string SlickListStyle => IsHorizontal ? string.Empty : $"height: {SlickHeight}px";
internal int SlickWidth { get; set; } = -1;
private int SlickHeight { get; set; } = -1;
private int TotalWidth => SlickWidth * (_slicks.Count * 2 + 1);
private int TotalHeight => SlickHeight * (_slicks.Count * 2 + 1);
private List<CarouselSlick> _slicks = new List<CarouselSlick>();
internal CarouselSlick ActiveSlick { get; set; }
private Timer _timer;
private ClassMapper SlickSliderClassMapper { get; } = new ClassMapper();
private bool IsHorizontal => DotPosition == CarouselDotPosition.Top || DotPosition == CarouselDotPosition.Bottom;
#region Parameters
/// <summary>
/// Content of the carousel. Typically <see cref="CarouselSlick"/> elements
/// </summary>
[Parameter]
public RenderFragment ChildContent { get; set; }
/// <summary>
/// The position of the dots, which can be one of Top, Bottom, Left or Right, <see cref="CarouselDotPosition"/>
/// </summary>
[Parameter]
public string DotPosition { get; set; } = CarouselDotPosition.Bottom;
/// <summary>
/// Whether to scroll automatically
/// </summary>
[Parameter]
public TimeSpan Autoplay { get; set; } = TimeSpan.Zero;
/// <summary>
/// Transition effect, <see cref="CarouselEffect"/>
/// </summary>
[Parameter]
public string Effect { get; set; } = CarouselEffect.ScrollX;
[Parameter]
public bool Dots { get; set; }
[Parameter]
public string DotsClass { get; set; }
#endregion Parameters
[Inject]
public IDomEventListener DomEventListener { get; set; }
public void Next() => GoTo(_slicks.IndexOf(ActiveSlick) + 1);
public void Previous() => GoTo(_slicks.IndexOf(ActiveSlick) - 1);
public void GoTo(int index)
{
if (index >= _slicks.Count)
{
index = 0;
}
else if (index < 0)
{
index = _slicks.Count - 1;
}
Activate(_slicks[index]);
}
private void SetClass()
{
SlickSliderClassMapper.Clear()
.Add("slick-slider slick-initialized")
.If("slick-vertical", () => !IsHorizontal);
ClassMapper.Clear()
.Add(PrefixCls)
.If($"{PrefixCls}-vertical", () => !IsHorizontal)
.If($"{PrefixCls}-rtl", () => RTL);
}
protected override void OnParametersSet()
{
base.OnParametersSet();
SetClass();
if (Effect != CarouselEffect.ScrollX && Effect != CarouselEffect.Fade)
{
throw new ArgumentOutOfRangeException($"{nameof(Effect)} must be one of {nameof(CarouselEffect)}.{nameof(CarouselEffect.ScrollX)} or {nameof(CarouselEffect)}.{nameof(CarouselEffect.Fade)}.");
}
_timer?.Dispose();
if (Autoplay != TimeSpan.Zero)
{
_timer = new Timer(AutoplaySlick, null, (int)Autoplay.TotalMilliseconds, (int)Autoplay.TotalMilliseconds);
}
}
protected override async Task OnAfterRenderAsync(bool firstRender)
{
await base.OnAfterRenderAsync(firstRender);
if (firstRender)
{
Resize();
perf: avoid memory leak issue of event listener (#1857) * perf: avoid memory leak #1834 Avoid memory leak by remove the exclusive parameter and logic in the code block on AddEventListener method in DomEventService class. The following are the components affected: components/affix/Affix.razor.cs components/anchor/Anchor.razor.cs components/carousel/Carousel.razor.cs components/core/Component/Overlay/Overlay.razor.cs components/core/Component/Overlay/OverlayTrigger.razor.cs components/core/JsInterop/DomEventService.cs components/descriptions/Descriptions.razor.cs components/dropdown/DropdownButton.cs components/grid/Row.razor.cs components/input/Input.cs components/input/TextArea.razor.cs components/layout/Sider.razor.cs components/list/ListItem.razor.cs components/select/Select.razor.cs components/select/internal/SelectContent.razor.cs components/slider/Slider.razor.cs components/table/Table.razor.cs components/tabs/Tabs.razor.cs * fix override AddEventListener method in AntDesign.TestKit project * add register/remove event listerner for exclusive use in DomEventService class * move _dotNetObjects to DomEventListerner class/service, so that users not required to maintain it in each component. * * move share/reuse dom event listerner methods to DomEventListerner class * remove method 'AddEventListener' that no longer exists in DomEventService class in AntDesign.TestKit project * * change the component referring to an IDomEventListerner interface instead of a concrete class, so that the component can be tested via a mock TestDomEventListerner. * introduce DisposeShared and Dispose method in DomEventListerner to ease user remove callback from DomEventListerner * register IDomEventListerner into DI container instead of create manually * fix FormatKey * fix FormatKey * fix tests * fix test * fix test Co-authored-by: James Yeung <shunjiey@hotmail.com>
2021-09-09 12:56:11 +08:00
DomEventListener.AddShared<JsonElement>("window", "resize", Resize);
}
}
private async void Resize(JsonElement e = default)
{
feat(module: overlay): OverlayTrigger not bound to a div (#937) * feat(module:overlay): OverlayTrigger not bound to a div * feat(module:overlay): OverlayTrigger not bound to a div * feat(module:overlay): Logic transfer to single Overlay * feat(module:overlay): remove obsolete duplication * feat(module:Tooltip): Add for unbounded oncontextmenu event handler * feat(module:tooltip): unbound js event listeners remove * docs(module:tooltip): unbound explanation * fix(module:button): attach Ref to top level html element @ref * feat(module:dropdown&tooltip&popconfirm&popover): Overlay not bound to a div * docs(module:dropdown&tooltip&popconfirm&popover): unbound explanation * feat(module:OverlayTrigger): common logic relocation * feat(module:overlaytrigger): Overlay not bound to a div * feat(module:DatePicker): Overlay not bound to a div * feat(module:select): Overlay not boud to div * fix(module:select): onclickarrow event relocation * fix(module:select): rename Show to OnArrowClick * feat(module:avatar): Overlay not bound to a div * docs(module:avatar): demo switch to unbound version * feat(module:autocomplete): partial OverlayTrigger not bound to a div * feat(module:slider): tooltip * docs(module:slider): tooltip * fix(module:overlay): add SetVisible method * feat: set Ref where missing, performance components register Ref when missing IsFixed flag for CascadeValue changed hard-code sequence numbers when using RenderTreeBuilder Rate component use Tooltip Unbound version Tabs test fix * fix: revert changes (accidental) * feat(module:upload): tooltip with unbound usage * feat(module:table): column use of unbound tooltip * feat(module:autocomplete):overlay unbound from div * fix(module:upload): missing div restore Co-authored-by: James Yeung <shunjiey@hotmail.com>
2021-01-21 17:20:10 +08:00
DomRect listRect = await JsInvokeAsync<DomRect>(JSInteropConstants.GetBoundingClientRect, Ref);
if ((SlickWidth != (int)listRect.Width && IsHorizontal)
|| (SlickHeight != (int)listRect.Height && !IsHorizontal)
|| IsHorizontal && !string.IsNullOrEmpty(SlickListStyle)
|| !IsHorizontal && string.IsNullOrEmpty(SlickListStyle))
{
SlickWidth = (int)listRect.Width;
SlickHeight = (int)listRect.Height;
StateHasChanged();
}
}
internal void RemoveSlick(CarouselSlick slick)
{
var slicks = new List<CarouselSlick>(_slicks ?? new List<CarouselSlick>());
slicks.Remove(slick);
_slicks = slicks;
InvokeAsync(async () =>
{
await InvokeAsync(StateHasChanged).ConfigureAwait(false);
});
}
internal void AddSlick(CarouselSlick slick)
{
var slicks = new List<CarouselSlick>(_slicks ?? new List<CarouselSlick>());
slicks.Add(slick);
_slicks = slicks;
if (ActiveSlick == null)
{
Activate(_slicks[0]);
}
InvokeStateHasChanged();
}
internal int IndexOfSlick(CarouselSlick slick)
{
return _slicks.IndexOf(slick);
}
private void Activate(CarouselSlick slick)
{
this.ActiveSlick = slick;
}
private async void AutoplaySlick(object state)
{
var index = IndexOfSlick(ActiveSlick) + 1;
if (index == _slicks.Count)
{
index = 0;
}
if (_slicks == null || _slicks.Count == 0)
{
return;
}
this.Activate(_slicks[index]);
// The current thread is not associated with the Dispatcher.
// Use InvokeAsync() to switch execution to the Dispatcher when triggering rendering or component state
await InvokeAsync(() => StateHasChanged());
if (index == 0 && Effect == CarouselEffect.ScrollX)
{
await Task.Delay((int)Autoplay.TotalMilliseconds / 2);
}
await InvokeAsync(() => StateHasChanged());
}
protected override void Dispose(bool disposing)
{
DomEventListener?.Dispose();
_slicks.Clear();
base.Dispose(disposing);
}
}
}