@myinterview/widget-react 1.1.23-binary-010 → 1.1.23-bli-chupchik
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.
- package/README.md +7 -3
- package/dist/cjs/components/DeviceSelector.d.ts +1 -2
- package/dist/cjs/components/Setup.d.ts +0 -1
- package/dist/cjs/components/SetupChecks.d.ts +0 -1
- package/dist/cjs/components/VideoCamera.d.ts +0 -1
- package/dist/cjs/index.js +126 -229
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/interfaces/configInterface.d.ts +0 -1
- package/dist/cjs/interfaces/recorderInterface.d.ts +1 -4
- package/dist/cjs/interfaces/videoInterface.d.ts +0 -1
- package/dist/cjs/interfaces/widgetInterface.d.ts +2 -9
- package/dist/cjs/services/event.service.d.ts +1 -6
- package/dist/cjs/utils/constants.utils.d.ts +0 -1
- package/dist/cjs/utils/debug.utils.d.ts +0 -1
- package/dist/cjs/utils/messages.utils.d.ts +0 -1
- package/dist/esm/components/DeviceSelector.d.ts +1 -2
- package/dist/esm/components/Setup.d.ts +0 -1
- package/dist/esm/components/SetupChecks.d.ts +0 -1
- package/dist/esm/components/VideoCamera.d.ts +0 -1
- package/dist/esm/index.js +112 -215
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/interfaces/configInterface.d.ts +0 -1
- package/dist/esm/interfaces/recorderInterface.d.ts +1 -4
- package/dist/esm/interfaces/videoInterface.d.ts +0 -1
- package/dist/esm/interfaces/widgetInterface.d.ts +2 -9
- package/dist/esm/services/event.service.d.ts +1 -6
- package/dist/esm/utils/constants.utils.d.ts +0 -1
- package/dist/esm/utils/debug.utils.d.ts +0 -1
- package/dist/esm/utils/messages.utils.d.ts +0 -1
- package/dist/index.d.ts +0 -2
- package/package.json +62 -62
|
@@ -21,7 +21,6 @@ interface FacingMode {
|
|
|
21
21
|
exact: string;
|
|
22
22
|
}
|
|
23
23
|
export interface RecorderInterface {
|
|
24
|
-
recordWithoutVideo?: boolean;
|
|
25
24
|
facingMode: FacingMode;
|
|
26
25
|
microphoneRef: ActorRef<DoneInvokeEvent<any>> | null;
|
|
27
26
|
countDownRef: ActorRef<DoneInvokeEvent<any>> | null;
|
|
@@ -44,7 +43,6 @@ export interface RecorderInterface {
|
|
|
44
43
|
recordingTime: number;
|
|
45
44
|
durations: number;
|
|
46
45
|
isMicError: boolean;
|
|
47
|
-
isActivelyStopped: boolean;
|
|
48
46
|
}
|
|
49
47
|
export declare const enum MIME_TYPES {
|
|
50
48
|
WEBM = "video/webm",
|
|
@@ -96,8 +94,7 @@ export declare const enum ACTIONS {
|
|
|
96
94
|
UPDATE_MACHINE_FOR_NEW_QUESTION = "UPDATE_MACHINE_FOR_NEW_QUESTION",
|
|
97
95
|
SET_MEDIA_RECORDER = "SET_MEDIA_RECORDER",
|
|
98
96
|
SET_MIC_ERROR = "SET_MIC_ERROR",
|
|
99
|
-
SET_PERMISSION_LISTENER = "SET_PERMISSION_LISTENER"
|
|
100
|
-
SET_ACTIVELY_STOPPED = "SET_ACTIVELY_STOPPED"
|
|
97
|
+
SET_PERMISSION_LISTENER = "SET_PERMISSION_LISTENER"
|
|
101
98
|
}
|
|
102
99
|
export declare const enum EVENTS {
|
|
103
100
|
SET_MIC_SPEED_DETECTION = "SET_MIC_SPEED_DETECTION",
|
|
@@ -78,7 +78,6 @@ export interface InitialState {
|
|
|
78
78
|
failedRecordingMessage: IVideoCorruptedMessagesKey;
|
|
79
79
|
isResumed: boolean;
|
|
80
80
|
videoDimensions: IVideoDimensions;
|
|
81
|
-
confirmUploadedFalseCount: number;
|
|
82
81
|
}
|
|
83
82
|
export interface IWidgetMachineProps {
|
|
84
83
|
widgetMachine: State<InitialState, DoneInvokeEvent<any>, any, {
|
|
@@ -98,7 +97,6 @@ export declare const enum STATES {
|
|
|
98
97
|
SETUP__TEST__CAMERA__WAITING = "testCameraWaiting",
|
|
99
98
|
SETUP__TEST__CAMERA__ERROR = "testCameraError",
|
|
100
99
|
SETUP__TEST__CAMERA__SUCCESS = "testCameraSuccess",
|
|
101
|
-
SETUP__TEST__CAMERA__SKIP = "testCameraSkip",
|
|
102
100
|
SETUP__TEST__MICROPHONE = "testMicrophone",
|
|
103
101
|
SETUP__TEST__MICROPHONE__WAITING = "testMicrophoneWaiting",
|
|
104
102
|
SETUP__TEST__MICROPHONE__ERROR = "testMicrophoneError",
|
|
@@ -123,7 +121,6 @@ export declare const enum STATES {
|
|
|
123
121
|
RE_INIT_RECORDER__NEXT_QUESTION = "reInitRecorderNextQuestion",
|
|
124
122
|
UPLOADING = "uploading",
|
|
125
123
|
CONFIRM = "confirm",
|
|
126
|
-
CONFIRM_WATING = "confirmWaiting",
|
|
127
124
|
FINISHED = "finished",
|
|
128
125
|
ERROR = "error"
|
|
129
126
|
}
|
|
@@ -175,8 +172,7 @@ export declare const enum ACTIONS {
|
|
|
175
172
|
INCREASE_FAILED_RECORDING_ATTEMPTS = "increaseFailedRecordingAttempts",
|
|
176
173
|
RESET_FAILED_RECORDING_ATTEMPTS = "resetFailedRecordingAttempts",
|
|
177
174
|
CLEAR_VIDEO_ERROR = "clearVideoError",
|
|
178
|
-
UPDATE_VIDEO_DIMENSIONS = "updateVideoDimensions"
|
|
179
|
-
UPDATE_UPLOADED_FALSE_COUNT = "updateUploadedFalseCount"
|
|
175
|
+
UPDATE_VIDEO_DIMENSIONS = "updateVideoDimensions"
|
|
180
176
|
}
|
|
181
177
|
export declare const enum EVENTS {
|
|
182
178
|
SPAWN_UPLOADER = "SPAWN_UPLOADER",
|
|
@@ -206,7 +202,6 @@ export declare const enum SERVICES {
|
|
|
206
202
|
UPDATE_VIDEO_PART_CALL = "updateVideoPartCall"
|
|
207
203
|
}
|
|
208
204
|
export declare const enum GUARDS {
|
|
209
|
-
IS_VIDEO_RECORDING_SKIP = "isVideoRecordingSkip",
|
|
210
205
|
NO_STORAGE = "noStorage",
|
|
211
206
|
NO_RECORDER = "noRecorder",
|
|
212
207
|
IS_THINKING_TIME = "isThinkingTime",
|
|
@@ -228,8 +223,7 @@ export declare const enum GUARDS {
|
|
|
228
223
|
THERE_ARE_NO_VIDEO_QUESTIONS_TYPE = "thereAreNoVideoQuestionType",
|
|
229
224
|
IS_RECORDER_READY = "isRecorderReady",
|
|
230
225
|
IS_ASSESSMENT_QUESTION = "isAssessmentQuestion",
|
|
231
|
-
IS_TIMES_UP = "isTimesUp"
|
|
232
|
-
SHOULD_TRY_TO_CONFIRM = "shouldTryToConfirm"
|
|
226
|
+
IS_TIMES_UP = "isTimesUp"
|
|
233
227
|
}
|
|
234
228
|
export declare const enum TAGS {
|
|
235
229
|
SETUP = "setup",
|
|
@@ -238,7 +232,6 @@ export declare const enum TAGS {
|
|
|
238
232
|
DISPLAY_OUTER_VIEW = "displayOuterView",
|
|
239
233
|
DISPLAY_QUESTION = "displayQuestion",
|
|
240
234
|
DISPLAY_QUESTIONS_LIST = "displayQuestionsList",
|
|
241
|
-
DISPLAY_UPLOAD = "displayUpload",
|
|
242
235
|
LOADING = "loading"
|
|
243
236
|
}
|
|
244
237
|
export {};
|
|
@@ -43,12 +43,7 @@ export declare const enum EVENT_TYPES {
|
|
|
43
43
|
MICROPHONE_CHANGED = "microphoneChanged",
|
|
44
44
|
SOUND_RESTORED = "soundRestored",
|
|
45
45
|
TIMES_UP = "timesUp",
|
|
46
|
-
COMPLETED_INTERVIEW = "completedInterview"
|
|
47
|
-
RECONNECTED = "reconnected",
|
|
48
|
-
CONFIRM_UPLOADED_FAILED = "confirmUploadedFailed",
|
|
49
|
-
FINISHED = "finished",
|
|
50
|
-
ON_FINISH_SUCCEED = "onFinishSucceed",
|
|
51
|
-
ON_FINISH_FAILED = "onFinishFailed"
|
|
46
|
+
COMPLETED_INTERVIEW = "completedInterview"
|
|
52
47
|
}
|
|
53
48
|
export type IEventType = `${EVENT_TYPES}`;
|
|
54
49
|
export interface ITrackEvent {
|
|
@@ -17,7 +17,6 @@ export declare const DEFAULT_VIDEO_DIMENSIONS: {
|
|
|
17
17
|
width: number;
|
|
18
18
|
height: number;
|
|
19
19
|
};
|
|
20
|
-
export declare const MAX_CONFIRM_ATTEMPTS = 5;
|
|
21
20
|
export declare const FONT_URL = "https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700&display=swap";
|
|
22
21
|
export declare enum RETAKE_SPEED {
|
|
23
22
|
FAST = 300,
|
|
@@ -5,7 +5,6 @@ export declare const enum DEBUG {
|
|
|
5
5
|
WELCOME_PAGE_STAGE = "In welcome page stage",
|
|
6
6
|
SETUP_STAGE = "In setup stage",
|
|
7
7
|
MEIDA_DEVICE_SUCCESS = "Media device available",
|
|
8
|
-
MEDIA_DEVICE_SWITCH_OFF = "Media device is off",
|
|
9
8
|
MEDIA_DEVICE_ERROR = "Media device error",
|
|
10
9
|
NO_SOUND_DETECTED = "No sound detected",
|
|
11
10
|
DEVICE_CHANGED = "Device changed",
|
|
@@ -7,6 +7,5 @@ export interface IDeviceSelectorProps {
|
|
|
7
7
|
selectedAudioDevice?: MediaDeviceInfo;
|
|
8
8
|
selectedVideoDevice?: MediaDeviceInfo;
|
|
9
9
|
myinterviewRef: React.RefObject<HTMLDivElement>;
|
|
10
|
-
recordWithoutVideo?: boolean;
|
|
11
10
|
}
|
|
12
|
-
export declare const DeviceSelector: ({ handleDeviceChange, videoDevices, audioDevices, selectedAudioDevice, selectedVideoDevice, myinterviewRef,
|
|
11
|
+
export declare const DeviceSelector: ({ handleDeviceChange, videoDevices, audioDevices, selectedAudioDevice, selectedVideoDevice, myinterviewRef, }: IDeviceSelectorProps) => JSX.Element;
|
|
@@ -2,7 +2,6 @@ import React from 'react';
|
|
|
2
2
|
import { IWidgetMachineProps } from '../interfaces/widgetInterface';
|
|
3
3
|
interface IProps extends IWidgetMachineProps {
|
|
4
4
|
isPracticeDisabled: boolean;
|
|
5
|
-
recordWithoutVideo?: boolean;
|
|
6
5
|
}
|
|
7
6
|
export declare const Setup: React.FC<IProps>;
|
|
8
7
|
export {};
|
|
@@ -26,7 +26,6 @@ interface IProps extends IDeviceSelectorProps {
|
|
|
26
26
|
isQuestionDisplayed: boolean;
|
|
27
27
|
myinterviewRef: React.RefObject<HTMLDivElement>;
|
|
28
28
|
isAssessment: boolean;
|
|
29
|
-
recordWithoutVideo?: boolean;
|
|
30
29
|
}
|
|
31
30
|
export declare const VideoCamera: React.ForwardRefExoticComponent<IProps & React.RefAttributes<HTMLVideoElement>>;
|
|
32
31
|
export {};
|