improvement (UI): make the UI behave

This commit is contained in:
Mickael KERJEAN
2018-03-26 10:16:42 +11:00
parent ac8a9dbd26
commit 15cf85f752
15 changed files with 341 additions and 2293 deletions

View File

@ -0,0 +1,90 @@
import React from 'react';
import PropTypes from 'prop-types';
import { Container, Icon, NgIf } from './';
import './audio.scss';
export class Audio extends React.Component {
constructor(props){
super(props);
this.state = {
percent: 0,
state: 'play'
};
}
componentDidMount(){
requestAnimationFrame(() => {
if(this.state.state === 'play'){
if(this.state.percent < 100){
this.setState({percent: this.state.percent + 0.1}, this.componentDidMount);
}else{
this.setState({percent: 0}, this.componentDidMount);
}
}
});
}
onStateChange(new_state){
this.setState({state: new_state});
}
render(){
return (
<div className="component_audio">
<Container maxWidth={700}>
<div style={{display: 'flex'}}>
<Control state={this.state.state} onPlay={this.onStateChange.bind(this, 'play')} onPause={this.onStateChange.bind(this, 'pause')}/>
<Progress purcent={this.state.percent} />
<Volume />
<TrackInfo name="Cloudkicker - Let Yourself Be Huge - Explore, be curious" />
</div>
</Container>
</div>
);
}
}
const Volume = (props) => {
return (
<div className="component_volume">
VOLUME
<div className="volume-controller-wrapper">
<div className="volume-controller">s</div>
</div>
</div>
);
}
const Control = (props) => {
return (
<div className="component_control">
<NgIf cond={props.state === 'pause'} type="inline">
<Icon name="play" onClick={props.onPlay}/>
</NgIf>
<NgIf cond={props.state === 'play'} type="inline">
<Icon name="pause" onClick={props.onPause}/>
</NgIf>
</div>
);
}
const Progress = (props) => {
return (
<div className="component_progress">
<div className="placeholder"></div>
<div className="progress-bar" style={{width: props.purcent+"%"}}></div>
</div>
);
}
const TrackInfo = (props) => {
return (
<div className="component_trackinfo">
<div>
{props.name}
</div>
</div>
);
}

View File

@ -0,0 +1,60 @@
.component_audio{
position: absolute;
left: 0;
right: 0;
background: var(--super-light);
height: 40px;
bottom: 0;
border-top: 1px solid #e2e2e2;
}
.component_progress{
width: 300px;
margin-top: 9px;
margin-left: 10px;
.placeholder{
width: 100%;
height: 2px;
background: #dadada;
}
.progress-bar{
height: 2px;
background: var(--primary);
position: relative;
top: -2px;
}
}
.component_control{
.component_icon {
height: 18px;
}
}
.component_trackinfo{
width: 300px;
overflow: hidden;
white-space: nowrap;
margin-left: 10px;
color: var(--light);
}
.component_volume{
position: relative;
.volume-controller-wrapper{
display: block;
position: absolute;
top: -150px;
}
.volume-controller{
height: 150px;
width: 20px;
background: var(--super-light);
border: 1px solid #e2e2e2;
}
&:hover{
.volume-controller-wrapper{display: block;}
}
}

View File

@ -16,6 +16,8 @@ export { Bundle } from './bundle';
export { Modal } from './modal';
export { Prompt } from './prompt';
export { Alert } from './alert';
export { Audio } from './audio';
export { Video } from './video';
//export { Connect } from './connect';
// Those are commented because they will delivered as a separate chunk
// export { Editor } from './editor';

View File

@ -0,0 +1,27 @@
import React from 'react';
import PropTypes from 'prop-types';
import { Icon, NgIf } from './';
import './video.scss';
export class Video extends React.Component {
constructor(props){
super(props);
}
render(){
return (
<div className="component_video">
<div className="loader">
<Icon name="loading"/>
</div>
</div>
);
}
}
// <video autoPlay="true" width="300" height="200">
// <source src="https://www.w3schools.com/tags/movie.mp4" type="video/mp4" />
// </video>

