Files
parcer/src/api/recording.ts

40 lines
1.0 KiB
TypeScript
Raw Normal View History

2024-06-09 01:06:04 +05:30
import { AxiosResponse } from "axios";
const axios = require('axios').default;
export const startRecording = async() : Promise<string> => {
try {
const response = await axios.get('http://localhost:8080/record/start')
if (response.status === 200) {
return response.data;
} else {
throw new Error('Couldn\'t start recording');
}
} catch(error: any) {
return '';
}
};
2024-06-09 01:06:22 +05:30
export const stopRecording = async (id: string): Promise<void> => {
await axios.get(`http://localhost:8080/record/stop/${id}`)
.then((response : AxiosResponse<boolean>) => {
})
.catch((error: any) => {
});
};
2024-06-09 01:06:38 +05:30
export const getActiveBrowserId = async(): Promise<string> => {
try {
const response = await axios.get('http://localhost:8080/record/active');
if (response.status === 200) {
return response.data;
} else {
throw new Error('Couldn\'t get active browser');
}
} catch(error: any) {
return '';
}
};