mirror of
https://github.com/haiwen/seahub.git
synced 2025-07-07 04:00:06 +00:00
77 lines
2.1 KiB
JavaScript
77 lines
2.1 KiB
JavaScript
define([
|
|
'jquery',
|
|
'underscore',
|
|
'backbone',
|
|
'common',
|
|
'app/views/myhome-repos',
|
|
'app/views/myhome-shared-repos',
|
|
'app/views/starred-file',
|
|
'app/views/devices',
|
|
'app/views/activities'
|
|
], function($, _, Backbone, Common, ReposView,
|
|
SharedReposView, StarredFileView, DevicesView, ActivitiesView) {
|
|
'use strict';
|
|
|
|
var MyHomeView = Backbone.View.extend({
|
|
el: '#main',
|
|
|
|
initialize: function(options) {
|
|
this.reposView = new ReposView();
|
|
this.sharedReposView = new SharedReposView();
|
|
this.starredFileView = new StarredFileView();
|
|
this.devicesView = new DevicesView();
|
|
this.activitiesView = new ActivitiesView();
|
|
|
|
this.dirView = options.dirView;
|
|
|
|
this.currentView = this.reposView;
|
|
|
|
$('#initial-loading-view').hide();
|
|
},
|
|
|
|
showMyRepos: function() {
|
|
this.currentView.hide();
|
|
this.reposView.show();
|
|
this.currentView = this.reposView;
|
|
},
|
|
|
|
showSharedRepos: function() {
|
|
this.currentView.hide();
|
|
this.sharedReposView.show();
|
|
this.currentView = this.sharedReposView;
|
|
},
|
|
|
|
showStarredFile: function() {
|
|
this.currentView.hide();
|
|
this.starredFileView.show();
|
|
this.currentView = this.starredFileView;
|
|
},
|
|
|
|
showDevices: function() {
|
|
this.currentView.hide();
|
|
this.devicesView.show();
|
|
this.currentView = this.devicesView;
|
|
},
|
|
|
|
showActivities: function() {
|
|
this.currentView.hide();
|
|
this.activitiesView.show();
|
|
this.currentView = this.activitiesView;
|
|
},
|
|
|
|
showDir: function(category, repo_id, path) {
|
|
var path = path || '/';
|
|
this.currentView.hide();
|
|
this.dirView.showDir(category, repo_id, path);
|
|
this.currentView = this.dirView;
|
|
},
|
|
|
|
hide: function() {
|
|
this.currentView.hide();
|
|
}
|
|
|
|
});
|
|
|
|
return MyHomeView;
|
|
});
|