This commit is contained in:
arussac
2025-02-12 10:50:28 +01:00
parent 522e5db91e
commit bd4b1ddd2e
5 changed files with 46 additions and 22 deletions

View File

@@ -2,6 +2,7 @@ async function PopulateSelect(mySelect, id) {
let data = [];
if (mySelect.name == "videos" && id != null) {
data = await getDataProjectVideosFromApi(id);
console.log(data)
const selectObjDefault = document.createElement("option");
selectObjDefault.value = -1;
selectObjDefault.innerHTML = "Default";

View File

@@ -74,25 +74,42 @@ async function getDataVideoFromApi(id) {
async function postNewVideo(project_id, measurements_id, name_video, resolution, duration) {
try {
const measures = JSON.stringify(measurements_id);
const mydata = JSON.stringify({
project_id: project_id,
measurement_ids: measures, // Ensure this matches the expected field name
name: name_video,
resolution: resolution,
duration: duration
});
console.log(mydata);
const response = await $.ajax({
url: api_url.concat(`/videos/`),
method: "POST",
dataType: "json",
contentType: "application/json", // Specify the content type as JSON
data: JSON.stringify({
project_id: project_id,
measurements_id: measurements_id,
name_video: name_video,
resolution: resolution,
duration: duration
})
contentType: "application/json",
data: mydata
});
// If the request is successful, store the data in the cache and return it
console.log("Video posted successfully:", response);
return response;
} catch (error) {
console.error("Error posting video:", error);
throw error; // Re-throw the error to handle it outside the function if needed
throw error;
}
}
async function getVideoFromApi(id) {
try {
const response = await $.ajax({
url: api_url.concat(`/videos/${id}`),
method: "GET",
dataType: "json",
});
// If the request is successful, store the data in the cache and return it
return response;
} catch (error) {
console.error("Error fetching data:", error);
throw error; // Re-throw the error to handle it outside the function if needed
}
}

View File

@@ -1,9 +1,9 @@
function convertStringToArray(inputString) {
// Split the string by the delimiter '/'
const stringArray = inputString.split(",");
function convertStringToArray(string) {
console.log(string)
const numberStrings = string.replace(/[{}]/g, '').split(',');
// Convert each element to a number
const numberArray = stringArray.map(Number);
// Trim whitespace and convert the string numbers to integers
const numberArray = numberStrings.map(num => parseInt(num.trim(), 10));
return numberArray;
}