mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 13:02:56 +00:00
save
This commit is contained in:
@@ -0,0 +1,886 @@
|
||||
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
||||
|
||||
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
||||
|
||||
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
||||
|
||||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||
|
||||
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
||||
|
||||
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
||||
|
||||
(window["webpackJsonp"] = window["webpackJsonp"] || []).push([[32], {
|
||||
/***/
|
||||
"./node_modules/@ionic/core/dist/esm/ion-select_3.entry.js":
|
||||
/*!*****************************************************************!*\
|
||||
!*** ./node_modules/@ionic/core/dist/esm/ion-select_3.entry.js ***!
|
||||
\*****************************************************************/
|
||||
|
||||
/*! exports provided: ion_select, ion_select_option, ion_select_popover */
|
||||
|
||||
/***/
|
||||
function node_modulesIonicCoreDistEsmIonSelect_3EntryJs(module, __webpack_exports__, __webpack_require__) {
|
||||
"use strict";
|
||||
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
/* harmony export (binding) */
|
||||
|
||||
|
||||
__webpack_require__.d(__webpack_exports__, "ion_select", function () {
|
||||
return Select;
|
||||
});
|
||||
/* harmony export (binding) */
|
||||
|
||||
|
||||
__webpack_require__.d(__webpack_exports__, "ion_select_option", function () {
|
||||
return SelectOption;
|
||||
});
|
||||
/* harmony export (binding) */
|
||||
|
||||
|
||||
__webpack_require__.d(__webpack_exports__, "ion_select_popover", function () {
|
||||
return SelectPopover;
|
||||
});
|
||||
/* harmony import */
|
||||
|
||||
|
||||
var _index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
||||
/*! ./index-44bf8136.js */
|
||||
"./node_modules/@ionic/core/dist/esm/index-44bf8136.js");
|
||||
/* harmony import */
|
||||
|
||||
|
||||
var _ionic_global_837be8f3_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
||||
/*! ./ionic-global-837be8f3.js */
|
||||
"./node_modules/@ionic/core/dist/esm/ionic-global-837be8f3.js");
|
||||
/* harmony import */
|
||||
|
||||
|
||||
var _helpers_5c745fbd_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
||||
/*! ./helpers-5c745fbd.js */
|
||||
"./node_modules/@ionic/core/dist/esm/helpers-5c745fbd.js");
|
||||
/* harmony import */
|
||||
|
||||
|
||||
var _hardware_back_button_7b6ede21_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
||||
/*! ./hardware-back-button-7b6ede21.js */
|
||||
"./node_modules/@ionic/core/dist/esm/hardware-back-button-7b6ede21.js");
|
||||
/* harmony import */
|
||||
|
||||
|
||||
var _overlays_7c699579_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
||||
/*! ./overlays-7c699579.js */
|
||||
"./node_modules/@ionic/core/dist/esm/overlays-7c699579.js");
|
||||
/* harmony import */
|
||||
|
||||
|
||||
var _theme_3f0b0c04_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
||||
/*! ./theme-3f0b0c04.js */
|
||||
"./node_modules/@ionic/core/dist/esm/theme-3f0b0c04.js");
|
||||
|
||||
var watchForOptions = function watchForOptions(containerEl, tagName, onChange) {
|
||||
/* tslint:disable-next-line */
|
||||
if (typeof MutationObserver === 'undefined') {
|
||||
return;
|
||||
}
|
||||
|
||||
var mutation = new MutationObserver(function (mutationList) {
|
||||
onChange(getSelectedOption(mutationList, tagName));
|
||||
});
|
||||
mutation.observe(containerEl, {
|
||||
childList: true,
|
||||
subtree: true
|
||||
});
|
||||
return mutation;
|
||||
};
|
||||
|
||||
var getSelectedOption = function getSelectedOption(mutationList, tagName) {
|
||||
var newOption;
|
||||
mutationList.forEach(function (mut) {
|
||||
// tslint:disable-next-line: prefer-for-of
|
||||
for (var i = 0; i < mut.addedNodes.length; i++) {
|
||||
newOption = findCheckedOption(mut.addedNodes[i], tagName) || newOption;
|
||||
}
|
||||
});
|
||||
return newOption;
|
||||
};
|
||||
|
||||
var findCheckedOption = function findCheckedOption(el, tagName) {
|
||||
if (el.nodeType !== 1) {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
var options = el.tagName === tagName.toUpperCase() ? [el] : Array.from(el.querySelectorAll(tagName));
|
||||
return options.find(function (o) {
|
||||
return o.value === el.value;
|
||||
});
|
||||
};
|
||||
|
||||
var selectIosCss = ":host{--placeholder-color:currentColor;--placeholder-opacity:0.33;padding-left:var(--padding-start);padding-right:var(--padding-end);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:-ms-flexbox;display:flex;position:relative;-ms-flex-align:center;align-items:center;font-family:var(--ion-font-family, inherit);overflow:hidden;z-index:2}@supports ((-webkit-margin-start: 0) or (margin-inline-start: 0)) or (-webkit-margin-start: 0){:host{padding-left:unset;padding-right:unset;-webkit-padding-start:var(--padding-start);padding-inline-start:var(--padding-start);-webkit-padding-end:var(--padding-end);padding-inline-end:var(--padding-end)}}:host(.in-item){position:static;max-width:45%}:host(.select-disabled){opacity:0.4;pointer-events:none}:host(.ion-focused) button{border:2px solid #5e9ed6}.select-placeholder{color:var(--placeholder-color);opacity:var(--placeholder-opacity)}button{left:0;top:0;margin-left:0;margin-right:0;margin-top:0;margin-bottom:0;position:absolute;width:100%;height:100%;border:0;background:transparent;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none;outline:none}[dir=rtl] button,:host-context([dir=rtl]) button{left:unset;right:unset;right:0}button::-moz-focus-inner{border:0}.select-icon{position:relative;opacity:0.33}.select-text{-ms-flex:1;flex:1;min-width:16px;font-size:inherit;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.select-icon-inner{left:5px;top:50%;margin-top:-3px;position:absolute;width:0;height:0;border-top:5px solid;border-right:5px solid transparent;border-left:5px solid transparent;color:currentColor;pointer-events:none}[dir=rtl] .select-icon-inner,:host-context([dir=rtl]) .select-icon-inner{left:unset;right:unset;right:5px}:host{--padding-top:10px;--padding-end:10px;--padding-bottom:10px;--padding-start:20px}.select-icon{width:12px;height:18px}";
|
||||
var selectMdCss = ":host{--placeholder-color:currentColor;--placeholder-opacity:0.33;padding-left:var(--padding-start);padding-right:var(--padding-end);padding-top:var(--padding-top);padding-bottom:var(--padding-bottom);display:-ms-flexbox;display:flex;position:relative;-ms-flex-align:center;align-items:center;font-family:var(--ion-font-family, inherit);overflow:hidden;z-index:2}@supports ((-webkit-margin-start: 0) or (margin-inline-start: 0)) or (-webkit-margin-start: 0){:host{padding-left:unset;padding-right:unset;-webkit-padding-start:var(--padding-start);padding-inline-start:var(--padding-start);-webkit-padding-end:var(--padding-end);padding-inline-end:var(--padding-end)}}:host(.in-item){position:static;max-width:45%}:host(.select-disabled){opacity:0.4;pointer-events:none}:host(.ion-focused) button{border:2px solid #5e9ed6}.select-placeholder{color:var(--placeholder-color);opacity:var(--placeholder-opacity)}button{left:0;top:0;margin-left:0;margin-right:0;margin-top:0;margin-bottom:0;position:absolute;width:100%;height:100%;border:0;background:transparent;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none;outline:none}[dir=rtl] button,:host-context([dir=rtl]) button{left:unset;right:unset;right:0}button::-moz-focus-inner{border:0}.select-icon{position:relative;opacity:0.33}.select-text{-ms-flex:1;flex:1;min-width:16px;font-size:inherit;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.select-icon-inner{left:5px;top:50%;margin-top:-3px;position:absolute;width:0;height:0;border-top:5px solid;border-right:5px solid transparent;border-left:5px solid transparent;color:currentColor;pointer-events:none}[dir=rtl] .select-icon-inner,:host-context([dir=rtl]) .select-icon-inner{left:unset;right:unset;right:5px}:host{--padding-top:10px;--padding-end:0;--padding-bottom:11px;--padding-start:16px}.select-icon{width:19px;height:19px}";
|
||||
|
||||
var Select = /*#__PURE__*/function () {
|
||||
function Select(hostRef) {
|
||||
var _this = this;
|
||||
|
||||
_classCallCheck(this, Select);
|
||||
|
||||
Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["r"])(this, hostRef);
|
||||
this.ionChange = Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["e"])(this, "ionChange", 7);
|
||||
this.ionCancel = Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["e"])(this, "ionCancel", 7);
|
||||
this.ionFocus = Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["e"])(this, "ionFocus", 7);
|
||||
this.ionBlur = Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["e"])(this, "ionBlur", 7);
|
||||
this.ionStyle = Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["e"])(this, "ionStyle", 7);
|
||||
this.inputId = "ion-sel-".concat(selectIds++);
|
||||
this.didInit = false;
|
||||
this.isExpanded = false;
|
||||
/**
|
||||
* If `true`, the user cannot interact with the select.
|
||||
*/
|
||||
|
||||
this.disabled = false;
|
||||
/**
|
||||
* The text to display on the cancel button.
|
||||
*/
|
||||
|
||||
this.cancelText = 'Cancel';
|
||||
/**
|
||||
* The text to display on the ok button.
|
||||
*/
|
||||
|
||||
this.okText = 'OK';
|
||||
/**
|
||||
* The name of the control, which is submitted with the form data.
|
||||
*/
|
||||
|
||||
this.name = this.inputId;
|
||||
/**
|
||||
* If `true`, the select can accept multiple values.
|
||||
*/
|
||||
|
||||
this.multiple = false;
|
||||
/**
|
||||
* The interface the select should use: `action-sheet`, `popover` or `alert`.
|
||||
*/
|
||||
|
||||
this["interface"] = 'alert';
|
||||
/**
|
||||
* Any additional options that the `alert`, `action-sheet` or `popover` interface
|
||||
* can take. See the [ion-alert docs](../alert), the
|
||||
* [ion-action-sheet docs](../action-sheet) and the
|
||||
* [ion-popover docs](../popover) for the
|
||||
* create options for each interface.
|
||||
*
|
||||
* Note: `interfaceOptions` will not override `inputs` or `buttons` with the `alert` interface.
|
||||
*/
|
||||
|
||||
this.interfaceOptions = {};
|
||||
|
||||
this.onClick = function (ev) {
|
||||
_this.setFocus();
|
||||
|
||||
_this.open(ev);
|
||||
};
|
||||
|
||||
this.onFocus = function () {
|
||||
_this.ionFocus.emit();
|
||||
};
|
||||
|
||||
this.onBlur = function () {
|
||||
_this.ionBlur.emit();
|
||||
};
|
||||
}
|
||||
|
||||
_createClass(Select, [{
|
||||
key: "disabledChanged",
|
||||
value: function disabledChanged() {
|
||||
this.emitStyle();
|
||||
}
|
||||
}, {
|
||||
key: "valueChanged",
|
||||
value: function valueChanged() {
|
||||
this.emitStyle();
|
||||
|
||||
if (this.didInit) {
|
||||
this.ionChange.emit({
|
||||
value: this.value
|
||||
});
|
||||
}
|
||||
}
|
||||
}, {
|
||||
key: "connectedCallback",
|
||||
value: function () {
|
||||
var _connectedCallback = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee2() {
|
||||
var _this2 = this;
|
||||
|
||||
return regeneratorRuntime.wrap(function _callee2$(_context2) {
|
||||
while (1) {
|
||||
switch (_context2.prev = _context2.next) {
|
||||
case 0:
|
||||
this.updateOverlayOptions();
|
||||
this.emitStyle();
|
||||
this.mutationO = watchForOptions(this.el, 'ion-select-option', /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee() {
|
||||
return regeneratorRuntime.wrap(function _callee$(_context) {
|
||||
while (1) {
|
||||
switch (_context.prev = _context.next) {
|
||||
case 0:
|
||||
_this2.updateOverlayOptions();
|
||||
|
||||
case 1:
|
||||
case "end":
|
||||
return _context.stop();
|
||||
}
|
||||
}
|
||||
}, _callee);
|
||||
})));
|
||||
|
||||
case 3:
|
||||
case "end":
|
||||
return _context2.stop();
|
||||
}
|
||||
}
|
||||
}, _callee2, this);
|
||||
}));
|
||||
|
||||
function connectedCallback() {
|
||||
return _connectedCallback.apply(this, arguments);
|
||||
}
|
||||
|
||||
return connectedCallback;
|
||||
}()
|
||||
}, {
|
||||
key: "disconnectedCallback",
|
||||
value: function disconnectedCallback() {
|
||||
if (this.mutationO) {
|
||||
this.mutationO.disconnect();
|
||||
this.mutationO = undefined;
|
||||
}
|
||||
}
|
||||
}, {
|
||||
key: "componentDidLoad",
|
||||
value: function componentDidLoad() {
|
||||
this.didInit = true;
|
||||
}
|
||||
/**
|
||||
* Open the select overlay. The overlay is either an alert, action sheet, or popover,
|
||||
* depending on the `interface` property on the `ion-select`.
|
||||
*
|
||||
* @param event The user interface event that called the open.
|
||||
*/
|
||||
|
||||
}, {
|
||||
key: "open",
|
||||
value: function () {
|
||||
var _open = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee3(event) {
|
||||
var _this3 = this;
|
||||
|
||||
var overlay;
|
||||
return regeneratorRuntime.wrap(function _callee3$(_context3) {
|
||||
while (1) {
|
||||
switch (_context3.prev = _context3.next) {
|
||||
case 0:
|
||||
if (!(this.disabled || this.isExpanded)) {
|
||||
_context3.next = 2;
|
||||
break;
|
||||
}
|
||||
|
||||
return _context3.abrupt("return", undefined);
|
||||
|
||||
case 2:
|
||||
_context3.next = 4;
|
||||
return this.createOverlay(event);
|
||||
|
||||
case 4:
|
||||
overlay = this.overlay = _context3.sent;
|
||||
this.isExpanded = true;
|
||||
overlay.onDidDismiss().then(function () {
|
||||
_this3.overlay = undefined;
|
||||
_this3.isExpanded = false;
|
||||
|
||||
_this3.setFocus();
|
||||
});
|
||||
_context3.next = 9;
|
||||
return overlay.present();
|
||||
|
||||
case 9:
|
||||
return _context3.abrupt("return", overlay);
|
||||
|
||||
case 10:
|
||||
case "end":
|
||||
return _context3.stop();
|
||||
}
|
||||
}
|
||||
}, _callee3, this);
|
||||
}));
|
||||
|
||||
function open(_x) {
|
||||
return _open.apply(this, arguments);
|
||||
}
|
||||
|
||||
return open;
|
||||
}()
|
||||
}, {
|
||||
key: "createOverlay",
|
||||
value: function createOverlay(ev) {
|
||||
var selectInterface = this["interface"];
|
||||
|
||||
if ((selectInterface === 'action-sheet' || selectInterface === 'popover') && this.multiple) {
|
||||
console.warn("Select interface cannot be \"".concat(selectInterface, "\" with a multi-value select. Using the \"alert\" interface instead."));
|
||||
selectInterface = 'alert';
|
||||
}
|
||||
|
||||
if (selectInterface === 'popover' && !ev) {
|
||||
console.warn('Select interface cannot be a "popover" without passing an event. Using the "alert" interface instead.');
|
||||
selectInterface = 'alert';
|
||||
}
|
||||
|
||||
if (selectInterface === 'popover') {
|
||||
return this.openPopover(ev);
|
||||
}
|
||||
|
||||
if (selectInterface === 'action-sheet') {
|
||||
return this.openActionSheet();
|
||||
}
|
||||
|
||||
return this.openAlert();
|
||||
}
|
||||
}, {
|
||||
key: "updateOverlayOptions",
|
||||
value: function updateOverlayOptions() {
|
||||
var overlay = this.overlay;
|
||||
|
||||
if (!overlay) {
|
||||
return;
|
||||
}
|
||||
|
||||
var childOpts = this.childOpts;
|
||||
var value = this.value;
|
||||
|
||||
switch (this["interface"]) {
|
||||
case 'action-sheet':
|
||||
overlay.buttons = this.createActionSheetButtons(childOpts, value);
|
||||
break;
|
||||
|
||||
case 'popover':
|
||||
var popover = overlay.querySelector('ion-select-popover');
|
||||
|
||||
if (popover) {
|
||||
popover.options = this.createPopoverOptions(childOpts, value);
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
case 'alert':
|
||||
var inputType = this.multiple ? 'checkbox' : 'radio';
|
||||
overlay.inputs = this.createAlertInputs(childOpts, inputType, value);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}, {
|
||||
key: "createActionSheetButtons",
|
||||
value: function createActionSheetButtons(data, selectValue) {
|
||||
var _this4 = this;
|
||||
|
||||
var actionSheetButtons = data.map(function (option) {
|
||||
var value = getOptionValue(option); // Remove hydrated before copying over classes
|
||||
|
||||
var copyClasses = Array.from(option.classList).filter(function (cls) {
|
||||
return cls !== 'hydrated';
|
||||
}).join(' ');
|
||||
var optClass = "".concat(OPTION_CLASS, " ").concat(copyClasses);
|
||||
return {
|
||||
role: isOptionSelected(value, selectValue, _this4.compareWith) ? 'selected' : '',
|
||||
text: option.textContent,
|
||||
cssClass: optClass,
|
||||
handler: function handler() {
|
||||
_this4.value = value;
|
||||
}
|
||||
};
|
||||
}); // Add "cancel" button
|
||||
|
||||
actionSheetButtons.push({
|
||||
text: this.cancelText,
|
||||
role: 'cancel',
|
||||
handler: function handler() {
|
||||
_this4.ionCancel.emit();
|
||||
}
|
||||
});
|
||||
return actionSheetButtons;
|
||||
}
|
||||
}, {
|
||||
key: "createAlertInputs",
|
||||
value: function createAlertInputs(data, inputType, selectValue) {
|
||||
var _this5 = this;
|
||||
|
||||
var alertInputs = data.map(function (option) {
|
||||
var value = getOptionValue(option); // Remove hydrated before copying over classes
|
||||
|
||||
var copyClasses = Array.from(option.classList).filter(function (cls) {
|
||||
return cls !== 'hydrated';
|
||||
}).join(' ');
|
||||
var optClass = "".concat(OPTION_CLASS, " ").concat(copyClasses);
|
||||
return {
|
||||
type: inputType,
|
||||
cssClass: optClass,
|
||||
label: option.textContent || '',
|
||||
value: value,
|
||||
checked: isOptionSelected(value, selectValue, _this5.compareWith),
|
||||
disabled: option.disabled
|
||||
};
|
||||
});
|
||||
return alertInputs;
|
||||
}
|
||||
}, {
|
||||
key: "createPopoverOptions",
|
||||
value: function createPopoverOptions(data, selectValue) {
|
||||
var _this6 = this;
|
||||
|
||||
var popoverOptions = data.map(function (option) {
|
||||
var value = getOptionValue(option); // Remove hydrated before copying over classes
|
||||
|
||||
var copyClasses = Array.from(option.classList).filter(function (cls) {
|
||||
return cls !== 'hydrated';
|
||||
}).join(' ');
|
||||
var optClass = "".concat(OPTION_CLASS, " ").concat(copyClasses);
|
||||
return {
|
||||
text: option.textContent || '',
|
||||
cssClass: optClass,
|
||||
value: value,
|
||||
checked: isOptionSelected(value, selectValue, _this6.compareWith),
|
||||
disabled: option.disabled,
|
||||
handler: function handler() {
|
||||
_this6.value = value;
|
||||
|
||||
_this6.close();
|
||||
}
|
||||
};
|
||||
});
|
||||
return popoverOptions;
|
||||
}
|
||||
}, {
|
||||
key: "openPopover",
|
||||
value: function () {
|
||||
var _openPopover = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee4(ev) {
|
||||
var interfaceOptions, mode, value, popoverOpts;
|
||||
return regeneratorRuntime.wrap(function _callee4$(_context4) {
|
||||
while (1) {
|
||||
switch (_context4.prev = _context4.next) {
|
||||
case 0:
|
||||
interfaceOptions = this.interfaceOptions;
|
||||
mode = Object(_ionic_global_837be8f3_js__WEBPACK_IMPORTED_MODULE_1__["b"])(this);
|
||||
value = this.value;
|
||||
popoverOpts = Object.assign(Object.assign({
|
||||
mode: mode
|
||||
}, interfaceOptions), {
|
||||
component: 'ion-select-popover',
|
||||
cssClass: ['select-popover', interfaceOptions.cssClass],
|
||||
event: ev,
|
||||
componentProps: {
|
||||
header: interfaceOptions.header,
|
||||
subHeader: interfaceOptions.subHeader,
|
||||
message: interfaceOptions.message,
|
||||
value: value,
|
||||
options: this.createPopoverOptions(this.childOpts, value)
|
||||
}
|
||||
});
|
||||
return _context4.abrupt("return", _overlays_7c699579_js__WEBPACK_IMPORTED_MODULE_4__["c"].create(popoverOpts));
|
||||
|
||||
case 5:
|
||||
case "end":
|
||||
return _context4.stop();
|
||||
}
|
||||
}
|
||||
}, _callee4, this);
|
||||
}));
|
||||
|
||||
function openPopover(_x2) {
|
||||
return _openPopover.apply(this, arguments);
|
||||
}
|
||||
|
||||
return openPopover;
|
||||
}()
|
||||
}, {
|
||||
key: "openActionSheet",
|
||||
value: function () {
|
||||
var _openActionSheet = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee5() {
|
||||
var mode, interfaceOptions, actionSheetOpts;
|
||||
return regeneratorRuntime.wrap(function _callee5$(_context5) {
|
||||
while (1) {
|
||||
switch (_context5.prev = _context5.next) {
|
||||
case 0:
|
||||
mode = Object(_ionic_global_837be8f3_js__WEBPACK_IMPORTED_MODULE_1__["b"])(this);
|
||||
interfaceOptions = this.interfaceOptions;
|
||||
actionSheetOpts = Object.assign(Object.assign({
|
||||
mode: mode
|
||||
}, interfaceOptions), {
|
||||
buttons: this.createActionSheetButtons(this.childOpts, this.value),
|
||||
cssClass: ['select-action-sheet', interfaceOptions.cssClass]
|
||||
});
|
||||
return _context5.abrupt("return", _overlays_7c699579_js__WEBPACK_IMPORTED_MODULE_4__["b"].create(actionSheetOpts));
|
||||
|
||||
case 4:
|
||||
case "end":
|
||||
return _context5.stop();
|
||||
}
|
||||
}
|
||||
}, _callee5, this);
|
||||
}));
|
||||
|
||||
function openActionSheet() {
|
||||
return _openActionSheet.apply(this, arguments);
|
||||
}
|
||||
|
||||
return openActionSheet;
|
||||
}()
|
||||
}, {
|
||||
key: "openAlert",
|
||||
value: function () {
|
||||
var _openAlert = _asyncToGenerator( /*#__PURE__*/regeneratorRuntime.mark(function _callee6() {
|
||||
var _this7 = this;
|
||||
|
||||
var label, labelText, interfaceOptions, inputType, mode, alertOpts;
|
||||
return regeneratorRuntime.wrap(function _callee6$(_context6) {
|
||||
while (1) {
|
||||
switch (_context6.prev = _context6.next) {
|
||||
case 0:
|
||||
label = this.getLabel();
|
||||
labelText = label ? label.textContent : null;
|
||||
interfaceOptions = this.interfaceOptions;
|
||||
inputType = this.multiple ? 'checkbox' : 'radio';
|
||||
mode = Object(_ionic_global_837be8f3_js__WEBPACK_IMPORTED_MODULE_1__["b"])(this);
|
||||
alertOpts = Object.assign(Object.assign({
|
||||
mode: mode
|
||||
}, interfaceOptions), {
|
||||
header: interfaceOptions.header ? interfaceOptions.header : labelText,
|
||||
inputs: this.createAlertInputs(this.childOpts, inputType, this.value),
|
||||
buttons: [{
|
||||
text: this.cancelText,
|
||||
role: 'cancel',
|
||||
handler: function handler() {
|
||||
_this7.ionCancel.emit();
|
||||
}
|
||||
}, {
|
||||
text: this.okText,
|
||||
handler: function handler(selectedValues) {
|
||||
_this7.value = selectedValues;
|
||||
}
|
||||
}],
|
||||
cssClass: ['select-alert', interfaceOptions.cssClass, this.multiple ? 'multiple-select-alert' : 'single-select-alert']
|
||||
});
|
||||
return _context6.abrupt("return", _overlays_7c699579_js__WEBPACK_IMPORTED_MODULE_4__["a"].create(alertOpts));
|
||||
|
||||
case 7:
|
||||
case "end":
|
||||
return _context6.stop();
|
||||
}
|
||||
}
|
||||
}, _callee6, this);
|
||||
}));
|
||||
|
||||
function openAlert() {
|
||||
return _openAlert.apply(this, arguments);
|
||||
}
|
||||
|
||||
return openAlert;
|
||||
}()
|
||||
/**
|
||||
* Close the select interface.
|
||||
*/
|
||||
|
||||
}, {
|
||||
key: "close",
|
||||
value: function close() {
|
||||
// TODO check !this.overlay || !this.isFocus()
|
||||
if (!this.overlay) {
|
||||
return Promise.resolve(false);
|
||||
}
|
||||
|
||||
return this.overlay.dismiss();
|
||||
}
|
||||
}, {
|
||||
key: "getLabel",
|
||||
value: function getLabel() {
|
||||
return Object(_helpers_5c745fbd_js__WEBPACK_IMPORTED_MODULE_2__["f"])(this.el);
|
||||
}
|
||||
}, {
|
||||
key: "hasValue",
|
||||
value: function hasValue() {
|
||||
return this.getText() !== '';
|
||||
}
|
||||
}, {
|
||||
key: "getText",
|
||||
value: function getText() {
|
||||
var selectedText = this.selectedText;
|
||||
|
||||
if (selectedText != null && selectedText !== '') {
|
||||
return selectedText;
|
||||
}
|
||||
|
||||
return generateText(this.childOpts, this.value, this.compareWith);
|
||||
}
|
||||
}, {
|
||||
key: "setFocus",
|
||||
value: function setFocus() {
|
||||
if (this.buttonEl) {
|
||||
this.buttonEl.focus();
|
||||
}
|
||||
}
|
||||
}, {
|
||||
key: "emitStyle",
|
||||
value: function emitStyle() {
|
||||
this.ionStyle.emit({
|
||||
'interactive': true,
|
||||
'select': true,
|
||||
'has-placeholder': this.placeholder != null,
|
||||
'has-value': this.hasValue(),
|
||||
'interactive-disabled': this.disabled,
|
||||
'select-disabled': this.disabled
|
||||
});
|
||||
}
|
||||
}, {
|
||||
key: "render",
|
||||
value: function render() {
|
||||
var _class,
|
||||
_this8 = this;
|
||||
|
||||
var placeholder = this.placeholder,
|
||||
name = this.name,
|
||||
disabled = this.disabled,
|
||||
isExpanded = this.isExpanded,
|
||||
value = this.value,
|
||||
el = this.el;
|
||||
var mode = Object(_ionic_global_837be8f3_js__WEBPACK_IMPORTED_MODULE_1__["b"])(this);
|
||||
var labelId = this.inputId + '-lbl';
|
||||
var label = Object(_helpers_5c745fbd_js__WEBPACK_IMPORTED_MODULE_2__["f"])(el);
|
||||
|
||||
if (label) {
|
||||
label.id = labelId;
|
||||
}
|
||||
|
||||
var addPlaceholderClass = false;
|
||||
var selectText = this.getText();
|
||||
|
||||
if (selectText === '' && placeholder != null) {
|
||||
selectText = placeholder;
|
||||
addPlaceholderClass = true;
|
||||
}
|
||||
|
||||
Object(_helpers_5c745fbd_js__WEBPACK_IMPORTED_MODULE_2__["a"])(true, el, name, parseValue(value), disabled);
|
||||
var selectTextClasses = {
|
||||
'select-text': true,
|
||||
'select-placeholder': addPlaceholderClass
|
||||
};
|
||||
var textPart = addPlaceholderClass ? 'placeholder' : 'text';
|
||||
return Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["h"])(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["H"], {
|
||||
onClick: this.onClick,
|
||||
role: "listbox",
|
||||
"aria-haspopup": "dialog",
|
||||
"aria-disabled": disabled ? 'true' : null,
|
||||
"aria-expanded": "".concat(isExpanded),
|
||||
"aria-labelledby": labelId,
|
||||
"class": (_class = {}, _defineProperty(_class, mode, true), _defineProperty(_class, 'in-item', Object(_theme_3f0b0c04_js__WEBPACK_IMPORTED_MODULE_5__["h"])('ion-item', el)), _defineProperty(_class, 'select-disabled', disabled), _class)
|
||||
}, Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["h"])("div", {
|
||||
"class": selectTextClasses,
|
||||
part: textPart
|
||||
}, selectText), Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["h"])("div", {
|
||||
"class": "select-icon",
|
||||
role: "presentation",
|
||||
part: "icon"
|
||||
}, Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["h"])("div", {
|
||||
"class": "select-icon-inner"
|
||||
})), Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["h"])("button", {
|
||||
type: "button",
|
||||
onFocus: this.onFocus,
|
||||
onBlur: this.onBlur,
|
||||
disabled: disabled,
|
||||
ref: function ref(btnEl) {
|
||||
return _this8.buttonEl = btnEl;
|
||||
}
|
||||
}));
|
||||
}
|
||||
}, {
|
||||
key: "childOpts",
|
||||
get: function get() {
|
||||
return Array.from(this.el.querySelectorAll('ion-select-option'));
|
||||
}
|
||||
}, {
|
||||
key: "el",
|
||||
get: function get() {
|
||||
return Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["i"])(this);
|
||||
}
|
||||
}], [{
|
||||
key: "watchers",
|
||||
get: function get() {
|
||||
return {
|
||||
"disabled": ["disabledChanged"],
|
||||
"placeholder": ["disabledChanged"],
|
||||
"value": ["valueChanged"]
|
||||
};
|
||||
}
|
||||
}]);
|
||||
|
||||
return Select;
|
||||
}();
|
||||
|
||||
var isOptionSelected = function isOptionSelected(currentValue, compareValue, compareWith) {
|
||||
if (currentValue === undefined) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (Array.isArray(currentValue)) {
|
||||
return currentValue.some(function (val) {
|
||||
return compareOptions(val, compareValue, compareWith);
|
||||
});
|
||||
} else {
|
||||
return compareOptions(currentValue, compareValue, compareWith);
|
||||
}
|
||||
};
|
||||
|
||||
var getOptionValue = function getOptionValue(el) {
|
||||
var value = el.value;
|
||||
return value === undefined ? el.textContent || '' : value;
|
||||
};
|
||||
|
||||
var parseValue = function parseValue(value) {
|
||||
if (value == null) {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
if (Array.isArray(value)) {
|
||||
return value.join(',');
|
||||
}
|
||||
|
||||
return value.toString();
|
||||
};
|
||||
|
||||
var compareOptions = function compareOptions(currentValue, compareValue, compareWith) {
|
||||
if (typeof compareWith === 'function') {
|
||||
return compareWith(currentValue, compareValue);
|
||||
} else if (typeof compareWith === 'string') {
|
||||
return currentValue[compareWith] === compareValue[compareWith];
|
||||
} else {
|
||||
return Array.isArray(compareValue) ? compareValue.includes(currentValue) : currentValue === compareValue;
|
||||
}
|
||||
};
|
||||
|
||||
var generateText = function generateText(opts, value, compareWith) {
|
||||
if (value === undefined) {
|
||||
return '';
|
||||
}
|
||||
|
||||
if (Array.isArray(value)) {
|
||||
return value.map(function (v) {
|
||||
return textForValue(opts, v, compareWith);
|
||||
}).filter(function (opt) {
|
||||
return opt !== null;
|
||||
}).join(', ');
|
||||
} else {
|
||||
return textForValue(opts, value, compareWith) || '';
|
||||
}
|
||||
};
|
||||
|
||||
var textForValue = function textForValue(opts, value, compareWith) {
|
||||
var selectOpt = opts.find(function (opt) {
|
||||
return compareOptions(getOptionValue(opt), value, compareWith);
|
||||
});
|
||||
return selectOpt ? selectOpt.textContent : null;
|
||||
};
|
||||
|
||||
var selectIds = 0;
|
||||
var OPTION_CLASS = 'select-interface-option';
|
||||
Select.style = {
|
||||
ios: selectIosCss,
|
||||
md: selectMdCss
|
||||
};
|
||||
var selectOptionCss = ":host{display:none}";
|
||||
|
||||
var SelectOption = /*#__PURE__*/function () {
|
||||
function SelectOption(hostRef) {
|
||||
_classCallCheck(this, SelectOption);
|
||||
|
||||
Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["r"])(this, hostRef);
|
||||
this.inputId = "ion-selopt-".concat(selectOptionIds++);
|
||||
/**
|
||||
* If `true`, the user cannot interact with the select option. This property does not apply when `interface="action-sheet"` as `ion-action-sheet` does not allow for disabled buttons.
|
||||
*/
|
||||
|
||||
this.disabled = false;
|
||||
}
|
||||
|
||||
_createClass(SelectOption, [{
|
||||
key: "render",
|
||||
value: function render() {
|
||||
return Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["h"])(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["H"], {
|
||||
role: "option",
|
||||
id: this.inputId,
|
||||
"class": Object(_ionic_global_837be8f3_js__WEBPACK_IMPORTED_MODULE_1__["b"])(this)
|
||||
});
|
||||
}
|
||||
}, {
|
||||
key: "el",
|
||||
get: function get() {
|
||||
return Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["i"])(this);
|
||||
}
|
||||
}]);
|
||||
|
||||
return SelectOption;
|
||||
}();
|
||||
|
||||
var selectOptionIds = 0;
|
||||
SelectOption.style = selectOptionCss;
|
||||
var selectPopoverCss = ".sc-ion-select-popover-h ion-list.sc-ion-select-popover{margin-left:0;margin-right:0;margin-top:-1px;margin-bottom:-1px}.sc-ion-select-popover-h ion-list-header.sc-ion-select-popover,.sc-ion-select-popover-h ion-label.sc-ion-select-popover{margin-left:0;margin-right:0;margin-top:0;margin-bottom:0}";
|
||||
|
||||
var SelectPopover = /*#__PURE__*/function () {
|
||||
function SelectPopover(hostRef) {
|
||||
_classCallCheck(this, SelectPopover);
|
||||
|
||||
Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["r"])(this, hostRef);
|
||||
/** Array of options for the popover */
|
||||
|
||||
this.options = [];
|
||||
}
|
||||
|
||||
_createClass(SelectPopover, [{
|
||||
key: "onSelect",
|
||||
value: function onSelect(ev) {
|
||||
var option = this.options.find(function (o) {
|
||||
return o.value === ev.target.value;
|
||||
});
|
||||
|
||||
if (option) {
|
||||
Object(_overlays_7c699579_js__WEBPACK_IMPORTED_MODULE_4__["s"])(option.handler);
|
||||
}
|
||||
}
|
||||
}, {
|
||||
key: "render",
|
||||
value: function render() {
|
||||
var checkedOption = this.options.find(function (o) {
|
||||
return o.checked;
|
||||
});
|
||||
var checkedValue = checkedOption ? checkedOption.value : undefined;
|
||||
return Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["h"])(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["H"], {
|
||||
"class": Object(_ionic_global_837be8f3_js__WEBPACK_IMPORTED_MODULE_1__["b"])(this)
|
||||
}, Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["h"])("ion-list", null, this.header !== undefined && Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["h"])("ion-list-header", null, this.header), (this.subHeader !== undefined || this.message !== undefined) && Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["h"])("ion-item", null, Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["h"])("ion-label", {
|
||||
"class": "ion-text-wrap"
|
||||
}, this.subHeader !== undefined && Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["h"])("h3", null, this.subHeader), this.message !== undefined && Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["h"])("p", null, this.message))), Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["h"])("ion-radio-group", {
|
||||
value: checkedValue
|
||||
}, this.options.map(function (option) {
|
||||
return Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["h"])("ion-item", {
|
||||
"class": Object(_theme_3f0b0c04_js__WEBPACK_IMPORTED_MODULE_5__["g"])(option.cssClass)
|
||||
}, Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["h"])("ion-label", null, option.text), Object(_index_44bf8136_js__WEBPACK_IMPORTED_MODULE_0__["h"])("ion-radio", {
|
||||
value: option.value,
|
||||
disabled: option.disabled
|
||||
}));
|
||||
}))));
|
||||
}
|
||||
}]);
|
||||
|
||||
return SelectPopover;
|
||||
}();
|
||||
|
||||
SelectPopover.style = selectPopoverCss;
|
||||
/***/
|
||||
}
|
||||
}]);
|
||||
//# sourceMappingURL=32-es5.js.map
|
||||
Reference in New Issue
Block a user