Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 18 additions & 10 deletions js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -841,30 +841,38 @@ function uploadApp(app, options) {
if (appJSON) {
device.appsInstalled.push(appJSON);
}
showToast(app.name + ' Uploaded!', 'success');
showToast(formatAppName(app)+ ' Uploaded!', 'success');
}).catch(err => {
showToast('Upload failed, ' + err, 'error');
showToast("Upload of" +formatAppName(app)+" failed", + err, 'error');
});
}));
}

/** Format app name into a string like App Name (AppID)*/
function formatAppName(app){
//check if id is the same as the name, in which case we can just return the name...
if(app.name.trim().toLowerCase()===app.id.trim().toLowerCase()){
return app.name;
}else{
return formatAppName(app);
}
}
/** Prompt user and then remove app from the device */
function removeApp(app) {
return showPrompt("Delete","Really remove '"+app.name+"'?")
return showPrompt("Delete", "Are you sure you want to delete "+formatAppName(app)+"?")
.then(() => startOperation({ name: "Remove App" }, () => getInstalledApps()
.then(()=> Comms.removeApp(device.appsInstalled.find(a => a.id === app.id))) // a = from appid.info, app = from apps.json
.then(()=>{
device.appsInstalled = device.appsInstalled.filter(a=>a.id!=app.id);
showToast(app.name+" removed successfully","success");
showToast(formatAppName(app)+" removed successfully","success");
}, err=>{
showToast(app.name+" removal failed, "+err,"error");
showToast("Removal of "+formatAppName(app)+" failed, "+err,"error");
})));
}

/** Show window for a new app and finally upload it */
function customApp(app) {
return handleCustomApp(app).then(() => {
showToast(app.name+" Uploaded!", "success");
showToast(formatAppName()+" Uploaded!", "success");
refreshMyApps();
refreshLibrary();
}).catch(err => {
Expand Down Expand Up @@ -952,13 +960,13 @@ function updateApp(app, options) {
remove.data = AppInfo.makeDataString(data)
return Comms.removeApp(remove, {containsFileList:true, noReset:options.noReset, noFinish:options.noFinish});
}).then(()=>{
showToast(`Updating ${app.name}...`);
showToast("Updating "+formatAppName(app)+"...");
device.appsInstalled = device.appsInstalled.filter(a=>a.id!=app.id);
return checkDependencies(app,{checkForClashes:false});
}).then(()=>Comms.uploadApp(app,{device:device,language:LANGUAGE,noReset:options.noReset, noFinish:options.noFinish})
).then((appJSON) => {
if (appJSON) device.appsInstalled.push(appJSON);
showToast(app.name+" Updated!", "success");
showToast(formatAppName(app)+" Updated!", "success");
}));
}

Expand Down Expand Up @@ -1162,7 +1170,7 @@ function installMultipleApps(appIds, promptName) {
}).then(()=> Comms.setTime()
).then(()=> Comms.showUploadFinished()
).then(()=>{
showToast("Apps successfully installed!","success");
showToast(appCount+" apps successfully installed!","success");
return getInstalledApps(true);
});
}
Expand Down