Skip to content

Commit

Permalink
Merge branch 'master' into card_refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
ilhan007 committed Jul 24, 2021
2 parents 925f2ea + 0ecc508 commit 0e047ba
Show file tree
Hide file tree
Showing 29 changed files with 59 additions and 117 deletions.
2 changes: 1 addition & 1 deletion docs/How To Use.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ Get a reference to the UI5 Web Component and call the method on it, as you would

```js
const myDialog = document.getElementsByTagName("ui5-dialog")[0];
myDialog.open();
myDialog.show();
```

Consult the documentation for the available public methods for each UI5 Web Component.
Expand Down
1 change: 0 additions & 1 deletion docs/Public Module Imports.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ For API documentation and samples, please check the [UI5 Web Components Playgrou
| Date Range Picker | `ui5-daterange-picker` | `import "@ui5/webcomponents/dist/DateRangePicker.js";` |
| Date Time Picker | `ui5-datetime-picker` | `import "@ui5/webcomponents/dist/DateTimePicker.js";` |
| Dialog | `ui5-dialog` | `import "@ui5/webcomponents/dist/Dialog.js";` |
| Duration Picker | `ui5-duration-picker` | `import "@ui5/webcomponents/dist/DurationPicker.js";` |
| File Uploader | `ui5-file-uploader` | `import "@ui5/webcomponents/dist/FileUploader.js";` |
| Icon | `ui5-icon` | `import "@ui5/webcomponents/dist/Icon.js";` |
| Input | `ui5-input` | `import "@ui5/webcomponents/dist/Input.js";` |
Expand Down
2 changes: 1 addition & 1 deletion packages/fiori/test/pages/IllustratedMessage.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
});

dialogOpener.addEventListener("click", () => {
dialog.open();
dialog.show();
});

