metag-sdk-ionic 1.2.7-native-0.109 → 1.2.7-native-0.111
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -9,8 +9,8 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
import * as i1 from "@ionic/angular";
|
|
10
10
|
import * as i2 from "../../services/modal-services/modal-dpi-services";
|
|
11
11
|
import * as i3 from "@angular/common";
|
|
12
|
-
function
|
|
13
|
-
i0.ɵɵelementStart(0, "div",
|
|
12
|
+
function NativeVideoSelfiePreviewComponent_div_3_Template(rf, ctx) { if (rf & 1) {
|
|
13
|
+
i0.ɵɵelementStart(0, "div", 11)(1, "div", 12);
|
|
14
14
|
i0.ɵɵtext(2);
|
|
15
15
|
i0.ɵɵelementEnd()();
|
|
16
16
|
} if (rf & 2) {
|
|
@@ -18,8 +18,8 @@ function NativeVideoSelfiePreviewComponent_div_2_Template(rf, ctx) { if (rf & 1)
|
|
|
18
18
|
i0.ɵɵadvance(2);
|
|
19
19
|
i0.ɵɵtextInterpolate(ctx_r0.countdown);
|
|
20
20
|
} }
|
|
21
|
-
function
|
|
22
|
-
i0.ɵɵelementStart(0, "div",
|
|
21
|
+
function NativeVideoSelfiePreviewComponent_div_5_Template(rf, ctx) { if (rf & 1) {
|
|
22
|
+
i0.ɵɵelementStart(0, "div", 13)(1, "ion-label", 14);
|
|
23
23
|
i0.ɵɵtext(2);
|
|
24
24
|
i0.ɵɵelementEnd()();
|
|
25
25
|
} if (rf & 2) {
|
|
@@ -27,15 +27,15 @@ function NativeVideoSelfiePreviewComponent_div_4_Template(rf, ctx) { if (rf & 1)
|
|
|
27
27
|
i0.ɵɵadvance(2);
|
|
28
28
|
i0.ɵɵtextInterpolate1(" 00:", ctx_r0.timeRemaining < 10 ? "0" + ctx_r0.timeRemaining : ctx_r0.timeRemaining, " ");
|
|
29
29
|
} }
|
|
30
|
-
function
|
|
30
|
+
function NativeVideoSelfiePreviewComponent_ion_button_8_Template(rf, ctx) { if (rf & 1) {
|
|
31
31
|
const _r2 = i0.ɵɵgetCurrentView();
|
|
32
|
-
i0.ɵɵelementStart(0, "ion-button",
|
|
33
|
-
i0.ɵɵlistener("click", function
|
|
32
|
+
i0.ɵɵelementStart(0, "ion-button", 15);
|
|
33
|
+
i0.ɵɵlistener("click", function NativeVideoSelfiePreviewComponent_ion_button_8_Template_ion_button_click_0_listener() { i0.ɵɵrestoreView(_r2); const ctx_r0 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r0.recordVideo()); });
|
|
34
34
|
i0.ɵɵtext(1, " Iniciar Grabaci\u00F3n ");
|
|
35
35
|
i0.ɵɵelementEnd();
|
|
36
36
|
} }
|
|
37
|
-
function
|
|
38
|
-
i0.ɵɵelement(0, "ion-spinner",
|
|
37
|
+
function NativeVideoSelfiePreviewComponent_ion_spinner_9_Template(rf, ctx) { if (rf & 1) {
|
|
38
|
+
i0.ɵɵelement(0, "ion-spinner", 16);
|
|
39
39
|
} }
|
|
40
40
|
export class NativeVideoSelfiePreviewComponent {
|
|
41
41
|
constructor(platform, modalController, alertController, changeDetector, modalDpiServices) {
|
|
@@ -82,21 +82,31 @@ export class NativeVideoSelfiePreviewComponent {
|
|
|
82
82
|
}
|
|
83
83
|
async startCameraPreview() {
|
|
84
84
|
try {
|
|
85
|
+
// Pequeño delay para asegurar que el DOM esté listo
|
|
86
|
+
await new Promise(resolve => setTimeout(resolve, 100));
|
|
85
87
|
const cameraPreviewOptions = {
|
|
86
88
|
position: 'front',
|
|
87
|
-
toBack:
|
|
89
|
+
toBack: false, // Preview ADELANTE para que se vea en el modal
|
|
88
90
|
x: 0,
|
|
89
91
|
y: 0,
|
|
90
92
|
width: window.screen.width,
|
|
91
93
|
height: window.screen.height,
|
|
92
94
|
disableAudio: false
|
|
93
95
|
};
|
|
94
|
-
console.log('[NativeVideoSelfiePreview]
|
|
96
|
+
console.log('[NativeVideoSelfiePreview] Dimensiones de pantalla:', {
|
|
97
|
+
width: window.screen.width,
|
|
98
|
+
height: window.screen.height,
|
|
99
|
+
innerWidth: window.innerWidth,
|
|
100
|
+
innerHeight: window.innerHeight
|
|
101
|
+
});
|
|
102
|
+
console.log('[NativeVideoSelfiePreview] Iniciando CameraPreview con toBack: false...');
|
|
95
103
|
await CameraPreview.start(cameraPreviewOptions);
|
|
96
|
-
console.log('[NativeVideoSelfiePreview] CameraPreview iniciado correctamente');
|
|
104
|
+
console.log('[NativeVideoSelfiePreview] ✅ CameraPreview iniciado correctamente');
|
|
105
|
+
// Verificar que efectivamente se inició
|
|
106
|
+
this.changeDetector.detectChanges();
|
|
97
107
|
}
|
|
98
108
|
catch (error) {
|
|
99
|
-
console.error('[NativeVideoSelfiePreview] Error iniciando CameraPreview:', error);
|
|
109
|
+
console.error('[NativeVideoSelfiePreview] ❌ Error iniciando CameraPreview:', error);
|
|
100
110
|
await this.showError('No se pudo iniciar la cámara. Verifica los permisos.');
|
|
101
111
|
}
|
|
102
112
|
}
|
|
@@ -269,22 +279,24 @@ export class NativeVideoSelfiePreviewComponent {
|
|
|
269
279
|
await alert.present();
|
|
270
280
|
}
|
|
271
281
|
static { this.ɵfac = function NativeVideoSelfiePreviewComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || NativeVideoSelfiePreviewComponent)(i0.ɵɵdirectiveInject(i1.Platform), i0.ɵɵdirectiveInject(i1.ModalController), i0.ɵɵdirectiveInject(i1.AlertController), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i2.ModalDpiServices)); }; }
|
|
272
|
-
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: NativeVideoSelfiePreviewComponent, selectors: [["app-native-video-selfie-preview"]], inputs: { text1: "text1", text2: "text2", backFunction: "backFunction" }, outputs: { closeRequested: "closeRequested" }, standalone: true, features: [i0.ɵɵStandaloneFeature], decls:
|
|
273
|
-
i0.ɵɵelementStart(0, "div", 0)
|
|
274
|
-
i0.ɵɵ
|
|
275
|
-
i0.ɵɵ
|
|
276
|
-
i0.ɵɵtemplate(
|
|
277
|
-
i0.ɵɵ
|
|
278
|
-
i0.ɵɵ
|
|
282
|
+
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: NativeVideoSelfiePreviewComponent, selectors: [["app-native-video-selfie-preview"]], inputs: { text1: "text1", text2: "text2", backFunction: "backFunction" }, outputs: { closeRequested: "closeRequested" }, standalone: true, features: [i0.ɵɵStandaloneFeature], decls: 12, vars: 5, consts: [[1, "camera-fullscreen"], [1, "camera-view-area"], [1, "overlay-container"], ["class", "countdown-overlay", 4, "ngIf"], [1, "circle-overlay"], ["class", "timer", 4, "ngIf"], [1, "instruction"], ["expand", "block", "class", "start-button", 3, "click", 4, "ngIf"], ["name", "crescent", 4, "ngIf"], ["fill", "clear", 1, "close-btn", 3, "click"], ["name", "close"], [1, "countdown-overlay"], [1, "countdown"], [1, "timer"], [1, "timer-label"], ["expand", "block", 1, "start-button", 3, "click"], ["name", "crescent"]], template: function NativeVideoSelfiePreviewComponent_Template(rf, ctx) { if (rf & 1) {
|
|
283
|
+
i0.ɵɵelementStart(0, "div", 0);
|
|
284
|
+
i0.ɵɵelement(1, "div", 1);
|
|
285
|
+
i0.ɵɵelementStart(2, "div", 2);
|
|
286
|
+
i0.ɵɵtemplate(3, NativeVideoSelfiePreviewComponent_div_3_Template, 3, 1, "div", 3);
|
|
287
|
+
i0.ɵɵelement(4, "div", 4);
|
|
288
|
+
i0.ɵɵtemplate(5, NativeVideoSelfiePreviewComponent_div_5_Template, 3, 1, "div", 5);
|
|
289
|
+
i0.ɵɵelementStart(6, "p", 6);
|
|
290
|
+
i0.ɵɵtext(7);
|
|
279
291
|
i0.ɵɵelementEnd();
|
|
280
|
-
i0.ɵɵtemplate(
|
|
292
|
+
i0.ɵɵtemplate(8, NativeVideoSelfiePreviewComponent_ion_button_8_Template, 2, 0, "ion-button", 7)(9, NativeVideoSelfiePreviewComponent_ion_spinner_9_Template, 1, 0, "ion-spinner", 8);
|
|
281
293
|
i0.ɵɵelementEnd();
|
|
282
|
-
i0.ɵɵelementStart(
|
|
283
|
-
i0.ɵɵlistener("click", function
|
|
284
|
-
i0.ɵɵelement(
|
|
294
|
+
i0.ɵɵelementStart(10, "ion-button", 9);
|
|
295
|
+
i0.ɵɵlistener("click", function NativeVideoSelfiePreviewComponent_Template_ion_button_click_10_listener() { return ctx.closeRequestedFunction(); });
|
|
296
|
+
i0.ɵɵelement(11, "ion-icon", 10);
|
|
285
297
|
i0.ɵɵelementEnd()();
|
|
286
298
|
} if (rf & 2) {
|
|
287
|
-
i0.ɵɵadvance(
|
|
299
|
+
i0.ɵɵadvance(3);
|
|
288
300
|
i0.ɵɵproperty("ngIf", ctx.countdown > 0);
|
|
289
301
|
i0.ɵɵadvance(2);
|
|
290
302
|
i0.ɵɵproperty("ngIf", ctx.isRecording);
|
|
@@ -294,13 +306,14 @@ export class NativeVideoSelfiePreviewComponent {
|
|
|
294
306
|
i0.ɵɵproperty("ngIf", !ctx.isRecording && !ctx.isLoading);
|
|
295
307
|
i0.ɵɵadvance();
|
|
296
308
|
i0.ɵɵproperty("ngIf", ctx.isLoading);
|
|
297
|
-
} }, dependencies: [IonicModule, i1.IonButton, i1.IonIcon, i1.IonLabel, i1.IonSpinner, CommonModule, i3.NgIf], styles: ["[_nghost-%COMP%] {\n display: block;\n position: fixed;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n z-index:
|
|
309
|
+
} }, dependencies: [IonicModule, i1.IonButton, i1.IonIcon, i1.IonLabel, i1.IonSpinner, CommonModule, i3.NgIf], styles: ["[_nghost-%COMP%] {\n display: block;\n position: fixed;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n z-index: 1;\n }\n\n .camera-fullscreen[_ngcontent-%COMP%] {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background: transparent;\n }\n\n .camera-view-area[_ngcontent-%COMP%] {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background: transparent;\n z-index: 1;\n }\n \n .overlay-container[_ngcontent-%COMP%] {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n pointer-events: none;\n z-index: 999999;\n }\n\n .overlay-container[_ngcontent-%COMP%] ion-button[_ngcontent-%COMP%], \n .overlay-container[_ngcontent-%COMP%] ion-spinner[_ngcontent-%COMP%] {\n pointer-events: all;\n }\n\n .countdown-overlay[_ngcontent-%COMP%] {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background: rgba(0, 0, 0, 0.7);\n display: flex;\n justify-content: center;\n align-items: center;\n z-index: 20;\n }\n\n .countdown[_ngcontent-%COMP%] {\n font-size: 120px;\n color: white;\n font-weight: bold;\n animation: _ngcontent-%COMP%_pulse 1s ease-in-out;\n }\n\n @keyframes _ngcontent-%COMP%_pulse {\n 0%, 100% { opacity: 1; transform: scale(1); }\n 50% { opacity: 0.8; transform: scale(0.95); }\n }\n \n .circle-overlay[_ngcontent-%COMP%] {\n position: absolute;\n width: 300px;\n height: 300px;\n border: 4px solid #9c27b0;\n border-radius: 50%;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n box-shadow: 0 0 20px rgba(156, 39, 176, 0.5);\n animation: _ngcontent-%COMP%_pulse-border 2s ease-in-out infinite;\n }\n\n @keyframes _ngcontent-%COMP%_pulse-border {\n 0%, 100% { border-color: #9c27b0; box-shadow: 0 0 20px rgba(156, 39, 176, 0.5); }\n 50% { border-color: #7b1fa2; box-shadow: 0 0 30px rgba(123, 31, 162, 0.8); }\n }\n \n .timer[_ngcontent-%COMP%] {\n position: absolute;\n top: 15%;\n z-index: 15;\n }\n\n .timer-label[_ngcontent-%COMP%] {\n color: #f44336;\n font-size: 32px;\n font-weight: bold;\n text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);\n }\n \n .instruction[_ngcontent-%COMP%] {\n position: absolute;\n bottom: 150px;\n color: white;\n text-align: center;\n padding: 0 30px;\n font-size: 16px;\n text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);\n background: rgba(0, 0, 0, 0.5);\n border-radius: 10px;\n padding: 15px 20px;\n }\n \n .start-button[_ngcontent-%COMP%] {\n position: absolute;\n bottom: 50px;\n left: 50%;\n transform: translateX(-50%);\n width: 80%;\n max-width: 300px;\n --background: #9c27b0;\n --background-hover: #7b1fa2;\n --border-radius: 25px;\n font-weight: bold;\n }\n\n ion-spinner[_ngcontent-%COMP%] {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n --color: white;\n width: 60px;\n height: 60px;\n }\n \n .close-btn[_ngcontent-%COMP%] {\n position: absolute;\n top: 20px;\n right: 20px;\n --color: white;\n --background: rgba(0, 0, 0, 0.5);\n --border-radius: 50%;\n width: 50px;\n height: 50px;\n pointer-events: all;\n z-index: 9999999;\n }"] }); }
|
|
298
310
|
}
|
|
299
311
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NativeVideoSelfiePreviewComponent, [{
|
|
300
312
|
type: Component,
|
|
301
313
|
args: [{ selector: 'app-native-video-selfie-preview', standalone: true, imports: [IonicModule, CommonModule], template: `
|
|
302
314
|
<div class="camera-fullscreen">
|
|
303
|
-
<!--
|
|
315
|
+
<!-- Área transparente donde se verá la cámara -->
|
|
316
|
+
<div class="camera-view-area"></div>
|
|
304
317
|
|
|
305
318
|
<!-- Overlay transparente encima -->
|
|
306
319
|
<div class="overlay-container">
|
|
@@ -345,7 +358,7 @@ export class NativeVideoSelfiePreviewComponent {
|
|
|
345
358
|
<ion-icon name="close"></ion-icon>
|
|
346
359
|
</ion-button>
|
|
347
360
|
</div>
|
|
348
|
-
`, encapsulation: ViewEncapsulation.Emulated, styles: ["\n :host {\n display: block;\n position: fixed;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n z-index:
|
|
361
|
+
`, encapsulation: ViewEncapsulation.Emulated, styles: ["\n :host {\n display: block;\n position: fixed;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n z-index: 1;\n }\n\n .camera-fullscreen {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background: transparent;\n }\n\n .camera-view-area {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background: transparent;\n z-index: 1;\n }\n \n .overlay-container {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n pointer-events: none;\n z-index: 999999;\n }\n\n .overlay-container ion-button,\n .overlay-container ion-spinner {\n pointer-events: all;\n }\n\n .countdown-overlay {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background: rgba(0, 0, 0, 0.7);\n display: flex;\n justify-content: center;\n align-items: center;\n z-index: 20;\n }\n\n .countdown {\n font-size: 120px;\n color: white;\n font-weight: bold;\n animation: pulse 1s ease-in-out;\n }\n\n @keyframes pulse {\n 0%, 100% { opacity: 1; transform: scale(1); }\n 50% { opacity: 0.8; transform: scale(0.95); }\n }\n \n .circle-overlay {\n position: absolute;\n width: 300px;\n height: 300px;\n border: 4px solid #9c27b0;\n border-radius: 50%;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n box-shadow: 0 0 20px rgba(156, 39, 176, 0.5);\n animation: pulse-border 2s ease-in-out infinite;\n }\n\n @keyframes pulse-border {\n 0%, 100% { border-color: #9c27b0; box-shadow: 0 0 20px rgba(156, 39, 176, 0.5); }\n 50% { border-color: #7b1fa2; box-shadow: 0 0 30px rgba(123, 31, 162, 0.8); }\n }\n \n .timer {\n position: absolute;\n top: 15%;\n z-index: 15;\n }\n\n .timer-label {\n color: #f44336;\n font-size: 32px;\n font-weight: bold;\n text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);\n }\n \n .instruction {\n position: absolute;\n bottom: 150px;\n color: white;\n text-align: center;\n padding: 0 30px;\n font-size: 16px;\n text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);\n background: rgba(0, 0, 0, 0.5);\n border-radius: 10px;\n padding: 15px 20px;\n }\n \n .start-button {\n position: absolute;\n bottom: 50px;\n left: 50%;\n transform: translateX(-50%);\n width: 80%;\n max-width: 300px;\n --background: #9c27b0;\n --background-hover: #7b1fa2;\n --border-radius: 25px;\n font-weight: bold;\n }\n\n ion-spinner {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n --color: white;\n width: 60px;\n height: 60px;\n }\n \n .close-btn {\n position: absolute;\n top: 20px;\n right: 20px;\n --color: white;\n --background: rgba(0, 0, 0, 0.5);\n --border-radius: 50%;\n width: 50px;\n height: 50px;\n pointer-events: all;\n z-index: 9999999;\n }\n "] }]
|
|
349
362
|
}], () => [{ type: i1.Platform }, { type: i1.ModalController }, { type: i1.AlertController }, { type: i0.ChangeDetectorRef }, { type: i2.ModalDpiServices }], { text1: [{
|
|
350
363
|
type: Input
|
|
351
364
|
}], text2: [{
|
|
@@ -355,5 +368,5 @@ export class NativeVideoSelfiePreviewComponent {
|
|
|
355
368
|
}], closeRequested: [{
|
|
356
369
|
type: Output
|
|
357
370
|
}] }); })();
|
|
358
|
-
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(NativeVideoSelfiePreviewComponent, { className: "NativeVideoSelfiePreviewComponent", filePath: "src\\app\\pages\\id-vision\\components\\native-video-selfie-preview\\native-video-selfie-preview.component.ts", lineNumber:
|
|
371
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(NativeVideoSelfiePreviewComponent, { className: "NativeVideoSelfiePreviewComponent", filePath: "src\\app\\pages\\id-vision\\components\\native-video-selfie-preview\\native-video-selfie-preview.component.ts", lineNumber: 222 }); })();
|
|
359
372
|
//# sourceMappingURL=native-video-selfie-preview.component.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"native-video-selfie-preview.component.js","sourceRoot":"","sources":["../../../../../../../src/app/pages/id-vision/components/native-video-selfie-preview/native-video-selfie-preview.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAC6B,SAAS,EAAE,YAAY,EACzD,KAAK,EAAa,MAAM,EAAE,iBAAiB,EAC5C,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,WAAW,EAA8C,MAAM,gBAAgB,CAAC;AACzF,OAAO,EAAE,aAAa,EAAwB,MAAM,qCAAqC,CAAC;AAC1F,OAAO,EAAE,KAAK,EAAoB,MAAM,4BAA4B,CAAC;AACrE,OAAO,EAAE,UAAU,EAAa,MAAM,uBAAuB,CAAC;AAC9D,OAAO,EAAE,gBAAgB,EAAE,MAAM,wCAAwC,CAAC;;;;;;
|
|
1
|
+
{"version":3,"file":"native-video-selfie-preview.component.js","sourceRoot":"","sources":["../../../../../../../src/app/pages/id-vision/components/native-video-selfie-preview/native-video-selfie-preview.component.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED