Files
P42_UI/app/models/KeyframesModel.js
T
2025-10-25 20:23:43 +00:00

28 lines
829 B
JavaScript

class KeyframesModel extends WindozModel {
constructor() {
super()
this.ressource = '/keyframes'
}
async save(data) {
const kfData = Object.keys(data).map(aid => {
const { position, speed, ...storeValues} = data[aid].values
return({
aid: aid,
storeValues: storeValues,
gpsValues: { position: data[aid].values.position, speed: data[aid].values.speed }
})
})
let endpoint = {...app.config.api[this.ressource].getTypes}
endpoint.uri = endpoint.uri.replace('{family}', data.kfId || '')
const aid = Object.keys(x)[data]
return (
this.request(endpoint.uri, endpoint.method, kfData)
)
}
}
app.registerClass('KeyframesModel', KeyframesModel);