dialogCloser.addEventListener("click", () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/fiori/test/pages/Wizard.html
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@ <h2>Wizard non-standard 3</h2>
var wiz2 = document.getElementById("wiz2");

btnOpenDialog.addEventListener("click", function () {
dialog.open();
dialog.show();
});

wiz2.addEventListener("step-change", function () {
Expand Down
2 changes: 1 addition & 1 deletion packages/fiori/test/pages/Wizard_test.html
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@
});

btnOpenDialog.addEventListener("click", function () {
dialog.open();
dialog.show();
});

setting.addEventListener("step-change", function (event) {
Expand Down
2 changes: 1 addition & 1 deletion packages/fiori/test/samples/IllustratedMessage.sample.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ <h3>Illustrated message in dialog</h3>
var dialogCloser = document.getElementById("closeDialogButton");

dialogOpener.addEventListener("click", function () {
dialog.open();
dialog.show();
});

dialogCloser.addEventListener("click", function () {
Expand Down
2 changes: 1 addition & 1 deletion packages/fiori/test/specs/UploadCollection.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ describe("UploadCollection", () => {
browser.keys("last.reports-edited");
browser.keys("Enter");

assert.strictEqual(latestReportsPdf.getProperty("fileName"), "last.reports-edited.pdf", "file extension '.pdf' should be preserved");
// assert.strictEqual(latestReportsPdf.getProperty("fileName"), "last.reports-edited.pdf", "file extension '.pdf' should be preserved");

// reset the item
browser.execute(() => {
Expand Down
2 changes: 1 addition & 1 deletion packages/main/src/ColorPalette.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ class ColorPalette extends UI5Element {

async _openMoreColorsDialog() {
const dialog = await this._getDialog();
dialog.open();
dialog.show();
}

/**
Expand Down
10 changes: 5 additions & 5 deletions packages/main/src/Dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -215,15 +215,15 @@ class Dialog extends Popup {
}

/**
* Opens the dialog
* Shows the dialog.
*
* @param {boolean} preventInitialFocus Prevents applying the focus inside the popup
* @async
* @returns {Promise} Resolves when the dialog is open
* @public
*/
async open(preventInitialFocus) {
await super.open(preventInitialFocus);
async show(preventInitialFocus) {
await super._open(preventInitialFocus);
}

get isModal() { // Required by Popup.js
Expand Down Expand Up @@ -277,8 +277,8 @@ class Dialog extends Popup {
return this._movable ? "0" : undefined;
}

show() {
super.show();
_show() {
super._show();
this._center();
this._attachResizeHandlers();
}
Expand Down
4 changes: 2 additions & 2 deletions packages/main/src/DurationPicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
} from "./generated/i18n/i18n-defaults.js";

/**
* @public
* @private
*/
const metadata = {
tag: "ui5-duration-picker",
Expand Down Expand Up @@ -164,7 +164,7 @@ const pad = number => {
* @alias sap.ui.webcomponents.main.DurationPicker
* @extends TimePickerBase
* @tagname ui5-duration-picker
* @public
* @private
*/
class DurationPicker extends TimePickerBase {
static get metadata() {
Expand Down
10 changes: 5 additions & 5 deletions packages/main/src/Popover.js
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ class Popover extends Popup {
this._opener = opener;
this._openerRect = opener.getBoundingClientRect();

await super.open(preventInitialFocus);
await super._open(preventInitialFocus);
}

/**
Expand Down Expand Up @@ -360,10 +360,10 @@ class Popover extends Popup {
}

reposition() {
this.show();
this._show();
}

show() {
_show() {
let placement;
const popoverSize = this.getPopoverSize();

Expand Down Expand Up @@ -392,7 +392,7 @@ class Popover extends Popup {
}

if (this._oldPlacement && (this._oldPlacement.left === placement.left) && (this._oldPlacement.top === placement.top) && stretching) {
super.show();
super._show();
this.style.width = this._width;
return;
}
Expand Down Expand Up @@ -437,7 +437,7 @@ class Popover extends Popup {
top: `${top}px`,
left: `${left}px`,
});
super.show();
super._show();

if (stretching && this._width) {
this.style.width = this._width;
Expand Down
6 changes: 3 additions & 3 deletions packages/main/src/Popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ class Popup extends UI5Element {
* Shows the block layer (for modal popups only) and sets the correct z-index for the purpose of popup stacking
* @protected
*/
async open(preventInitialFocus) {
async _open(preventInitialFocus) {
const prevented = !this.fireEvent("before-open", {}, true, false);
if (prevented) {
return;
Expand All @@ -378,7 +378,7 @@ class Popup extends UI5Element {
this.style.zIndex = this._zIndex;
this._focusedElementBeforeOpen = getFocusedElement();

this.show();
this._show();

if (!this._disableInitialFocus && !preventInitialFocus) {
this.applyInitialFocus();
Expand Down Expand Up @@ -461,7 +461,7 @@ class Popup extends UI5Element {
* Sets "block" display to the popup. The property can be overriden by derivatives of Popup.
* @protected
*/
show() {
_show() {
this.style.display = this._displayProp;
}

Expand Down
2 changes: 1 addition & 1 deletion packages/main/src/ResponsivePopover.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ class ResponsivePopover extends Popover {
await super.openBy(opener);
} else {
this.style.zIndex = getNextZIndex();
await this._dialog.open();
await this._dialog.show();
}
}

Expand Down
4 changes: 2 additions & 2 deletions packages/main/test/pages/BusyIndicator.html
Original file line number Diff line number Diff line change
Expand Up @@ -222,11 +222,11 @@
});

document.getElementById("open-dialog-inactive-indicator").addEventListener("click", function () {
document.getElementById("dialog-inactive-indicator").open();
document.getElementById("dialog-inactive-indicator").show();
});

document.getElementById("open-dialog-active-indicator").addEventListener("click", function () {
document.getElementById("dialog-active-indicator").open();
document.getElementById("dialog-active-indicator").show();
});
</script>
</body>
Expand Down
24 changes: 12 additions & 12 deletions packages/main/test/pages/Dialog.html
Original file line number Diff line number Diff line change
Expand Up @@ -377,24 +377,24 @@
let preventClosing = true;

btnOpenDialog.addEventListener("click", function () {
dialog.open();
dialog.show();
});
btnCloseDialog.addEventListener("click", function () {
dialog.close();
});

prevent.addEventListener("click", function () {
window["prevent-dialog"].open();
window["prevent-dialog"].show();
});

message.addEventListener("click", function () {
window["msg-dialog"].open();
window["msg-dialog"].show();
});

window["prevent-dialog"].addEventListener("ui5-beforeClose", function (event) {
if (preventClosing) {
event.preventDefault();
window["confirm-dialog"].open();
window["confirm-dialog"].show();
}

if (!preventClosing) {
Expand All @@ -416,21 +416,21 @@
window["modals-open"].addEventListener("click", function (event) { pop.openBy(event.target) });

popbtn.addEventListener('click', function (event) {
danger.open();
danger.show();
});

bigDanger.addEventListener('click', function (event) {
bigDangerPop.openBy(bigDanger);
});

window["empty-open"].addEventListener("click", function () { window["empty-dialog"].open(); });
window["wide-open"].addEventListener("click", function () { window["wide-dialog"].open(); });
window["wide-open2"].addEventListener("click", function () { window["wide-dialog2"].open(); });
window["draggable-open"].addEventListener("click", function () { window["draggable-dialog"].open(); });
window["empty-open"].addEventListener("click", function () { window["empty-dialog"].show(); });
window["wide-open"].addEventListener("click", function () { window["wide-dialog"].show(); });
window["wide-open2"].addEventListener("click", function () { window["wide-dialog2"].show(); });
window["draggable-open"].addEventListener("click", function () { window["draggable-dialog"].show(); });
window["draggable-close"].addEventListener("click", function () { window["draggable-dialog"].close(); });
window["resizable-open"].addEventListener("click", function () { window["resizable-dialog"].open(); });
window["resizable-open"].addEventListener("click", function () { window["resizable-dialog"].show(); });
window["resizable-close"].addEventListener("click", function () { window["resizable-dialog"].close(); });
window["draggable-and-resizable-open"].addEventListener("click", function () { window["draggable-and-resizable-dialog"].open(); });
window["draggable-and-resizable-open"].addEventListener("click", function () { window["draggable-and-resizable-dialog"].show(); });
window["draggable-and-resizable-close"].addEventListener("click", function () { window["draggable-and-resizable-dialog"].close(); });

window["dynamic-open"].addEventListener("click", function () {
Expand All @@ -448,7 +448,7 @@

document.body.appendChild(dialog);

dialog.open();
dialog.show();
});
</script>
</body>
Expand Down
2 changes: 1 addition & 1 deletion packages/main/test/pages/DialogLifecycle.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
});

document.body.appendChild(dialog);
dialog.open();
dialog.show();
});
</script>

Expand Down
2 changes: 1 addition & 1 deletion packages/main/test/pages/DialogSemantic.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@

<script>
btnWarning.addEventListener("click", function () {
dialogWarning.open();
dialogWarning.show();
});
btnWarningClose.addEventListener("click", function () {
dialogWarning.close();
Expand Down
2 changes: 1 addition & 1 deletion packages/main/test/pages/Input.html
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ <h3>Test Backspace</h3>
});

btnOpenDialog.addEventListener("click", function () {
dialog.open();
dialog.show();
});
var sap_database_entries = [{ key: "A", text: "A" }, { key: "Afg", text: "Afghanistan" }, { key: "Arg", text: "Argentina" }, { key: "Alb", text: "Albania" }, { key: "Arm", text: "Armenia" }, { key: "Alg", text: "Algeria" }, { key: "And", text: "Andorra" }, { key: "Ang", text: "Angola" }, { key: "Ast", text: "Austria" }, { key: "Aus", text: "Australia" }, { key: "Aze", text: "Azerbaijan" }, { key: "Aruba", text: "Aruba" }, { key: "Antigua", text: "Antigua and Barbuda" }, { key: "B", text: "B" }, { key: "Bel", text: "Belarus" }, { key: "Bel", text: "Belgium" }, { key: "Bg", text: "Bulgaria" }, { key: "Bra", text: "Brazil" }, { key: "C", text: "C" }, { key: "Ch", text: "China" }, { key: "Cub", text: "Cuba" }, { key: "Chil", text: "Chili" }, { key: "L", text: "L" }, { key: "Lat", text: "Latvia" }, { key: "Lit", text: "Litva" }, { key: "P", text: "P" }, { key: "Prt", text: "Portugal" }, { key: "S", text: "S" }, { key: "Sen", text: "Senegal" }, { key: "Ser", text: "Serbia" }, { key: "Sey", text: "Seychelles" }, { key: "Sierra", text: "Sierra Leone" }, { key: "Sgp", text: "Singapore" }, { key: "Sint", text: "Sint Maarten" }, { key: "Slv", text: "Slovakia" }, { key: "Slo", text: "Slovenia" }];

Expand Down
2 changes: 1 addition & 1 deletion packages/main/test/pages/MultiInput.html
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ <h1>Test value-help-trigger with F4 and Alt + ArrowUp/Down</h1>
list.appendChild(li);
});

document.getElementById("dialog").open();
document.getElementById("dialog").show();
});

document.getElementById("suggestion-token").addEventListener("ui5-suggestion-item-select", function (event) {
Expand Down
2 changes: 1 addition & 1 deletion packages/main/test/pages/MultiInput_Suggestions.html
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ <h1>Token Creation onChange (unique)</h1>
list.appendChild(li);
});

document.getElementById("dialog").open();
document.getElementById("dialog").show();
});

document.getElementById("suggestion-token").addEventListener("ui5-suggestion-item-select", function (event) {
Expand Down
2 changes: 1 addition & 1 deletion packages/main/test/pages/ResponsivePopover.html
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ <h2> Inputs based component that opens popover/dialog within dialog</h2>
respPopover3.close();
});
btnOpenDialog.addEventListener('click', function (event) {
dialog.open(btnOpenDialog);
dialog.show();
});

btnSimpleRP.addEventListener("click", function(event) {
Expand Down
2 changes: 1 addition & 1 deletion packages/main/test/pages/Toast.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ <h3>Test Dialog and Toast</h3>
});

btnDialog.addEventListener('click', function () {
dialog.open();
dialog.show();
});

btnDialog2.addEventListener('click', function () {
Expand Down
4 changes: 2 additions & 2 deletions packages/main/test/pages/kitchen-scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,10 @@ document.addEventListener("DOMContentLoaded", function(event) {


dialogOpener.addEventListener("click", function() {
dialog.open();
dialog.show();
});
dialogOpener2.addEventListener("click", function() {
dialog2.open();
dialog2.show();
});
dialogCloser.addEventListener("click", function() {
dialog.close();
Expand Down
6 changes: 3 additions & 3 deletions packages/main/test/pages/modules/Popups.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ function onload() {
var wcBtnOpenDialog = document.querySelector('.wcBtnOpenDialog');
wcBtnOpenDialog.addEventListener('click', function () {
var wcDialog = document.querySelector('.wcDialog');
wcDialog.open();
wcDialog.show();
});

var wcBtnCloseDialog = document.querySelector('.wcBtnCloseDialog');
Expand All @@ -15,7 +15,7 @@ function onload() {
var wcBtnOpenNewDialog = document.querySelector('.wcBtnOpenNewDialog');
wcBtnOpenNewDialog.addEventListener('click', function () {
var wcNewDialog = document.querySelector('.wcNewDialog');
wcNewDialog.open();
wcNewDialog.show();
});

var wcBtnOpenNewDialogPopover = document.querySelector('.wcBtnOpenNewDialogPopover');
Expand Down Expand Up @@ -46,6 +46,6 @@ function onload() {
var wcBtnOpenNewPopoverDialog11 = document.querySelector('.wcBtnOpenNewPopoverDialog11');
wcBtnOpenNewPopoverDialog11.addEventListener('click', function () {
var wcNewPopoverDialog11 = document.querySelector('.wcNewPopoverDialog11');
wcNewPopoverDialog11.open();
wcNewPopoverDialog11.show();
});
}
Loading

0 comments on commit 0e047ba

Please sign in to comment.