-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #99 from GokceOzkan/master
Tooltip component and enum added
- Loading branch information
Showing
4 changed files
with
120 additions
and
0 deletions.
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,39 @@ | ||
// ----------------------------------------------------------------------- | ||
// SPDX-FileCopyrightText: 2024 Siemens AG | ||
// | ||
// SPDX-License-Identifier: MIT | ||
// | ||
// This source code is licensed under the MIT license found in the | ||
// LICENSE file in the root directory of this source tree. | ||
// ----------------------------------------------------------------------- | ||
|
||
|
||
using Bunit; | ||
using Microsoft.AspNetCore.Components; | ||
using SiemensIXBlazor.Components; | ||
using SiemensIXBlazor.Enums.Tooltip; | ||
using Xunit; | ||
|
||
namespace SiemensIXBlazor.Tests | ||
{ | ||
public class TooltipTests : TestContextBase | ||
{ | ||
[Fact] | ||
public void TooltipRendersCorrectly() | ||
{ | ||
// Arrange | ||
var cut = RenderComponent<Tooltip>( | ||
("Id", "tooltipId"), | ||
("TitleContent", "Test Tooltip"), | ||
("Interactive", true), | ||
("Placement", TooltipVariant.bottom), | ||
("For", "testElement") | ||
); | ||
|
||
// Assert | ||
cut.MarkupMatches("<ix-tooltip id=\"tooltipId\" title-content=\"Test Tooltip\" interactive placement=\"bottom\" for=\"testElement\"></ix-tooltip>"); | ||
} | ||
|
||
|
||
} | ||
} |
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,37 @@ | ||
// ----------------------------------------------------------------------- | ||
// SPDX-FileCopyrightText: 2024 Siemens AG | ||
// | ||
// SPDX-License-Identifier: MIT | ||
// | ||
// This source code is licensed under the MIT license found in the | ||
// LICENSE file in the root directory of this source tree. | ||
// ----------------------------------------------------------------------- | ||
|
||
|
||
|
||
using Microsoft.AspNetCore.Components; | ||
using Microsoft.JSInterop; | ||
using SiemensIXBlazor.Enums.Chip; | ||
using SiemensIXBlazor.Enums.Tooltip; | ||
using SiemensIXBlazor.Interops; | ||
|
||
namespace SiemensIXBlazor.Components | ||
{ | ||
public partial class Tooltip | ||
{ | ||
[Parameter, EditorRequired] | ||
public string Id { get; set; } = string.Empty; | ||
[Parameter] | ||
public bool Interactive { get; set; } = false; | ||
[Parameter] | ||
public string? TitleContent { get; set; } | ||
[Parameter] | ||
public TooltipVariant Placement { get; set; } = TooltipVariant.top; | ||
[Parameter] | ||
public string? For { get; set; } | ||
[Parameter] | ||
public RenderFragment? ChildContent { get; set; } | ||
private BaseInterop _interop; | ||
} | ||
} | ||
|
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 @@ | ||
@* ----------------------------------------------------------------------- | ||
// SPDX-FileCopyrightText: 2024 Siemens AG | ||
// | ||
// SPDX-License-Identifier: MIT | ||
// | ||
// This source code is licensed under the MIT license found in the | ||
// LICENSE file in the root directory of this source tree. | ||
// ----------------------------------------------------------------------- | ||
*@ | ||
|
||
@using Microsoft.JSInterop; | ||
@namespace SiemensIXBlazor.Components | ||
@inject IJSRuntime JSRuntime | ||
@inherits IXBaseComponent | ||
|
||
<ix-tooltip @attributes="UserAttributes" | ||
id="@Id" | ||
placement="@Placement" | ||
title-content="@TitleContent" | ||
interactive="@Interactive" | ||
for="@For" | ||
style="@Style" | ||
class="@Class"> | ||
@ChildContent | ||
</ix-tooltip> |
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,19 @@ | ||
// ----------------------------------------------------------------------- | ||
// SPDX-FileCopyrightText: 2024 Siemens AG | ||
// | ||
// SPDX-License-Identifier: MIT | ||
// | ||
// This source code is licensed under the MIT license found in the | ||
// LICENSE file in the root directory of this source tree. | ||
// --- | ||
|
||
namespace SiemensIXBlazor.Enums.Tooltip | ||
{ | ||
public enum TooltipVariant | ||
{ | ||
bottom, | ||
left, | ||
right, | ||
top | ||
} | ||
} |