View File

@ -0,0 +1,15 @@
.component_video{
position: fixed;
bottom: 10px;
right: 10px;
width: 300px;
height: 200px;
background: var(--super-light);
border: 1px solid #e2e2e2;
border-radius: 2px;
.loader{
text-align: center;
margin-top: 30px;
}
}

View File

@ -44,7 +44,7 @@ Data.prototype._vacuum = function(){
/*
* Fetch a record using its path, can be whether a file path or content
*/
Data.prototype.get = function(type, path, _should_update = true){
Data.prototype.get = function(type, path, _record_access = true){
if(type !== this.FILE_PATH && type !== this.FILE_CONTENT) return Promise.reject({});
return this.db.then((db) => {
const tx = db.transaction(type, "readwrite");
@ -52,15 +52,13 @@ Data.prototype.get = function(type, path, _should_update = true){
const query = store.get(path);
return new Promise((done, error) => {
query.onsuccess = (e) => {
let data = query.result || null;
done(data);
if(data && _should_update === true){
requestAnimationFrame(() => {
data.last_access = new Date();
if(!data.access_count) data.access_count = 0;
data.access_count += 1;
this.put(type, data.path, data);
});
let data = query.result;
done(query.result || null);
if(data && _record_access === true){
data.last_access = new Date();
if(!data.access_count) data.access_count = 0;
data.access_count += 1;
this.put(type, data.path, data);
}
};
tx.onerror = error;
@ -80,7 +78,6 @@ Data.prototype.put = function(type, path, data){
new_data.path = path;
}else{
new_data = Object.assign(res, data);
new_data.last_update = new Date();
}
return this.db.then((db) => {
@ -115,7 +112,7 @@ Data.prototype.remove = function(type, path, exact = true){
request.onsuccess = function(event) {
const cursor = event.target.result;
if(cursor){
if(cursor.value.path.indexOf(path) === 0){
if(cursor.value.path.indexOf(path) === 0 && path !== cursor.value.path){
store.delete(cursor.value.path);
}
cursor.continue();
@ -181,4 +178,13 @@ Data.prototype.destroy = function(){
export const cache = new Data();
window.test = cache;
window._cache = cache;
_cache._debug = () => {
window._cache.update_path((e) => window.log("- path: "+e.path, e.results.slice(0,5).map((f) => {
if(f.type === 'directory'){ f.name = "d:"+f.name;} else{ f.name = "f:"+f.name;}
if(f.icon === 'loading') return "("+f.name+")";
else if(f.icon === 'error') return "_"+f.name+"_";
return f.name;
})));
}

View File

@ -4,7 +4,7 @@ export { debounce, throttle } from './backpressure';
export { encrypt, decrypt } from './crypto';
export { event } from './events';
export { cache } from './cache';
export { pathBuilder } from './path';
export { pathBuilder, basename, dirname } from './path';
export { memory } from './memory';
export { prepare } from './navigate';
export { invalidate, http_get, http_post, http_delete } from './ajax';

View File

@ -8,3 +8,13 @@ export function pathBuilder(path, filename, type = 'file'){
return tmp + '/';
}
}
export function basename(path){
return Path.basename(path);
}
export function dirname(path){
const dir = Path.dirname(path);
if(dir === '/') return dir;
return dir + "/";
}

View File

@ -1,6 +1,6 @@
"use strict";
import { http_get, http_post, prepare } from '../helpers/';
import { http_get, http_post, prepare, basename, dirname } from '../helpers/';
import Path from 'path';
import { Observable } from 'rxjs/Observable';
@ -18,19 +18,20 @@ class FileSystem{
return Observable.create((obs) => {
this.obs = obs;
this._ls_from_cache(path);
let keep_pulling_from_http = false;
const fetch_from_http = (_path) => {
return this._ls_from_http(_path)
.then(() => new Promise((done, err) => {
window.setTimeout(() => done(), 2000);
}))
.then(() => {
return keep_pulling_from_http === true? fetch_from_http(_path) : Promise.resolve();
});
};
fetch_from_http(path);
let keep_pulling_from_http = true;
this._ls_from_cache(path, true)
.then(() => {
const fetch_from_http = (_path) => {
return this._ls_from_http(_path)
.then(() => new Promise((done, err) => {
window.setTimeout(() => done(), 2000);
}))
.then(() => {
return keep_pulling_from_http === true? fetch_from_http(_path) : Promise.resolve();
});
};
fetch_from_http(path);
});
return () => {
keep_pulling_from_http = false;
@ -43,7 +44,10 @@ class FileSystem{
return http_get(url).then((response) => {
return cache.get(cache.FILE_PATH, path, false).then((_files) => {
if(_files && _files.results){
let _files_virtual_to_keep = _files.results.filter((file) => file.icon === 'loading');
let _files_virtual_to_keep = _files.results.filter((file) => {
return file.icon === 'loading' &&
(new Date()).getTime() - file._timestamp < 1000*60*60;
});
// update file results
for(let i=0; i<_files_virtual_to_keep.length; i++){
for(let j=0; j<response.results.length; j++){
@ -67,8 +71,8 @@ class FileSystem{
console.log(_err);
});
}
_ls_from_cache(path){
return cache.get(cache.FILE_PATH, path).then((_files) => {
_ls_from_cache(path, _record_access = false){
return cache.get(cache.FILE_PATH, path, _record_access).then((_files) => {
if(_files && _files.results){
if(this.current_path === path){
this.obs && this.obs.next(_files.results);
@ -80,15 +84,15 @@ class FileSystem{
rm(path){
const url = '/api/files/rm?path='+prepare(path);
this._replace(path, 'loading');
return http_get(url)
this._replace(path, 'loading')
.then(() => http_get(url))
.then((res) => {
if(res.status === 'ok'){
this._remove(path);
cache.remove(cache.FILE_CONTENT, path, false);
cache.remove(cache.FILE_PATH, Path.dirname(path) + "/", false);
cache.remove(cache.FILE_PATH, dirname(path), false);
return this._remove(path);
}else{
this._replace(path, 'error');
return this._replace(path, 'error');
}
});
}
@ -115,59 +119,53 @@ class FileSystem{
const url = '/api/files/cat?path='+prepare(path);
let formData = new window.FormData();
formData.append('file', file);
this._replace(path, 'loading');
cache.put(cache.FILE_CONTENT, path, file);
return http_post(url, formData, 'multipart')
.then((res)=> {
res.status === 'ok'? this._replace(path) : this._replace(path, 'error');
return Promise.resolve(res);
});
return this._replace(path, 'loading')
.then(() => cache.put(cache.FILE_CONTENT, path, file))
.then(() => http_post(url, formData, 'multipart'))
.then((res)=> res.status === 'ok'? this._replace(path) : this._replace(path, 'error'));
}
mkdir(path){
const url = '/api/files/mkdir?path='+prepare(path);
this._add(path, 'loading');
cache.remove(cache.FILE_PATH, Path.dirname(path) + "/");
return http_get(url)
.then((res) => {
return res.status === 'ok'? this._replace(path) : this._replace(path, 'error');
});
this._add(path, 'loading')
.then(() => this._add(path, 'loading'))
.then(() => http_get(url))
.then((res) => res.status === 'ok'? this._replace(path) : this._replace(path, 'error'));
}
touch(path, file){
this._add(path, 'loading');
let req;
if(file){
const url = '/api/files/cat?path='+prepare(path);
let formData = new window.FormData();
formData.append('file', file);
req = http_post(url, formData, 'multipart');
}else{
const url = '/api/files/touch?path='+prepare(path);
req = http_get(url);
}
return req
.then((res) => {
return res.status === 'ok'? this._replace(path) : this._replace(path, 'error');
});
this._add(path, 'loading')
.then(() => {
if(file){
const url = '/api/files/cat?path='+prepare(path);
let formData = new window.FormData();
formData.append('file', file);
return http_post(url, formData, 'multipart');
}else{
const url = '/api/files/touch?path='+prepare(path);
return http_get(url);
}
})
.then((res) => res.status === 'ok'? this._replace(path) : this._replace(path, 'error'));
}
mv(from, to){
const url = '/api/files/mv?from='+prepare(from)+"&to="+prepare(to);
ui_before_request(from, to)
.then(() => this._ls_from_cache(Path.dirname(from)+"/"))
.then(() => this._ls_from_cache(dirname(from)))
.then(() => this._ls_from_cache(dirname(to)))
.then(() => http_get(url)
.then((res) => {
if(res.status === 'ok'){
ui_when_success(from, to)
.then(() => this._ls_from_cache(Path.dirname(from)+"/"));
return ui_when_success.call(this, from, to)
.then(() => this._ls_from_cache(dirname(from)))
.then(() => this._ls_from_cache(dirname(to)));
}else{
ui_when_fail(from, to)
.then(() => this._ls_from_cache(Path.dirname(from)+"/"));
return ui_when_fail.call(this, from, to)
.then(() => this._ls_from_cache(dirname(from)))
.then(() => this._ls_from_cache(dirname(to)));
}
return Promise.resolve(res);
}));
function ui_before_request(from, to){
@ -180,26 +178,27 @@ class FileSystem{
});
function update_from(){
return cache.get(cache.FILE_PATH, Path.dirname(from)+"/", false)
return cache.get(cache.FILE_PATH, dirname(from), false)
.then((res_from) => {
let _file = {name: Path.basename(from), type: /\/$/.test(from) ? 'directory' : 'file'};
let _file = {name: basename(from), type: /\/$/.test(from) ? 'directory' : 'file'};
res_from.results = res_from.results.map((file) => {
if(file.name === Path.basename(from)){
file.name = Path.basename(to);
if(file.name === basename(from)){
file.name = basename(to);
file.icon = 'loading';
file._timestamp = (new Date()).getTime();
_file = file;
}
return file;
});
return cache.put(cache.FILE_PATH, Path.dirname(from)+"/", res_from)
return cache.put(cache.FILE_PATH, dirname(from), res_from)
.then(() => Promise.resolve(_file));
});
}
function update_to(file){
return cache.get(cache.FILE_PATH, Path.dirname(to)+"/", false).then((res_to) => {
return cache.get(cache.FILE_PATH, dirname(to), false).then((res_to) => {
if(!res_to || !res_to.results) return Promise.resolve();
res_to.results.push(file);
return cache.put(cache.FILE_PATH, Path.dirname(to)+"/", res_to);
return cache.put(cache.FILE_PATH, dirname(to), res_to);
});
}
}
@ -213,38 +212,37 @@ class FileSystem{
});
function update_from(){
return cache.get(cache.FILE_PATH, Path.dirname(from)+"/", false)
return cache.get(cache.FILE_PATH, dirname(from), false)
.then((res_from) => {
if(!res_from || !res_from.results) return Promise.reject();
res_from.results = res_from.results.map((file) => {
if(file.name === Path.basename(from)){
if(file.name === basename(from)){
file.icon = 'error';
}
return file;
});
return cache.put(cache.FILE_PATH, Path.dirname(from)+"/", res_from)
return cache.put(cache.FILE_PATH, dirname(from), res_from)
.then(() => Promise.resolve());
});
}
function update_to(){
return cache.get(cache.FILE_PATH, Path.dirname(to)+"/", false)
return cache.get(cache.FILE_PATH, dirname(to), false)
.then((res_to) => {
if(!res_to || !res_to.results) return Promise.resolve();
res_to.results = res_to.results.filter((file) => {
if(file.name === Path.basename(to)){
if(file.name === basename(to)){
return false;
}
return true;
});
return cache.put(cache.FILE_PATH, Path.dirname(from)+"/", res_to);
});
return cache.put(cache.FILE_PATH, dirname(from), res_to);
});
}
}
function ui_when_success(from, to){
if(Path.dirname(from) === Path.dirname(to)){
this._replace(Path.dirname(from)+"/"+Path.basename(to), null);
return Promise.resolve();
return this._replace(dirname(from)+basename(to), null);
}else{
return update_from()
.then(update_to)
@ -252,35 +250,35 @@ class FileSystem{
}
function update_from(){
return cache.get(cache.FILE_PATH, Path.dirname(from)+"/", false).then((res_from) => {
return cache.get(cache.FILE_PATH, dirname(from), false).then((res_from) => {
if(!res_from || !res_from.results) return Promise.resolve();
res_from.results = res_from.results.filter((file) => {
if(file.name === Path.basename(to)){
if(file.name === basename(to)){
return false;
}
return true;
});
return cache.put(cache.FILE_PATH, Path.dirname(from)+"/", res_from);
return cache.put(cache.FILE_PATH, dirname(from), res_from);
});
}
function update_to(){
return cache.get(cache.FILE_PATH, Path.dirname(to)+"/", false).then((res_to) => {
return cache.get(cache.FILE_PATH, dirname(to), false).then((res_to) => {
const target_already_exist = res_to && res_to.results ? true : false;
if(target_already_exist){
res_to.results = res_to.results.map((file) => {
if(file.name === Path.basename(to)){
if(file.name === basename(to)){
delete file.icon;
}
return file;
});
return cache.put(cache.FILE_PATH, Path.dirname(to)+"/", res_to);
return cache.put(cache.FILE_PATH, dirname(to), res_to);
}else{
const data = {results: [{
name: Path.basename(to),
name: basename(to),
type: /\/$/.test(to) ? 'directory' : 'file',
time: (new Date()).getTime()
}]};
return cache.put(cache.FILE_PATH, Path.dirname(to)+"/", data);
return cache.put(cache.FILE_PATH, dirname(to), data);
}
});
}
@ -302,55 +300,53 @@ class FileSystem{
}
_replace(path, icon){
return cache.get(cache.FILE_PATH, Path.dirname(path) + "/", false)
return cache.get(cache.FILE_PATH, dirname(path), false)
.then((res) => {
if(!res) return Promise.resolve();
let files = res.results.map((file) => {
if(file.name === Path.basename(path)){
if(!icon) delete file.icon;
if(icon) file.icon = icon;
if(file.name === basename(path)){
if(!icon){
delete file.icon;
delete file._timestamp;
}
if(icon){
file.icon = icon;
file._timestamp = (new Date()).getTime();
}
}
return file;
});
res.results = files;
return cache.put(cache.FILE_PATH, Path.dirname(path) + "/", res)
.then((res) => {
this._ls_from_cache(Path.dirname(path)+"/");
return Promise.resolve(res);
});
return cache.put(cache.FILE_PATH, dirname(path), res)
.then((res) => this._ls_from_cache(Path.dirname(path)+"/"));
});
}
_add(path, icon){
return cache.get(cache.FILE_PATH, Path.dirname(path) + "/", false)
return cache.get(cache.FILE_PATH, dirname(path), false)
.then((res) => {
if(!res) return Promise.resolve();
let file = {
name: Path.basename(path),
name: basename(path),
type: /\/$/.test(path) ? 'directory' : 'file',
_timestamp: (new Date()).getTime()
};
if(icon) file.icon = icon;
res.results.push(file);
return cache.put(cache.FILE_PATH, Path.dirname(path) + "/", res)
.then((res) => {
this._ls_from_cache(Path.dirname(path)+"/");
return Promise.resolve(res);
});
return cache.put(cache.FILE_PATH, dirname(path), res)
.then((res) => this._ls_from_cache(Path.dirname(path)+"/"));
});
}
_remove(path){
return cache.get(cache.FILE_PATH, Path.dirname(path) + "/", false)
return cache.get(cache.FILE_PATH, dirname(path), false)
.then((res) => {
if(!res) return Promise.resolve();
let files = res.results.filter((file) => {
return file.name === Path.basename(path) ? false : true;
return file.name === basename(path) ? false : true;
});
res.results = files;
return cache.put(cache.FILE_PATH, Path.dirname(path) + "/", res)
.then((res) => {
this._ls_from_cache(Path.dirname(path)+"/");
return Promise.resolve(res);
});
return cache.put(cache.FILE_PATH, dirname(path), res)
.then((res) => this._ls_from_cache(Path.dirname(path)+"/"));
});
}
}

View File

@ -33,6 +33,7 @@ export class NewThing extends React.Component {
e.preventDefault();
if(this.state.name !== null){
this.props.emit('file.create', pathBuilder(this.props.path, this.state.name, this.state.type), this.state.type);
this.onDelete();
}
}

View File

@ -2,19 +2,7 @@ import React from 'react';
import { BrowserRouter, Route, IndexRoute, Switch } from 'react-router-dom';
import { NotFoundPage, ConnectPage, HomePage, LogoutPage, FilesPage, ViewerPage } from './pages/';
import { Bundle, URL_HOME, URL_FILES, URL_VIEWER, URL_LOGIN, URL_LOGOUT } from './helpers/';
// import {FilesPage} from './pages/filespage';
// import {ViewerPage} from './pages/viewerpage';
// const FilesPage = (props) => (
// <Bundle loader={import(/* webpackChunkName: "route" */ "./pages/filespage")} symbol="FilesPage">
// {(Comp) => <Comp {...props}/>}
// </Bundle>
// );
// const ViewerPage = (props) => (
// <Bundle loader={import(/* webpackChunkName: "route" */"./pages/viewerpage")} symbol="ViewerPage">
// {(Comp) => <Comp {...props}/>}
// </Bundle>
// );
import { Audio, Video } from './components/';
export default class AppRouter extends React.Component {
render() {

2147
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -20,6 +20,7 @@
"aws-sdk": "^2.59.0",
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.3",
"crypto": "0.0.3",
"express": "^4.15.3",
"express-winston": "^2.4.0",
@ -36,8 +37,7 @@
"ssh2-sftp-client": "^1.1.0",
"stream-to-string": "^1.1.0",
"string-to-stream": "^1.1.0",
"cors": "^2.8.3",
"webdav-fs": "^1.0.0",
"webdav-fs": "^1.10.1",
"winston": "^2.3.1",
"winston-couchdb": "^0.6.3"
},

View File

@ -83,7 +83,7 @@ app.get('/mv', function(req, res){
if(from && to){
Files.mv(from, to, req.cookies.auth)
.then((message) => {
res.send({status: 'ok', result: message})
res.send({status: 'ok'})
})
.catch((err) => {
res.send({status: 'error', message: err.message || 'couldn\'t rename your file', trace: err})
@ -115,7 +115,7 @@ app.get('/mkdir', function(req, res){
if(path){
Files.mkdir(path, req.cookies.auth)
.then((message) => {
res.send({status: 'ok', result: message})
res.send({status: 'ok'})
})
.catch((err) => {
res.send({status: 'error', message: err.message || 'couldn\'t create a directory', trace: err})
@ -130,7 +130,7 @@ app.get('/touch', function(req, res){
if(path){
Files.touch(path, req.cookies.auth)
.then((message) => {
res.send({status: 'ok', result: message})
res.send({status: 'ok'})
})
.catch((err) => {
res.send({status: 'error', message: err.message || 'couldn\'t create a file', trace: err})

View File

@ -23,8 +23,8 @@ module.exports = {
test: function(params){
return new Promise((done, err) => {
connect(params).readFile('/', function(error, res){
if(error){ err(error) }
else{ done(params) }
if(error){ err(error); }
else{ done(params); }
});
});
},
@ -81,8 +81,8 @@ module.exports = {
path = encode(path);
return new Promise((done, err) => {
connect(params).unlink(path, function (error) {
if(error){ err(error) }
else{ done('ok') }
if(error){ err(error); }
else{ done('ok'); }
});
});
},
@ -91,8 +91,8 @@ module.exports = {
to = encode(to);
return new Promise((done, err) => {
connect(params).rename(from, to, function (error) {
if(error){ err(error) }
else{ done('ok') }
if(error){ err(error); }
else{ done('ok'); }
});
});
},