react-terminal-viewer-cicd 2.0.5 → 2.0.6
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
function LogWorker() {
|
|
2
2
|
var workerPath = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '/worker';
|
|
3
3
|
var worker = null;
|
|
4
|
-
var version = "2.0.
|
|
4
|
+
var version = "2.0.6" || '0.0.0';
|
|
5
5
|
var path = workerPath.includes('http') ? "".concat(workerPath, "/log.worker.js") : "".concat(window.location.origin).concat(workerPath, "/log.worker.js");
|
|
6
6
|
var blob = new Blob(["importScripts(\"".concat(path, "?v=").concat(version, "\")")], {
|
|
7
7
|
type: 'application/javascript'
|
|
@@ -7,6 +7,7 @@ export interface IRemoteOptions {
|
|
|
7
7
|
timeout?: number;
|
|
8
8
|
retry?: number;
|
|
9
9
|
enableBatch?: boolean;
|
|
10
|
+
status?: boolean;
|
|
10
11
|
}
|
|
11
12
|
export type UseRemoteHooks = (defaultData: string, callback?: (string: string) => void, options?: IRemoteOptions | undefined, cacheOptions?: ICacheOptions) => {
|
|
12
13
|
data: string;
|
|
@@ -20,7 +21,7 @@ export interface FetchResult {
|
|
|
20
21
|
key?: string | number;
|
|
21
22
|
nextKey?: string | number;
|
|
22
23
|
}
|
|
23
|
-
export declare const useSequenceFetch: (fetch: ((cacheValueKey?: string | number) => Promise<FetchResult>) | undefined, callback: (data: string) => Promise<void>, options: Pick<IRemoteOptions, 'timeout' | 'retry' | 'cacheKey' | 'cacheValueKey'>, cacheOptions?: ICacheOptions) => {
|
|
24
|
+
export declare const useSequenceFetch: (fetch: ((cacheValueKey?: string | number) => Promise<FetchResult>) | undefined, callback: (data: string) => Promise<void>, options: Pick<IRemoteOptions, 'timeout' | 'retry' | 'cacheKey' | 'cacheValueKey' | 'status'>, cacheOptions?: ICacheOptions) => {
|
|
24
25
|
loading: boolean;
|
|
25
26
|
setLoading: import("react").Dispatch<import("react").SetStateAction<boolean>>;
|
|
26
27
|
refresh: () => Promise<void>;
|
|
@@ -232,7 +232,7 @@ export var useSequenceFetch = function useSequenceFetch(fetch, callback, options
|
|
|
232
232
|
};
|
|
233
233
|
}();
|
|
234
234
|
execJob();
|
|
235
|
-
}, [setCache, getCache, job]);
|
|
235
|
+
}, [setCache, getCache, job, options.status]);
|
|
236
236
|
useEffect(function () {
|
|
237
237
|
return function () {
|
|
238
238
|
clearTimeout(timerRef.current);
|
|
@@ -7,6 +7,7 @@ export interface IRemoteOptions {
|
|
|
7
7
|
timeout?: number;
|
|
8
8
|
retry?: number;
|
|
9
9
|
enableBatch?: boolean;
|
|
10
|
+
status?: boolean;
|
|
10
11
|
}
|
|
11
12
|
export type UseRemoteHooks = (defaultData: string, callback?: (string: string) => void, options?: IRemoteOptions | undefined, cacheOptions?: ICacheOptions) => {
|
|
12
13
|
data: string;
|
|
@@ -20,7 +21,7 @@ export interface FetchResult {
|
|
|
20
21
|
key?: string | number;
|
|
21
22
|
nextKey?: string | number;
|
|
22
23
|
}
|
|
23
|
-
export declare const useSequenceFetch: (fetch: ((cacheValueKey?: string | number) => Promise<FetchResult>) | undefined, callback: (data: string) => Promise<void>, options: Pick<IRemoteOptions, 'timeout' | 'retry' | 'cacheKey' | 'cacheValueKey'>, cacheOptions?: ICacheOptions) => {
|
|
24
|
+
export declare const useSequenceFetch: (fetch: ((cacheValueKey?: string | number) => Promise<FetchResult>) | undefined, callback: (data: string) => Promise<void>, options: Pick<IRemoteOptions, 'timeout' | 'retry' | 'cacheKey' | 'cacheValueKey' | 'status'>, cacheOptions?: ICacheOptions) => {
|
|
24
25
|
loading: boolean;
|
|
25
26
|
setLoading: import("react").Dispatch<import("react").SetStateAction<boolean>>;
|
|
26
27
|
refresh: () => Promise<void>;
|