-
Notifications
You must be signed in to change notification settings - Fork 270
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into ainotice
- Loading branch information
Showing
37 changed files
with
1,055 additions
and
607 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
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,114 @@ | ||
import { html } from "lit"; | ||
import "../../src/Tokenizer.js"; | ||
import type Tokenizer from "../../src/Tokenizer.js"; | ||
|
||
describe("Tokenizer - multi-line and Clear All", () => { | ||
it("'Clear All' link is rendered for multi-line tokenizer and show-clear-all set to true", () => { | ||
cy.mount(html`<ui5-tokenizer show-clear-all multi-line> | ||
<ui5-token text="Andora"></ui5-token> | ||
<ui5-token text="Bulgaria"></ui5-token> | ||
<ui5-token text="Canada"></ui5-token> | ||
<ui5-token text="Denmark"></ui5-token> | ||
<ui5-token text="Estonia"></ui5-token> | ||
<ui5-token text="Finland"></ui5-token> | ||
<ui5-token text="Germany"></ui5-token> | ||
</ui5-tokenizer>`); | ||
|
||
cy.get<Tokenizer>("[ui5-tokenizer]") | ||
.shadow() | ||
.find(".ui5-tokenizer--clear-all") | ||
.should("exist"); | ||
}); | ||
|
||
it("'Clear All' link is rendered even for 1 token when in multi-line mode", () => { | ||
cy.mount(html`<ui5-tokenizer show-clear-all multi-line> | ||
<ui5-token text="Andora"></ui5-token> | ||
</ui5-tokenizer>`); | ||
|
||
cy.get<Tokenizer>("[ui5-tokenizer]") | ||
.shadow() | ||
.find(".ui5-tokenizer--clear-all") | ||
.should("exist"); | ||
}); | ||
|
||
it("'Clear All' link is not rendered for single-line tokenizer even when show-clear-all is set to true", () => { | ||
cy.mount(html`<ui5-tokenizer show-clear-all> | ||
<ui5-token text="Andora"></ui5-token> | ||
</ui5-tokenizer>`); | ||
|
||
cy.get<Tokenizer>("[ui5-tokenizer]") | ||
.shadow() | ||
.find(".ui5-tokenizer--clear-all") | ||
.should("not.exist"); | ||
}); | ||
|
||
it("'Clear All' link is not rendered for multi-line tokenizer when show-clear-all is set to false", () => { | ||
cy.mount(html`<ui5-tokenizer multi-line> | ||
<ui5-token text="Andora"></ui5-token> | ||
<ui5-token text="Bulgaria"></ui5-token> | ||
<ui5-token text="Canada"></ui5-token> | ||
<ui5-token text="Denmark"></ui5-token> | ||
<ui5-token text="Estonia"></ui5-token> | ||
<ui5-token text="Finland"></ui5-token> | ||
<ui5-token text="Germany"></ui5-token> | ||
</ui5-tokenizer>`); | ||
|
||
cy.get<Tokenizer>("[ui5-tokenizer]") | ||
.shadow() | ||
.find(".ui5-tokenizer--clear-all") | ||
.should("not.exist"); | ||
}); | ||
|
||
it("'Clear All' link is not rendered for multi-line readonly tokenizer when show-clear-all 'true'", () => { | ||
cy.mount(html`<ui5-tokenizer multi-line show-clear-all readonly> | ||
<ui5-token text="Andora"></ui5-token> | ||
<ui5-token text="Bulgaria"></ui5-token> | ||
<ui5-token text="Canada"></ui5-token> | ||
<ui5-token text="Denmark"></ui5-token> | ||
<ui5-token text="Estonia"></ui5-token> | ||
<ui5-token text="Finland"></ui5-token> | ||
<ui5-token text="Germany"></ui5-token> | ||
</ui5-tokenizer>`); | ||
|
||
cy.get<Tokenizer>("[ui5-tokenizer]") | ||
.shadow() | ||
.find(".ui5-tokenizer--clear-all") | ||
.should("not.exist"); | ||
}); | ||
|
||
it("'n-more' link is not rendered for multi-line tokenizer", () => { | ||
cy.mount(html`<ui5-tokenizer multi-line style="width: 100px;"> | ||
<ui5-token text="Andora"></ui5-token> | ||
<ui5-token text="Bulgaria"></ui5-token> | ||
<ui5-token text="Canada"></ui5-token> | ||
<ui5-token text="Denmark"></ui5-token> | ||
<ui5-token text="Estonia"></ui5-token> | ||
<ui5-token text="Finland"></ui5-token> | ||
<ui5-token text="Germany"></ui5-token> | ||
</ui5-tokenizer>`); | ||
|
||
cy.get<Tokenizer>("[ui5-tokenizer]") | ||
.shadow() | ||
.find(".ui5-tokenizer--more-text") | ||
.should("not.exist"); | ||
}); | ||
|
||
it("Pressing 'Clear All' link fires token-delete event", () => { | ||
cy.mount(html`<ui5-tokenizer show-clear-all multi-line> | ||
<ui5-token text="Andora"></ui5-token> | ||
<ui5-token text="Bulgaria"></ui5-token> | ||
<ui5-token text="Canada"></ui5-token> | ||
</ui5-tokenizer>`); | ||
|
||
cy.get<Tokenizer>("[ui5-tokenizer]").then($tokenizer => $tokenizer.get(0).addEventListener("token-delete", cy.stub().as("delete"))); | ||
|
||
cy.get<Tokenizer>("[ui5-tokenizer]") | ||
.shadow() | ||
.find(".ui5-tokenizer--clear-all") | ||
.eq(0) | ||
.click(); | ||
|
||
cy.get("@delete") | ||
.should("have.been.calledOnce"); | ||
}); | ||
}); |
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
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
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
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,18 @@ | ||
{{>include "./ListItemBase.hbs"}} | ||
|
||
{{#*inline "listItemContent"}} | ||
<div part="content" id="content" class="ui5-li-content"> | ||
<div class="ui5-li-text-wrapper"> | ||
<span part="title" class="ui5-li-title"> | ||
{{{text}}} | ||
</span> | ||
{{#if additionalText}} | ||
<span part="additional-text" class="ui5-li-additional-text">{{additionalText}}</span> | ||
{{/if}} | ||
</div> | ||
</div> | ||
{{/inline}} | ||
|
||
{{#*inline "listItemAttributes"}} | ||
role="option" | ||
{{/inline}} |
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
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,9 @@ | ||
{{>include "./ListItemGroup.hbs"}} | ||
|
||
{{#*inline "items"}} | ||
{{#each items}} | ||
{{#if _isVisible}} | ||
<slot name="{{this._individualSlot}}"></slot> | ||
{{/if}} | ||
{{/each}} | ||
{{/inline}} |
Oops, something went wrong.