92 lines
2.4 KiB
TypeScript
92 lines
2.4 KiB
TypeScript
import { default as axios, AxiosResponse } from "axios";
|
|
import { apiUrl } from "../apiConfig";
|
|
|
|
export const startRecording = async() : Promise<string> => {
|
|
try {
|
|
const response = await axios.get(`${apiUrl}/record/start`)
|
|
if (response.status === 200) {
|
|
return response.data;
|
|
} else {
|
|
throw new Error('Couldn\'t start recording');
|
|
}
|
|
} catch(error: any) {
|
|
return '';
|
|
}
|
|
};
|
|
|
|
export const stopRecording = async (id: string): Promise<void> => {
|
|
await axios.get(`${apiUrl}/record/stop/${id}`)
|
|
.then((response : AxiosResponse<boolean>) => {
|
|
})
|
|
.catch((error: any) => {
|
|
});
|
|
};
|
|
|
|
export const getActiveBrowserId = async(): Promise<string> => {
|
|
try {
|
|
const response = await axios.get(`${apiUrl}/record/active`);
|
|
if (response.status === 200) {
|
|
return response.data;
|
|
} else {
|
|
throw new Error('Couldn\'t get active browser');
|
|
}
|
|
} catch(error: any) {
|
|
return '';
|
|
}
|
|
};
|
|
|
|
export const interpretCurrentRecording = async(): Promise<boolean> => {
|
|
try {
|
|
const response = await axios.get(`${apiUrl}/record/interpret`);
|
|
if (response.status === 200) {
|
|
return true;
|
|
} else {
|
|
throw new Error('Couldn\'t interpret current recording');
|
|
}
|
|
} catch(error: any) {
|
|
console.log(error);
|
|
return false;
|
|
}
|
|
};
|
|
|
|
export const stopCurrentInterpretation = async(): Promise<void> => {
|
|
try {
|
|
const response = await axios.get(`${apiUrl}/record/interpret/stop`);
|
|
if (response.status === 200) {
|
|
return;
|
|
} else {
|
|
throw new Error('Couldn\'t interpret current recording');
|
|
}
|
|
} catch(error: any) {
|
|
console.log(error);
|
|
}
|
|
};
|
|
|
|
export const getCurrentUrl = async (): Promise<string | null> => {
|
|
try {
|
|
const response = await axios.get(`${apiUrl}/record/active/url`);
|
|
if (response.status === 200) {
|
|
return response.data;
|
|
} else {
|
|
throw new Error('Couldn\'t retrieve stored recordings');
|
|
}
|
|
} catch(error: any) {
|
|
console.log(error);
|
|
return null;
|
|
}
|
|
};
|
|
|
|
export const getCurrentTabs = async (): Promise<string[] | null> => {
|
|
try {
|
|
const response = await axios.get(`${apiUrl}/record/active/tabs`);
|
|
if (response.status === 200) {
|
|
return response.data;
|
|
} else {
|
|
throw new Error('Couldn\'t retrieve stored recordings');
|
|
}
|
|
} catch(error: any) {
|
|
console.log(error);
|
|
return null;
|
|
}
|
|
};
|