diff --git a/app/assets/javascripts/orbitTimeline.js b/app/assets/javascripts/orbitTimeline.js index 0fc48c784..5eecb48c4 100644 --- a/app/assets/javascripts/orbitTimeline.js +++ b/app/assets/javascripts/orbitTimeline.js @@ -14,11 +14,17 @@ var orbitTimeline = function(dom){ t.dom.html(t.timelineHtml); $("div.scrollbar").hide(); t.constructTimeScale(function(timelineScale){ + console.log(timelineScale); $("#timeline_scale").html(timelineScale); + var totalyearwidth =timelineScale.find(".year").length * 100; + var totalul = 0; for(eve in t.events){ - t.makeBubble(t.events[eve]); + totalul = $("#scale_wrapper ul").length + $(".t_scale").width((totalul*350) + totalyearwidth); } + + $('.tinycanvas').tinyscrollbar({ axis: 'x'}); }); } this.constructTimeScale = function(callbackFn){ @@ -31,7 +37,8 @@ var orbitTimeline = function(dom){ var cur_mon = paper.created_at.substr(5,2); var cur_year = dt.getFullYear(); var cdt = paper.created_at.substr(0,7).replace("-",""); - var bubbleData = {"fulldate" : t.monthList[parseInt(cur_mon)] +", " + dt.getDate() + ", " + cur_year,"title":paper.title,"jtitle":journal.title,"coauthors":paper.coauthors,"abstract":paper.abstract,"timestamp":cdt} + var formname = (cur_mon.charAt(0) == "0"?cur_mon.charAt(1) : cur_mon) + var bubbleData = {"fulldate" : t.monthList[parseInt(formname)] +", " + dt.getDate() + ", " + cur_year,"title":paper.title,"jtitle":journal.title,"coauthors":paper.coauthors,"abstract":paper.abstract,"timestamp":cdt} t.events.push(bubbleData); if(cur_year != year){ year = cur_year; @@ -39,7 +46,8 @@ var orbitTimeline = function(dom){ } if(cur_mon != mon){ mon = cur_mon; - scale.append($("
"+t.monthList[parseInt(mon)]+"
")) + console.log(parseInt(cur_mon)); + scale.append($("
"+t.monthList[parseInt(formname)]+"
")) } }); }) diff --git a/app/assets/javascripts/orbitdesktop.js b/app/assets/javascripts/orbitdesktop.js index 66cb2a4e8..087ebfbd7 100755 --- a/app/assets/javascripts/orbitdesktop.js +++ b/app/assets/javascripts/orbitdesktop.js @@ -24,7 +24,7 @@ var orbitDesktop = function(dom){ this.transitionTime = 500; this.currenthtml = "desktop.html"; this.currentface = "home"; - this.desktopData = {"home":"","settings":"","work":"","favorite":"","apps_manager":"","sections":"","journal_p":"","appstore":"","orbit":"","books":""}; + this.desktopData = {"home":"","settings":"","work":"","favorite":"","apps_manager":"","sections":"","journal_p":"","appstore":"","orbit":""}; this.tp = ""; this.sectionList; this.initialize = function(){ @@ -916,7 +916,6 @@ var orbitDesktop = function(dom){ var bindHandlers = function(){ var timeline = new orbitTimeline("timeline"); timeline.initialize(); - $('.tinycanvas').tinyscrollbar({ axis: 'x'}); } if(!o.desktopData[o.currentface]){ $(o.contentHolder).empty().load("/desktop_orbit/"+target,function(){ @@ -1152,7 +1151,10 @@ var orbitDesktop = function(dom){ switch(tfunc){ case 'widgets': widgets(); - break; + break; + case 'onlinestore': + onlinestore(); + break; } $('.s_menu a').removeClass('thmc1 thmtxt active'); $(this).addClass('thmc1 thmtxt active'); @@ -1297,15 +1299,22 @@ var orbitDesktop = function(dom){ }) }) } + var onlinestore = function(){ + var bindHandlers = function(){ + } + $("div#apps_store div#panel_r").load("/desktop_appstore/onlinestore",function(){ + bindHandlers(); + }) + } if(!o.desktopData[o.currentface]){ $(o.contentHolder).empty().load("/desktop_appstore/"+target,function(){ - widgets(); + onlinestore(); bindHandlers(); }); }else{ $(o.contentHolder).html(o.desktopData[o.currentface]); - widgets(); + onlinestore(); bindHandlers(); } } @@ -1442,4 +1451,4 @@ orbitDesktop.prototype.currentLanguage = "en"; orbitDesktop.prototype.currentUsername = "Harry"; var uselessfunction = function(){ $.post("/desktop/temp_func",{sectionid:"4f83e7bbbd98eb041600001d"}); -} +} \ No newline at end of file diff --git a/app/controllers/desktop_appstore_controller.rb b/app/controllers/desktop_appstore_controller.rb index d05160c24..05701891d 100644 --- a/app/controllers/desktop_appstore_controller.rb +++ b/app/controllers/desktop_appstore_controller.rb @@ -8,6 +8,10 @@ class DesktopAppstoreController< ApplicationController render "desktop/appstore/widgets", :layout => false end + def onlinestore + render "desktop/appstore/onlinestore", :layout => false + end + def getuserwidgets @widgets = current_user.desktop.desktop_widgets @groups = Array.new diff --git a/app/controllers/desktop_publications_controller.rb b/app/controllers/desktop_publications_controller.rb index f0cbb808e..ca8921b58 100644 --- a/app/controllers/desktop_publications_controller.rb +++ b/app/controllers/desktop_publications_controller.rb @@ -11,20 +11,8 @@ class DesktopPublicationsController< ApplicationController render "desktop/journal_pages/add", :layout => false end - def books - render "desktop/books", :layout => false - end - - def books_list - render "desktop/books/list", :layout => false - end - - def books_add - render "desktop/books/add", :layout => false - end - def create_journal - Journal.create(user_id: current_user.id, title: "2012, Javascript") + Journal.create(user_id: current_user.id, title: "Google") b = Array.new b << {"success"=>"true"} render :json=>b.to_json @@ -39,4 +27,12 @@ class DesktopPublicationsController< ApplicationController end render :json=>data.to_json end + + def delete_journal + @journals = Journal.find("") + @journals.delete + b = Array.new + b << {"success"=>"true"} + render :json=>b.to_json + end end diff --git a/app/models/paper.rb b/app/models/paper.rb index 5e248a1dc..b085aaa71 100644 --- a/app/models/paper.rb +++ b/app/models/paper.rb @@ -7,6 +7,7 @@ class Paper field :abstract, default: "The concept of microstructure engineering has gained increasingly attention with the goal to quantitatively link the operational parameters of an industrial process to the properties of its product. The key component of this concept is to accurately model the microstructure evolution along the processing path. Modelling of recrystallization in Cuinterconnects will be presented as an example of a conventional process model. Further, the potential of developing next generation process models will be discussed by using models across different length and time scale. The multi-scale modelling approach will be illustrated with a case study for phase transformation in Fe-Mn alloys." field :level, default: "SCI" field :coauthors, default: "Allen, Shelly, Eric, Manson, Chris, Clara, Anna, Albee, Vincent, Devin, Chunchi, Ika, Jaoshua, Ray, Matt, Lin, Spen" + field :created_at, type: Date, default: ->{12.months.ago} belongs_to :journal diff --git a/app/views/desktop/appstore.html.erb b/app/views/desktop/appstore.html.erb index c92ac427b..ab83d9d93 100644 --- a/app/views/desktop/appstore.html.erb +++ b/app/views/desktop/appstore.html.erb @@ -10,7 +10,7 @@