mirror of https://github.com/apache/archiva.git
refresh artifacts view after deletion
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1354857 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
128399c7dd
commit
4abbc91050
|
@ -278,7 +278,7 @@ define("search",["jquery","i18n","jquery.tmpl","choosen","order!knockout","knock
|
||||||
artifactDownloadInfosUrl+="/"+encodeURIComponent(self.artifactId)+"/"+encodeURIComponent(self.version);
|
artifactDownloadInfosUrl+="/"+encodeURIComponent(self.artifactId)+"/"+encodeURIComponent(self.version);
|
||||||
artifactDownloadInfosUrl+="?repositoryId="+encodeURIComponent(getSelectedBrowsingRepository());
|
artifactDownloadInfosUrl+="?repositoryId="+encodeURIComponent(getSelectedBrowsingRepository());
|
||||||
$.get(artifactDownloadInfosUrl,function(data){
|
$.get(artifactDownloadInfosUrl,function(data){
|
||||||
var artifactDetailsDownloadViewModel = new ArtifactDetailsDownloadViewModel(mapArtifacts(data));
|
var artifactDetailsDownloadViewModel = new ArtifactDetailsDownloadViewModel(mapArtifacts(data),self);
|
||||||
mainContent.find("#artifact-details-download-content" ).attr("data-bind",'template:{name:"artifact-details-download-content_tmpl"}');
|
mainContent.find("#artifact-details-download-content" ).attr("data-bind",'template:{name:"artifact-details-download-content_tmpl"}');
|
||||||
ko.applyBindings(artifactDetailsDownloadViewModel,mainContent.find("#artifact-details-download-content" ).get(0));
|
ko.applyBindings(artifactDetailsDownloadViewModel,mainContent.find("#artifact-details-download-content" ).get(0));
|
||||||
});
|
});
|
||||||
|
@ -387,8 +387,9 @@ define("search",["jquery","i18n","jquery.tmpl","choosen","order!knockout","knock
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ArtifactDetailsDownloadViewModel=function(artifacts){
|
ArtifactDetailsDownloadViewModel=function(artifacts, artifactVersionDetailViewModel){
|
||||||
this.artifacts=ko.observableArray(artifacts);
|
this.artifacts=ko.observableArray(artifacts);
|
||||||
|
this.artifactVersionDetailViewModel=artifactVersionDetailViewModel;
|
||||||
var self=this;
|
var self=this;
|
||||||
deleteArtifact=function(artifact){
|
deleteArtifact=function(artifact){
|
||||||
|
|
||||||
|
@ -404,6 +405,14 @@ define("search",["jquery","i18n","jquery.tmpl","choosen","order!knockout","knock
|
||||||
success:function(data){
|
success:function(data){
|
||||||
self.artifacts.remove(artifact);
|
self.artifacts.remove(artifact);
|
||||||
displaySuccessMessage( $.i18n.prop('artifact.deleted'));
|
displaySuccessMessage( $.i18n.prop('artifact.deleted'));
|
||||||
|
// reload datas from server
|
||||||
|
var artifactDownloadInfosUrl = "restServices/archivaServices/browseService/artifactDownloadInfos/"+encodeURIComponent(self.artifactVersionDetailViewModel.groupId);
|
||||||
|
artifactDownloadInfosUrl+="/"+encodeURIComponent(self.artifactVersionDetailViewModel.artifactId)+"/"+encodeURIComponent(self.artifactVersionDetailViewModel.version);
|
||||||
|
artifactDownloadInfosUrl+="?repositoryId="+encodeURIComponent(getSelectedBrowsingRepository());
|
||||||
|
$.get(artifactDownloadInfosUrl,function(data){
|
||||||
|
self.artifacts(mapArtifacts(data));
|
||||||
|
});
|
||||||
|
|
||||||
},
|
},
|
||||||
error:function(data){
|
error:function(data){
|
||||||
displayRestError(data,"user-messages");
|
displayRestError(data,"user-messages");
|
||||||
|
|
Loading…
Reference in New Issue