📚 Documentação inicial do ALETHEIA
- MANUAL-PRODUTO.md: Manual do usuário final - MANUAL-VENDAS.md: Estratégia comercial e vendas - MANUAL-TECNICO.md: Infraestrutura e deploy - README.md: Visão geral do projeto
This commit is contained in:
73
frontend/node_modules/html5-qrcode/cjs/ui/scanner/camera-zoom-ui.js
generated
vendored
Normal file
73
frontend/node_modules/html5-qrcode/cjs/ui/scanner/camera-zoom-ui.js
generated
vendored
Normal file
@@ -0,0 +1,73 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.CameraZoomUi = void 0;
|
||||
var base_1 = require("./base");
|
||||
var strings_1 = require("../../strings");
|
||||
var CameraZoomUi = (function () {
|
||||
function CameraZoomUi() {
|
||||
this.onChangeCallback = null;
|
||||
this.zoomElementContainer = document.createElement("div");
|
||||
this.rangeInput = base_1.BaseUiElementFactory.createElement("input", base_1.PublicUiElementIdAndClasses.ZOOM_SLIDER_ID);
|
||||
this.rangeInput.type = "range";
|
||||
this.rangeText = document.createElement("span");
|
||||
this.rangeInput.min = "1";
|
||||
this.rangeInput.max = "5";
|
||||
this.rangeInput.value = "1";
|
||||
this.rangeInput.step = "0.1";
|
||||
}
|
||||
CameraZoomUi.prototype.render = function (parentElement, renderOnCreate) {
|
||||
this.zoomElementContainer.style.display
|
||||
= renderOnCreate ? "block" : "none";
|
||||
this.zoomElementContainer.style.padding = "5px 10px";
|
||||
this.zoomElementContainer.style.textAlign = "center";
|
||||
parentElement.appendChild(this.zoomElementContainer);
|
||||
this.rangeInput.style.display = "inline-block";
|
||||
this.rangeInput.style.width = "50%";
|
||||
this.rangeInput.style.height = "5px";
|
||||
this.rangeInput.style.background = "#d3d3d3";
|
||||
this.rangeInput.style.outline = "none";
|
||||
this.rangeInput.style.opacity = "0.7";
|
||||
var zoomString = strings_1.Html5QrcodeScannerStrings.zoom();
|
||||
this.rangeText.innerText = "".concat(this.rangeInput.value, "x ").concat(zoomString);
|
||||
this.rangeText.style.marginRight = "10px";
|
||||
var $this = this;
|
||||
this.rangeInput.addEventListener("input", function () { return $this.onValueChange(); });
|
||||
this.rangeInput.addEventListener("change", function () { return $this.onValueChange(); });
|
||||
this.zoomElementContainer.appendChild(this.rangeInput);
|
||||
this.zoomElementContainer.appendChild(this.rangeText);
|
||||
};
|
||||
CameraZoomUi.prototype.onValueChange = function () {
|
||||
var zoomString = strings_1.Html5QrcodeScannerStrings.zoom();
|
||||
this.rangeText.innerText = "".concat(this.rangeInput.value, "x ").concat(zoomString);
|
||||
if (this.onChangeCallback) {
|
||||
this.onChangeCallback(parseFloat(this.rangeInput.value));
|
||||
}
|
||||
};
|
||||
CameraZoomUi.prototype.setValues = function (minValue, maxValue, defaultValue, step) {
|
||||
this.rangeInput.min = minValue.toString();
|
||||
this.rangeInput.max = maxValue.toString();
|
||||
this.rangeInput.step = step.toString();
|
||||
this.rangeInput.value = defaultValue.toString();
|
||||
this.onValueChange();
|
||||
};
|
||||
CameraZoomUi.prototype.show = function () {
|
||||
this.zoomElementContainer.style.display = "block";
|
||||
};
|
||||
CameraZoomUi.prototype.hide = function () {
|
||||
this.zoomElementContainer.style.display = "none";
|
||||
};
|
||||
CameraZoomUi.prototype.setOnCameraZoomValueChangeCallback = function (onChangeCallback) {
|
||||
this.onChangeCallback = onChangeCallback;
|
||||
};
|
||||
CameraZoomUi.prototype.removeOnCameraZoomValueChangeCallback = function () {
|
||||
this.onChangeCallback = null;
|
||||
};
|
||||
CameraZoomUi.create = function (parentElement, renderOnCreate) {
|
||||
var cameraZoomUi = new CameraZoomUi();
|
||||
cameraZoomUi.render(parentElement, renderOnCreate);
|
||||
return cameraZoomUi;
|
||||
};
|
||||
return CameraZoomUi;
|
||||
}());
|
||||
exports.CameraZoomUi = CameraZoomUi;
|
||||
//# sourceMappingURL=camera-zoom-ui.js.map
|
||||
Reference in New Issue
Block a user