Display the actor panel without using the zippy.
[armadillo.git] / web_frontend / file.js
1 //
2 // Armadillo File Manager
3 // Copyright (c) 2010, Robert Sesek <http://www.bluestatic.org>
4 //
5 // This program is free software: you can redistribute it and/or modify it under
6 // the terms of the GNU General Public License as published by the Free Software
7 // Foundation, either version 3 of the License, or any later version.
8 //
9
10 goog.provide('armadillo.File');
11
12 goog.require('armadillo.Actor');
13 goog.require('goog.Disposable');
14 goog.require('goog.dom');
15 goog.require('goog.ui.AnimatedZippy');
16
17 /**
18 * A file in a directory listing.
19 * @param {string} File name.
20 * @param {string} The path the file resides at.
21 * @constructor
22 */
23 armadillo.File = function(name, path) {
24 goog.Disposable.call(this);
25 this.name_ = name;
26 this.path_ = path;
27 this.highlight_ = '';
28 this.isDirectory_ = app.isDirectory(name);
29 this.actor_ = new armadillo.Actor(this);
30 this.zippy_ = null;
31 };
32 goog.inherits(armadillo.File, goog.Disposable);
33
34 armadillo.File.Highlight = {
35 NONE : '',
36 SELECTED : 'file-selected',
37 ACTIVE : 'file-active'
38 };
39
40 /**
41 * Disposer
42 * @protected
43 */
44 armadillo.File.prototype.disposeInternal = function() {
45 armadillo.File.superClass_.disposeInternal.call(this);
46 this.element_ = null;
47 this.link_ = null;
48 goog.events.unlistenByKey(this.linkListener_);
49 goog.events.unlistenByKey(this.actorListener_);
50 this.actor_.dispose();
51 if (this.zippy_)
52 this.zippy_.dispose();
53 };
54
55 /**
56 * Returns the name of the file.
57 * @returns string
58 */
59 armadillo.File.prototype.getName = function() {
60 return this.name_;
61 };
62
63 /**
64 * Returns the path the file without the name. This is equivalent to calling
65 * dirname on the absolute path.
66 * @returns string
67 */
68 armadillo.File.prototype.getParentPath = function() {
69 return this.path_;
70 };
71
72 /**
73 * Gets the fully qualified path of the file, from the root of the jail to the
74 * name of the file.
75 * @returns string
76 */
77 armadillo.File.prototype.getFullPath = function() {
78 return this.path_ + this.name_;
79 };
80
81 /**
82 * Returns whether or not this is a directory.
83 * @returns boolean
84 */
85 armadillo.File.prototype.isDirectory = function() {
86 return this.isDirectory_;
87 };
88
89 /**
90 * Sets the highlight state.
91 */
92 armadillo.File.prototype.setHighlight = function(h) {
93 /*
94 // TODO: enable.
95 goog.dom.classes.addRemove(this.element_, this.highlight_, h);
96 this.highlight_ = h;
97 */
98 };
99
100 /**
101 * Constructs the Elements that make up the UI.
102 * @returns {Element} An element ready for insertion into DOM.
103 */
104 armadillo.File.prototype.draw = function() {
105 // Create the element if it does not exist. If it does, remove all children.
106 if (!this.element_) {
107 this.element_ = goog.dom.createElement('li');
108 this.element_.representedObject = this;
109 var handler = (this.isSpecial_() ? this.clickHandler_ : this.actorHandler_);
110 this.actorListener_ = goog.events.listen(this.element_,
111 goog.events.EventType.CLICK, handler, false, this);
112 }
113 goog.dom.removeChildren(this.element_);
114
115 // Set the name of the entry.
116 if (this.isDirectory()) {
117 this.link_ = goog.dom.createDom('a', null, this.name_);
118 this.linkListener_ = goog.events.listen(this.link_,
119 goog.events.EventType.CLICK, this.clickHandler_, false, this);
120 goog.dom.appendChild(this.element_, this.link_);
121 } else {
122 goog.dom.setTextContent(this.element_, this.name_);
123 }
124
125 return this.element_;
126 };
127
128 /**
129 * Deletes the given file in the backend by sending a request. On return, it
130 * will re-query the directory.
131 */
132 armadillo.File.prototype.remove = function() {
133 var file = this;
134 var callback = function(data) {
135 if (data['error']) {
136 app.showError(data['message']);
137 return;
138 } else {
139 app.clearError();
140 }
141 app.list(file.path_);
142 };
143 app.sendRequest('remove', {'path':this.path_ + this.name_}, callback);
144 };
145
146 /**
147 * Moves a file from one absolute path to another. On success, it will navigate
148 * to the new path.
149 * @param {string} dest The destination path.
150 */
151 armadillo.File.prototype.move = function(dest) {
152 var file = this;
153 var callback = function(data) {
154 if (data['error']) {
155 app.showError(data['message']);
156 } else {
157 app.clearError();
158 app.list(app.stripLastPathComponent(dest));
159 }
160 };
161 app.sendRequest('move', {'source':this.getFullPath(), 'target':dest}, callback);
162 };
163
164 /**
165 * Click handler for the link element; only for directories.
166 * @param {Event} e
167 */
168 armadillo.File.prototype.clickHandler_ = function(e) {
169 if (this.isDirectory_) {
170 app.navigate(this.name_);
171 }
172 e.stopPropagation();
173 };
174
175 /**
176 * Click handler for the row, which brings up the Actor interface.
177 * @param {Event} e
178 */
179 armadillo.File.prototype.actorHandler_ = function(e) {
180 e.stopPropagation();
181 if (!this.actor_.isInDocument())
182 this.actor_.render(this.element_);
183 if (false && !this.zippy_)
184 this.zippy_ = new goog.ui.AnimatedZippy(this.element_,
185 this.actor_.getElement(), false);
186 // this.zippy_.toggle();
187 };
188
189 /**
190 * Returns TRUE if this File is not a real file, but a special kind.
191 * @returns boolean
192 */
193 armadillo.File.prototype.isSpecial_ = function() {
194 return this.name_ == '../';
195 };