-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds Loading component #21
Open
Zettersten
wants to merge
2
commits into
hassanhabib:master
Choose a base branch
from
Zettersten:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,192 @@ | ||
// --------------------------------------------------------------- | ||
// Copyright (c) Hassan Habib All rights reserved. | ||
// Licensed under the MIT License. | ||
// See License.txt in the project root for license information. | ||
// --------------------------------------------------------------- | ||
|
||
using Bunit; | ||
using Bunit.Rendering; | ||
using FluentAssertions; | ||
using System; | ||
using Xunit; | ||
|
||
namespace PrettyBlazor.Tests.Iterations | ||
{ | ||
public partial class LoadingTests : TestContext | ||
{ | ||
[Fact] | ||
public void ShouldHaveDefaultInitParameters() | ||
{ | ||
// given . when | ||
var initialConditionComponent = new Loading(); | ||
|
||
// then | ||
initialConditionComponent.Evaluation.Should().BeNull(); | ||
initialConditionComponent.Ready.Should().BeNull(); | ||
initialConditionComponent.Pending.Should().BeNull(); | ||
initialConditionComponent.Empty.Should().BeNull(); | ||
} | ||
|
||
[Fact] | ||
public void ShouldRenderPendingComponentIfEvaluationIsNull() | ||
{ | ||
// given | ||
var expectedPendingFragment = CreateRenderFragment(typeof(PendingComponent)); | ||
var emptyFragment = CreateRenderFragment(typeof(EmptyComponent)); | ||
var readyFragment = CreateRenderFragment(typeof(ReadyComponent)); | ||
|
||
var componentParameters = new ComponentParameter[] | ||
{ | ||
ComponentParameter.CreateParameter( | ||
name: nameof(Loading.Evaluation), | ||
value: null), | ||
|
||
ComponentParameter.CreateParameter( | ||
name: nameof(Loading.Pending), | ||
value: expectedPendingFragment), | ||
|
||
ComponentParameter.CreateParameter( | ||
name: nameof(Loading.Empty), | ||
value: emptyFragment), | ||
|
||
ComponentParameter.CreateParameter( | ||
name: nameof(Loading.Ready), | ||
value: readyFragment) | ||
}; | ||
|
||
// when | ||
this.renderedConditionComponent = | ||
RenderComponent<Loading>(componentParameters); | ||
|
||
// then | ||
this.renderedConditionComponent.Instance.Evaluation | ||
.Should().BeNull(); | ||
|
||
this.renderedConditionComponent.Instance.Empty | ||
.Should().BeEquivalentTo(emptyFragment); | ||
|
||
this.renderedConditionComponent.Instance.Ready | ||
.Should().BeEquivalentTo(readyFragment); | ||
|
||
this.renderedConditionComponent.Instance.Pending | ||
.Should().BeEquivalentTo(expectedPendingFragment); | ||
|
||
this.renderedConditionComponent.FindComponent<PendingComponent>().Instance | ||
.Should().NotBeNull(); | ||
|
||
Assert.Throws<ComponentNotFoundException>(() => | ||
this.renderedConditionComponent.FindComponent<EmptyComponent>()); | ||
|
||
Assert.Throws<ComponentNotFoundException>(() => | ||
this.renderedConditionComponent.FindComponent<ReadyComponent>()); | ||
} | ||
|
||
[Fact] | ||
public void ShouldRenderReadyComponentIfEvaluationIsNotNull() | ||
{ | ||
// given | ||
var expectedReadyFragment = CreateRenderFragment(typeof(ReadyComponent)); | ||
var emptyFragment = CreateRenderFragment(typeof(EmptyComponent)); | ||
var pendingFragment = CreateRenderFragment(typeof(PendingComponent)); | ||
|
||
var componentParameters = new ComponentParameter[] | ||
{ | ||
ComponentParameter.CreateParameter( | ||
name: nameof(Loading.Evaluation), | ||
value: new { }), | ||
|
||
ComponentParameter.CreateParameter( | ||
name: nameof(Loading.Ready), | ||
value: expectedReadyFragment), | ||
|
||
ComponentParameter.CreateParameter( | ||
name: nameof(Loading.Pending), | ||
value: pendingFragment), | ||
|
||
ComponentParameter.CreateParameter( | ||
name: nameof(Loading.Empty), | ||
value: emptyFragment) | ||
}; | ||
|
||
// when | ||
this.renderedConditionComponent = | ||
RenderComponent<Loading>(componentParameters); | ||
|
||
// then | ||
this.renderedConditionComponent.Instance.Evaluation | ||
.Should().NotBeNull(); | ||
|
||
this.renderedConditionComponent.Instance.Empty | ||
.Should().BeEquivalentTo(emptyFragment); | ||
|
||
this.renderedConditionComponent.Instance.Pending | ||
.Should().BeEquivalentTo(pendingFragment); | ||
|
||
this.renderedConditionComponent.Instance.Ready | ||
.Should().BeEquivalentTo(expectedReadyFragment); | ||
|
||
this.renderedConditionComponent.FindComponent<ReadyComponent>().Instance | ||
.Should().NotBeNull(); | ||
|
||
Assert.Throws<ComponentNotFoundException>(() => | ||
this.renderedConditionComponent.FindComponent<PendingComponent>()); | ||
|
||
Assert.Throws<ComponentNotFoundException>(() => | ||
this.renderedConditionComponent.FindComponent<EmptyComponent>()); | ||
} | ||
|
||
[Fact] | ||
public void ShouldRenderEmptyComponentIfEvaluationIsEmptyCollection() | ||
{ | ||
// given | ||
var expectedEmptyFragment = CreateRenderFragment(typeof(EmptyComponent)); | ||
var readyFragment = CreateRenderFragment(typeof(ReadyComponent)); | ||
var pendingFragment = CreateRenderFragment(typeof(PendingComponent)); | ||
|
||
var componentParameters = new ComponentParameter[] | ||
{ | ||
ComponentParameter.CreateParameter( | ||
name: nameof(Loading.Evaluation), | ||
value: Array.Empty<object>()), | ||
|
||
ComponentParameter.CreateParameter( | ||
name: nameof(Loading.Empty), | ||
value: expectedEmptyFragment), | ||
|
||
ComponentParameter.CreateParameter( | ||
name: nameof(Loading.Ready), | ||
value: readyFragment), | ||
|
||
ComponentParameter.CreateParameter( | ||
name: nameof(Loading.Pending), | ||
value: pendingFragment) | ||
}; | ||
|
||
// when | ||
this.renderedConditionComponent = | ||
RenderComponent<Loading>(componentParameters); | ||
|
||
// then | ||
this.renderedConditionComponent.Instance.Evaluation | ||
.Should().NotBeNull(); | ||
|
||
this.renderedConditionComponent.Instance.Ready | ||
.Should().BeEquivalentTo(readyFragment); | ||
|
||
this.renderedConditionComponent.Instance.Pending | ||
.Should().BeEquivalentTo(pendingFragment); | ||
|
||
this.renderedConditionComponent.Instance.Empty | ||
.Should().BeEquivalentTo(expectedEmptyFragment); | ||
|
||
this.renderedConditionComponent.FindComponent<EmptyComponent>().Instance | ||
.Should().NotBeNull(); | ||
|
||
Assert.Throws<ComponentNotFoundException>(() => | ||
this.renderedConditionComponent.FindComponent<PendingComponent>()); | ||
|
||
Assert.Throws<ComponentNotFoundException>(() => | ||
this.renderedConditionComponent.FindComponent<ReadyComponent>()); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// --------------------------------------------------------------- | ||
// Copyright (c) Hassan Habib All rights reserved. | ||
// Licensed under the MIT License. | ||
// See License.txt in the project root for license information. | ||
// --------------------------------------------------------------- | ||
|
||
using Bunit; | ||
using Microsoft.AspNetCore.Components; | ||
using System; | ||
|
||
namespace PrettyBlazor.Tests.Iterations | ||
{ | ||
public partial class LoadingTests : TestContext | ||
{ | ||
private IRenderedComponent<Loading> renderedConditionComponent; | ||
|
||
private static RenderFragment CreateRenderFragment(Type type) => builder => | ||
{ | ||
builder.OpenComponent(sequence: 0, componentType: type); | ||
builder.CloseComponent(); | ||
}; | ||
|
||
public class PendingComponent : ComponentBase | ||
{ } | ||
|
||
public class ReadyComponent : ComponentBase | ||
{ } | ||
|
||
public class EmptyComponent : ComponentBase | ||
{ } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
@if (Evaluation is null) | ||
{ | ||
@Pending | ||
} | ||
else | ||
{ | ||
var (isCollectionType, collectionCount) = Evaluation switch | ||
{ | ||
List<object> list => (IsCollectionType: true, Count: list.Count), | ||
object[] array => (IsCollectionType: true, Count: array.Length), | ||
Dictionary<object, object> dictionary => (IsCollectionType: true, Count: dictionary.Count()), | ||
IEnumerable<object> ienumerable => (IsCollectionType: true, Count: ienumerable.Count()), | ||
_ => (IsCollectionType: false, Count: 0) | ||
}; | ||
|
||
if (isCollectionType && collectionCount == 0) | ||
{ | ||
@Empty | ||
} | ||
else | ||
{ | ||
@Ready | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// --------------------------------------------------------------- | ||
// Copyright (c) Hassan Habib All rights reserved. | ||
// Licensed under the MIT License. | ||
// See License.txt in the project root for license information. | ||
// --------------------------------------------------------------- | ||
|
||
using Microsoft.AspNetCore.Components; | ||
|
||
namespace PrettyBlazor | ||
{ | ||
public partial class Loading : ComponentBase | ||
{ | ||
[Parameter] | ||
public object Evaluation { get; set; } | ||
|
||
[Parameter] | ||
public RenderFragment Pending { get; set; } | ||
|
||
[Parameter] | ||
public RenderFragment Ready { get; set; } | ||
|
||
[Parameter] | ||
public RenderFragment Empty { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this property would rather be named
Source
. From a language perspective, then you would say you are loading a source.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd agree with that. Sadly, this project is dead.