Compare commits

..

No commits in common. "master" and "firefoxos-header" have entirely different histories.

39 changed files with 10010 additions and 22869 deletions

View File

@ -63,7 +63,7 @@ Version 2.0
- [x] Different views (List, Grid)
- [ ] Show storage usage statistics (free/used)
- [ ] Sort Files
- [x] Zip / Unzip
- [ ] Zip / Unzip
- [ ] Image Thumbnails
- [ ] FTP Browser
- [ ] Preferences

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,5 @@
{
"version": "1.2.0",
"version": "1.0.0",
"name": "Hawk",
"description": "Keep an eye on your files with a full-featured file manager",
"launch_path": "/index.html",
@ -30,9 +30,6 @@
"device-storage:music": {
"access": "readwrite",
"description": "We need access to your files in order to give you the functionality of listing, reading, opening and writing files in your storage"
},
"tcp-socket": {
"description": "FTP Browser: Used to connect to FTP servers"
}
},
"installs_allowed_from": [

View File

@ -490,11 +490,6 @@ nav i {
box-sizing: border-box;
background: #f8f8f8;
}
.toolbar button {
flex: 1;
width: auto;
background-position: center center;
}
.breadcrumb {
display: flex;
flex: 1;

Binary file not shown.

View File

@ -1,6 +1,6 @@
{
"name": "hawk",
"version": "1.2.0",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": {
@ -25,14 +25,7 @@
"node": ">=0.12.0"
},
"homepage": "https://github.com/mdibaiee/",
"dependencies": {
"jszip": "2.5.0",
"mime": "1.3.4",
"react": "15.0.0",
"react-dom": "15.0.0",
"react-hammerjs": "0.4.5",
"react-redux": "1.0.1"
},
"dependencies": {},
"devDependencies": {
"babel": "^5.8.23",
"babelify": "^6.2.0",
@ -49,7 +42,7 @@
"immutable": "^3.7.5",
"less-plugin-clean-css": "^1.5.1",
"lodash": "^3.10.1",
"react": "^15.0.0",
"react": "^0.13.3",
"react-redux": "^1.0.1",
"redux": "^1.0.1",
"redux-devtools": "^1.1.2",

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,15 +0,0 @@
import { COMPRESS, DECOMPRESS } from './types';
export function compress(file, name) {
return {
type: COMPRESS,
file, name
}
}
export function decompress(file) {
return {
type: DECOMPRESS,
file
}
}

View File

@ -9,9 +9,6 @@ const TYPES = {
REFRESH: Symbol('REFRESH'),
SORT: Symbol('SORT'),
COMPRESS: Symbol('COMPRESS'),
DECOMPRESS: Symbol('DECOMPRESS'),
NEW_FILE: Symbol('NEW_FILE'),
CREATE_FILE: Symbol('CREATE_FILE'),
SHARE_FILE: Symbol('SHARE_FILE'),

View File

@ -1,14 +0,0 @@
import * as ftp from './ftp';
import * as files from './files';
['getFile', 'children', 'isDirectory', 'readFile', 'writeFile',
'createFile', 'createDirectory', 'remove', 'move', 'copy'].forEach(method => {
exports[method] = (...args) => {
return window.ftpMode ? ftp[method](...args) : files[method](...args);
}
});
let CACHE = files.CACHE;
let FTP_CACHE = ftp.FTP_CACHE;
export { CACHE, FTP_CACHE };

View File

@ -34,14 +34,7 @@ export async function getFile(dir = '/') {
if (dir === '/' || !dir) return parent;
let file = await parent.get(normalize(dir));
Object.defineProperty(file, 'type', {
value: type(file),
enumerable: true
});
return file;
return await parent.get(normalize(dir));
}
export async function children(dir, gatherInfo) {
@ -51,32 +44,11 @@ export async function children(dir, gatherInfo) {
if (!parent.path) {
parent.path = dir.slice(0, dir.lastIndexOf('/') + 1);
}
if (parent.path.endsWith(parent.name)) {
Object.defineProperty(parent, 'path', {
value: normalize(parent.path.slice(0, -parent.name.length)),
enumerable: true
});
}
let childs = await parent.getFilesAndDirectories();
for (let child of childs) {
Object.defineProperty(child, 'type', {
value: type(child),
enumerable: true
});
if (child.path && child.path.endsWith(child.name)) {
Object.defineProperty(child, 'path', {
value: normalize(child.path.slice(0, -child.name.length)),
enumerable: true
});
}
}
if (gatherInfo && !window.needsShim) {
for (let child of childs) {
if (child.type === 'Directory') {
if (type(child) === 'Directory') {
let subchildren;
try {
subchildren = await shimDirectory(child).getFilesAndDirectories();
@ -98,12 +70,6 @@ export async function children(dir, gatherInfo) {
return childs;
}
export async function isDirectory(path) {
let file = await getFile(path);
return !(file instanceof Blob);
}
export async function readFile(path) {
let file = await getFile(path);
@ -119,73 +85,27 @@ export async function readFile(path) {
});
}
export async function writeFile(path, content) {
try {
let file = await getFile(path);
return Promise.reject(new Error('File already exists: ' + path));
} catch(e) {
export async function createFile(...args) {
let parent = await root();
return await parent.createFile(...args);
}
let request = sdcard().addNamed(content, path);
export async function createDirectory(...args) {
let parent = await root();
return new Promise((resolve, reject) => {
request.onsuccess = resolve;
request.onerror = reject;
request.onabort = reject;
});
}
export async function createFile(path = '') {
const parentPath = path.split('/').slice(0, -1).join('/');
let filename = path.slice(path.lastIndexOf('/') + 1);
let parent = await getFile(parentPath);
if (!parent.createFile) {
parent = await root();
filename = path;
}
CACHE[parentPath] = null;
return await parent.createFile(filename);
}
export async function createDirectory(path) {
const parentPath = path.split('/').slice(0, -1).join('/');
let filename = path.slice(path.lastIndexOf('/') + 1);
let parent = await getFile(parentPath);
if (!parent.createDirectory) {
parent = await root();
filename = path;
}
CACHE[parentPath] = null;
return parent.createDirectory(filename).then(() => {
return parent.createDirectory(...args).then(() => {
if (window.needsShim) {
return createFile(path + '/.empty');
return createFile(args[0] + '/.empty');
}
});
}
export async function remove(file, deep = true) {
// const method = deep ? 'removeDeep' : 'remove';
const method = 'removeDeep';
export async function remove(file, deep) {
let path = normalize(file);
const parentPath = path.split('/').slice(0, -1).join('/');
let filename = path.slice(path.lastIndexOf('/') + 1);
let parent = await getFile(parentPath);
let parent = await root();
if (!parent[method]) {
parent = await root();
filename = path;
}
CACHE[parentPath] = null;
return parent[method](filename);
return parent[deep ? 'removeDeep' : 'remove'](path);
}
export async function move(file, newPath) {
@ -227,6 +147,11 @@ export async function copy(file, newPath) {
let blob = new Blob([content], {type: target.type});
return writeFile(newPath, blob);
return new Promise((resolve, reject) => {
let request = sdcard().addNamed(blob, newPath);
request.onsuccess = resolve;
request.onerror = reject;
request.onabort = reject;
});
}
}

View File

@ -1,338 +0,0 @@
import { refresh } from 'actions/files-view';
import { bind } from 'store';
import EventEmitter from 'events';
import { humanSize, reportError, normalize, type, getLength } from 'utils';
export let FTP_CACHE = {};
let socket;
let connection = new EventEmitter();
connection.setMaxListeners(99);
export let queue = Object.assign([], EventEmitter.prototype);
export async function connect(properties = {}) {
let { host, port, username, password } = properties;
let url = encodeURI(host);
socket = navigator.mozTCPSocket.open(url, port);
socket.ondata = e => {
console.log('<', e.data);
connection.emit('data', e.data);
}
socket.onerror = e => {
connection.emit('error', e.data);
}
socket.onclose = e => {
connection.emit('close', e.data);
}
return new Promise((resolve, reject) => {
socket.onopen = () => {
send(`USER ${username}`);
send(`PASS ${password}`);
resolve(socket);
window.ftpMode = true;
}
socket.onerror = reject;
socket.onclose = reject;
});
}
export async function disconnect() {
socket.close();
window.ftpMode = false;
}
export function listen(ev, fn) {
socket.listen(ev, fn);
}
export function send(command, ...args) {
args = args.filter(arg => arg);
let cmd = command + (args.length ? ' ' : '') + args.join(' ');
console.log('>', cmd);
socket.send(cmd + '\n');
}
export async function cwd(dir = '') {
send('CWD', dir);
}
const PWD_REGEX = /257 "(.*)"/;
export async function pwd() {
return new Promise((resolve, reject) => {
connection.on('data', function listener(data) {
if (data.indexOf('current directory') === -1) return;
let dir = data.match(PWD_REGEX)[1];
resolve(normalize(dir));
connection.removeListener('data', listener);
});
send('PWD');
});
}
export async function pasv() {
return new Promise((resolve, reject) => {
connection.on('data', function listener(data) {
if (data.indexOf('Passive') === -1) return;
// format: |||port|
let port = parseInt(data.match(/\|{3}(\d+)\|/)[1]);
connection.removeListener('data', listener);
resolve(port);
});
send('EPSV');
});
}
const LIST_EXTRACTOR = /(.*?)\s+(\d+)\s+(\w+)\s+(\w+)\s+(\w+)\s+(\w+)\s+(\d+)\s+(\d+:?\d+)+\s+(.*)/;
export async function list(dir = '') {
let index = queue.push(port => {
return secondary({ host: socket.host, port }).then(({data}) => {
send('LIST', dir);
return data.then(items => {
return items.split('\n').map(item => {
if (item.indexOf('total') > -1 || !item) return;
let match = item.match(LIST_EXTRACTOR);
return {
path: normalize(dir + '/'),
type: match[1][0] === 'd' ? 'Directory' : 'File',
permissions: match[1].slice(1),
links: +match[2],
owner: match[3],
group: match[4],
size: +match[5],
lastModification: {
month: match[6],
day: match[7],
time: match[8]
},
name: match[9]
}
}).filter(item => item);
}, reportError)
});
});
return handleQueue(index - 1);
}
export async function namelist(dir = '') {
let index = queue.push(port => {
return secondary({ host: socket.host, port }).then(({data}) => {
send('NLST', dir);
return data.then(names => names.split('\n'), reportError);
});
});
return handleQueue(index - 1);
}
export async function secondary(properties = {}) {
let { host, port } = properties;
let url = encodeURI(host);
send('TYPE', 'I');
return new Promise((resolve, reject) => {
let alt = navigator.mozTCPSocket.open(url, port);
alt.onopen = e => {
let data = new Promise((resolve, reject) => {
let d = '';
alt.ondata = e => {
d += e.data;
}
alt.onerror = e => {
reject(e.data);
}
alt.onclose = e => {
console.log('<<', d);
resolve(d);
}
});
resolve({data});
}
})
}
const BUFFER_SIZE = 32000;
export async function secondaryWrite(properties = {}, content) {
let { host, port } = properties;
let url = encodeURI(host);
send('TYPE', 'I');
return new Promise((resolve, reject) => {
let alt = navigator.mozTCPSocket.open(url, port);
alt.onopen = () => {
console.log('>>', content);
let step = 0;
(function send() {
if (!content) return;
let chunk = content.slice(0, BUFFER_SIZE);
content = content.slice(BUFFER_SIZE);
if (alt.send(chunk)) {
send();
} else {
alt.ondrain = () => {
console.log('drain');
send();
}
}
}());
}
alt.onclose = () => {
resolve();
}
})
}
export async function children(dir = '', gatherInfo) {
dir = normalize(dir);
if (FTP_CACHE[dir]) return FTP_CACHE[dir];
let childs = gatherInfo ? await list(dir) : await namelist(dir);
FTP_CACHE[dir] = childs;
return childs;
}
export async function getFile(path = '') {
path = normalize(path);
let ls = await list(path);
return ls[0];
}
export async function isDirectory(path = '') {
return (await getFile(path)).type === 'Directory';
}
export async function readFile(path = '') {
path = normalize(path);
let index = queue.push(port => {
return secondary({ host: socket.host, port }).then(({data}) => {
send('RETR', path);
return data;
});
})
return handleQueue(index - 1);
}
export async function writeFile(path = '', content) {
let index;
path = normalize(path);
if (type(content) === 'Blob') {
let reader = new FileReader();
index = queue.push(port => {
return new Promise((resolve, reject) => {
reader.addEventListener('loadend', () => {
send('TYPE', 'I');
send('STOR', path);
secondaryWrite({ host: socket.host, port }, reader.result)
.then(resolve, reject);
});
reader.readAsBinaryString(content);
})
});
} else {
index = queue.push(port => {
send('STOR', path);
return secondaryWrite({ host: socket.host, port }, content);
});
}
return handleQueue(index - 1);
}
export async function createFile(path = '') {
return writeFile(path, '');
}
export async function createDirectory(path = '') {
path = normalize(path);
send('MKD', path);
}
export async function remove(path = '') {
path = normalize(path);
let ls = await list(path);
send('DELE', path);
send('DELE', path + '/*.*');
send('RMD', path);
}
export async function move(file, newPath = '') {
let path = normalize(file.path + file.name);
newPath = normalize(newPath);
send('RNFR', path);
send('RNTO', newPath);
}
export async function copy(file, newPath = '') {
let path = normalize(file.path + file.name);
newPath = normalize(newPath);
let content = await readFile(path);
console.log(content);
return writeFile(newPath, content);
}
const LOOP_INTERVAL = 100;
(function loopQueue() {
if (queue.length) {
pasv().then(queue[0]).then(result => {
queue.emit('done', {listener: queue[0], result});
queue.splice(0, 1);
loopQueue();
});
} else {
setTimeout(loopQueue, LOOP_INTERVAL);
}
}());
async function handleQueue(index) {
let fn = queue[index];
return new Promise(resolve => {
queue.on('done', ({listener, result}) => {
if (listener === fn) resolve(result);
});
});
}

View File

@ -1,9 +1,7 @@
import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import { connect } from 'react-redux';
import changedir from 'actions/changedir';
import { bind } from 'store';
import Hammer from 'react-hammerjs';
@connect(props)
export default class Breadcrumb extends Component {
@ -11,6 +9,7 @@ export default class Breadcrumb extends Component {
let els = [];
if (this.props.search) {
console.log('search');
els = [
<span key='000'>Search: {this.props.search}</span>
]
@ -26,9 +25,7 @@ export default class Breadcrumb extends Component {
let style = { zIndex: sumLength - index };
return (
<Hammer onTap={bind(changedir(path))} key={index}>
<span style={style}>{dir}</span>
</Hammer>
<span key={index} onClick={bind(changedir(path))} style={style}>{dir}</span>
);
}));
@ -40,11 +37,10 @@ export default class Breadcrumb extends Component {
let path = current.join('/').replace(/^\//, ''); // remove starting slash
let key = directories.length + index;
let style = { zIndex: arr.length - index};
console.log('history', dir)
return (
<Hammer onTap={bind(changedir(path))} key={key}>
<span className='history' style={style}>{dir}</span>
</Hammer>
<span key={key} className='history' onClick={bind(changedir(path))} style={style}>{dir}</span>
)
});
@ -62,7 +58,7 @@ export default class Breadcrumb extends Component {
}
componentDidUpdate() {
let container = this.refs.container;
let container = React.findDOMNode(this.refs.container);
let currents = container.querySelectorAll('span:not(.history)');
container.scrollLeft = currents[currents.length - 1].offsetLeft;

View File

@ -1,7 +1,5 @@
import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import { template } from 'utils';
import Hammer from 'react-hammerjs';
export default class Dialog extends Component {
render() {
@ -10,11 +8,10 @@ export default class Dialog extends Component {
let buttons = this.props.buttons.map((button, i) => {
return (
<Hammer onTap={button.action.bind(this)}>
<button className={button.className + ' btn'} key={i}>
<button className={button.className + ' btn'} key={i}
onClick={button.action.bind(this)}>
{button.text}
</button>
</Hammer>
)
});
@ -48,7 +45,7 @@ export default class Dialog extends Component {
componentDidUpdate() {
if (!this.props.value) return;
let input = this.refs.input;
let input = React.findDOMNode(this.refs.input);
input.value = this.props.value;
}

View File

@ -1,9 +1,7 @@
import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import changedir from 'actions/changedir';
import store from 'store';
import entry from './mixins/entry';
import Hammer from 'react-hammerjs';
export default class Directory extends Component {
constructor() {
@ -24,8 +22,8 @@ export default class Directory extends Component {
: this.peek.bind(this);
return (
<Hammer onTap={clickHandler}>
<div className='directory' ref='container'
onClick={clickHandler}
onContextMenu={this.contextMenu.bind(this)}>
{input}
@ -35,7 +33,6 @@ export default class Directory extends Component {
<p>{this.props.name}</p>
<span>{this.props.children ? this.props.children + ' items' : ''}</span>
</div>
</Hammer>
);
}
@ -44,7 +41,6 @@ export default class Directory extends Component {
let file = store.getState().get('files')[this.props.index];
const path = file.path.endsWith(file.name) ? file.path : file.path + file.name;
store.dispatch(changedir(path));
store.dispatch(changedir(file.path.replace(/^\//, '') + file.name));
}
}

View File

@ -1,11 +1,10 @@
import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import { connect } from 'react-redux';
import File from './file';
import Directory from './directory';
import store from 'store';
import { type } from 'utils';
import Hammer from 'react-hammerjs';
import Hammer from 'hammerjs';
import changedir from 'actions/changedir';
@connect(props)
@ -21,7 +20,7 @@ export default class FileList extends Component {
let els = files.map((file, index) => {
let selected = activeFile.indexOf(file) > -1;
if (file.type === 'File') {
if (type(file) === 'File') {
return <File selectView={selectView} selected={selected} key={index} index={index} name={file.name} size={file.size} type={file.type} />;
} else {
return <Directory selectView={selectView} selected={selected} key={index} index={index} name={file.name} children={file.children} type={file.type} />
@ -31,21 +30,24 @@ export default class FileList extends Component {
let className= `file-list ${view}`;
return (
<Hammer onSwipe={this.swipe} options={{ direction: Hammer.DIRECTION_RIGHT }}>
<div className={className} ref='container'>
{els}
</div>
</Hammer>
);
}
swipe(e) {
componentDidMount() {
let container = React.findDOMNode(this.refs.container);
let touch = Hammer(container);
touch.on('swipe', e => {
let current = store.getState().get('cwd');
let up = current.split('/').slice(0, -1).join('/');
if (up === current) return;
store.dispatch(changedir(up));
}).set({direction: Hammer.DIRECTION_RIGHT});
}
}
@ -57,3 +59,10 @@ function props(state) {
view: state.get('settings').view || 'list'
}
}
async function getFiles(dir) {
let storage = navigator.getDeviceStorage('sdcard');
let root = await storage.get(dir);
return await root.getFilesAndDirectories();
}

View File

@ -1,10 +1,7 @@
import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import store from 'store';
import { humanSize } from 'utils';
import entry from './mixins/entry';
import Hammer from 'react-hammerjs';
import mime from 'mime';
export default class File extends Component {
constructor() {
@ -25,8 +22,8 @@ export default class File extends Component {
: this.open.bind(this);
return (
<Hammer onTap={clickHandler}>
<div className='file' ref='container'
onClick={clickHandler}
onContextMenu={this.contextMenu.bind(this)}>
{input}
@ -36,7 +33,6 @@ export default class File extends Component {
<p>{this.props.name}</p>
<span>{humanSize(this.props.size)}</span>
</div>
</Hammer>
);
}
@ -45,13 +41,12 @@ export default class File extends Component {
let file = store.getState().get('files')[this.props.index];
const type = mime.lookup(file.name);
let name = type === 'application/pdf' ? 'view' : 'open';
let name = file.type === 'application/pdf' ? 'view' : 'open';
new MozActivity({
name,
data: {
blob: file,
type
type: file.type,
blob: file
}
})
}

View File

@ -1,11 +1,9 @@
import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import { toggle } from 'actions/navigation';
import { show } from 'actions/dialog';
import { search } from 'actions/files-view';
import { bind } from 'store';
import { connect } from 'react-redux';
import Hammer from 'react-hammerjs';
@connect(props)
export default class Header extends Component {
@ -13,22 +11,16 @@ export default class Header extends Component {
let i;
if (this.props.search) {
i = <Hammer onTap={bind(search())}>
<button><i className='icon-cross' /></button>
</Hammer>
i = <button onClick={bind(search())}><i className='icon-cross' /></button>
} else {
i = <Hammer onTap={bind(show('searchDialog'))}>
<button><i className='icon-search tour-item' /></button>
</Hammer>
i = <button onClick={bind(show('searchDialog'))}><i className='icon-search tour-item' /></button>
}
return (
<header>
<Hammer onTap={bind(toggle())}>
<button className='drawer tour-item'>
<button className='drawer tour-item' onTouchStart={bind(toggle())}>
<i className='icon-menu'></i>
</button>
</Hammer>
<h1>Hawk</h1>
{i}

View File

@ -1,6 +1,4 @@
import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import Hammer from 'react-hammerjs';
export const MENU_WIDTH = 245;
@ -13,11 +11,7 @@ export default class Menu extends Component {
let enabled = typeof item.enabled === 'function' ? item.enabled() : true
let className = enabled ? '' : 'disabled';
return (
<Hammer key={index} onTap={item.action.bind(this)}>
<li className={className}>{item.name}</li>
</Hammer>
);
return <li key={index} className={className} onClick={item.action.bind(this)}>{item.name}</li>
});
let className = 'menu ' + (active ? 'active' : '');

View File

@ -11,7 +11,7 @@ export default {
e.stopPropagation();
let file = store.getState().get('files')[this.props.index];
let rect = this.refs.container.getBoundingClientRect();
let rect = React.findDOMNode(this.refs.container).getBoundingClientRect();
let {x, y, width, height} = rect;
let left = window.innerWidth / 2 - MENU_WIDTH / 2,
@ -34,7 +34,7 @@ export default {
let current = (store.getState().get('activeFile') || []).slice(0);
let file = store.getState().get('files')[this.props.index];
let check = this.refs.check;
let check = React.findDOMNode(this.refs.check);
if (current.indexOf(file) > -1) {
current.splice(current.indexOf(file), 1);

View File

@ -1,5 +1,4 @@
import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import { connect } from 'react-redux';
import { hide as hideNavigation } from 'actions/navigation';
import camelCase from 'lodash/string/camelCase';
@ -70,6 +69,9 @@ export default class Navigation extends Component {
<input id='showDirectoriesFirst' type='checkbox' defaultChecked={settings.showDirectoriesFirst} />
<label htmlFor='showDirectoriesFirst'>Show Directories First</label>
</li>
<li className='coming-soon'>
<label>Advanced Preferences</label>
</li>
</ul>
<p>External</p>

View File

@ -1,5 +1,4 @@
import React, { Component } from 'react'
import ReactDOM from 'react-dom';
import FileList from 'components/file-list';
import Navigation from 'components/navigation';
import Header from 'components/header';
@ -11,7 +10,6 @@ import Spinner from 'components/spinner';
import { connect } from 'react-redux';
import { hideAll as hideAllMenus } from 'actions/menu';
import { hideAll as hideAllDialogs} from 'actions/dialog';
import Hammer from 'react-hammerjs';
import tour from 'tour';
import changedir from 'actions/changedir';
@ -29,13 +27,12 @@ let DeleteDialog = connect(state => state.get('deleteDialog'))(Dialog);
let ErrorDialog = connect(state => state.get('errorDialog'))(Dialog);
let CreateDialog = connect(state => state.get('createDialog'))(Dialog);
let SearchDialog = connect(state => state.get('searchDialog'))(Dialog);
let CompressDialog = connect(state => state.get('compressDialog'))(Dialog);
export default class Root extends Component {
render() {
return (
<Hammer onTap={this.onClick.bind(this)}>
<div onTouchStart={this.touchStart.bind(this)}>
<div onTouchStart={this.touchStart.bind(this)}
onClick={this.onClick.bind(this)}>
<Header />
<Breadcrumb />
<Navigation />
@ -50,7 +47,6 @@ export default class Root extends Component {
<ErrorDialog />
<CreateDialog />
<SearchDialog />
<CompressDialog />
<Spinner />
@ -61,7 +57,6 @@ export default class Root extends Component {
</div>
<button id='skip-tour'>Skip</button>
</div>
</Hammer>
);
}

View File

@ -1,5 +1,4 @@
import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import { connect } from 'react-redux';
@connect(props)

View File

@ -1,39 +1,26 @@
import React, { Component } from 'react';
import ReactDOM from 'react-dom';
import { refresh, selectView } from 'actions/files-view';
import { show as showDialog } from 'actions/dialog';
import { show as showMenu } from 'actions/menu';
import { active } from 'actions/file';
import settings from 'actions/settings';
import store, { bind } from 'store';
import { MENU_WIDTH } from './menu';
import Hammer from 'react-hammerjs';
export default class Toolbar extends Component {
render() {
return (
<div className='toolbar'>
<Hammer onTap={this.goUp}>
<button className='icon-back tour-item' />
</Hammer>
<Hammer onTap={this.newFile}>
<button className='icon-plus tour-item'/>
</Hammer>
<Hammer onTap={bind(refresh())}>
<button className='icon-refresh tour-item'/>
</Hammer>
<Hammer onTap={this.selectView}>
<button className='icon-select tour-item'/>
</Hammer>
<Hammer onTap={this.showMore.bind(this)}>
<button className='icon-more tour-item' ref='more'/>
</Hammer>
<button className='icon-back tour-item' onClick={this.goUp} />
<button className='icon-plus tour-item' onClick={this.newFile} />
<button className='icon-refresh tour-item' onClick={bind(refresh())} />
<button className='icon-select tour-item' onClick={bind(selectView('toggle'))} />
<button className='icon-more tour-item' onClick={this.showMore.bind(this)} ref='more' />
</div>
);
}
showMore() {
let rect = this.refs.more.getBoundingClientRect();
let rect = React.findDOMNode(this.refs.more).getBoundingClientRect();
let {x, y, width, height} = rect;
let left = x + width - MENU_WIDTH,
@ -52,11 +39,6 @@ export default class Toolbar extends Component {
store.dispatch(changedir(up));
}
selectView() {
store.dispatch(selectView('toggle'));
store.dispatch(active());
}
newFile() {
let cwd = store.getState().get('cwd');
let action = showDialog('createDialog', {

View File

@ -2,7 +2,6 @@ import React from 'react';
import { hide, hideAll, show } from 'actions/dialog';
import { rename, remove, create, active } from 'actions/file';
import { search } from 'actions/files-view';
import { compress } from 'actions/compress';
import store, { bind } from 'store';
const INVALID_NAME = 'Please enter a valid name.';
@ -17,7 +16,7 @@ export default {
{
text: 'File',
action() {
let input = this.refs.input;
let input = React.findDOMNode(this.refs.input);
if (!input.value) {
this.props.dispatch(hideAll());
@ -38,7 +37,7 @@ export default {
{
text: 'Directory',
action() {
let input = this.refs.input;
let input = React.findDOMNode(this.refs.input);
if (!input.value) {
this.props.dispatch(hideAll());
@ -59,7 +58,7 @@ export default {
{
text: 'Cancel',
action() {
let input = this.refs.input;
let input = React.findDOMNode(this.refs.input);
this.props.dispatch(hideAll());
input.value = '';
}
@ -74,7 +73,7 @@ export default {
{
text: 'Cancel',
action() {
let input = this.refs.input;
let input = React.findDOMNode(this.refs.input);
this.props.dispatch(hideAll());
input.value = '';
}
@ -82,7 +81,7 @@ export default {
{
text: 'Rename',
action() {
let input = this.refs.input;
let input = React.findDOMNode(this.refs.input);
if (!input.value) {
this.props.dispatch(hideAll());
@ -136,7 +135,7 @@ export default {
{
text: 'Cancel',
action() {
let input = this.refs.input;
let input = React.findDOMNode(this.refs.input);
this.props.dispatch(hideAll());
input.value = '';
}
@ -144,13 +143,12 @@ export default {
{
text: 'Search',
action() {
let input = this.refs.input;
let input = React.findDOMNode(this.refs.input);
if (!input.value) {
this.props.dispatch(hideAll());
this.props.dispatch(active());
this.props.dispatch(show('errorDialog',
{description: INVALID_SEARCH}));
this.props.dispatch(show('errorDialog', {description: INVALID_SEARCH}));
return;
}
@ -162,45 +160,5 @@ export default {
className: 'success'
}
]
},
compressDialog: {
title: 'Archive',
description: 'Enter your desired archive name',
input: true,
buttons: [
{
text: 'Cancel',
action() {
let input = this.refs.input;
this.props.dispatch(hideAll());
input.value = '';
}
},
{
text: 'Create',
action() {
let input = this.refs.input;
if (!input.value) {
this.props.dispatch(hideAll());
this.props.dispatch(active());
this.props.dispatch(show('errorDialog',
{description: INVALID_NAME}));
return;
}
if (input.value.slice(-4) !== '.zip') {
input.value += '.zip';
}
let activeFile = store.getState().get('activeFile');
this.props.dispatch(compress(activeFile, input.value))
this.props.dispatch(hideAll());
this.props.dispatch(active());
input.value = '';
},
className: 'success'
}
]
}
}

View File

@ -1,22 +1,8 @@
import React from 'react';
import ReactDOM from 'react-dom';
import * as ftp from 'api/ftp';
import Root from 'components/root';
import store from 'store';
import { Provider } from 'react-redux';
import './activities';
ftp.connect({
host: '192.168.1.5',
port: 21,
username: 'mahdi',
password: 'heater0!'
}).then(socket => {
window.socket = socket;
window.ftp = ftp;
}, console.error.bind(console))
let wrapper = document.getElementById('wrapper');
ReactDOM.render(<Provider store={store}>
<Root />
</Provider>, wrapper);
React.render(<Provider store={store}>{() => <Root />}</Provider>, wrapper);

View File

@ -2,7 +2,6 @@ import { hideAll } from 'actions/menu';
import { show } from 'actions/dialog';
import { selectView } from 'actions/files-view';
import { copy, move } from 'actions/file';
import { compress, decompress } from 'actions/compress';
import store from 'store';
const entryMenu = {
@ -65,27 +64,6 @@ const entryMenu = {
blob
});
}
},
{
name: 'Extract',
enabled() {
let active = store.getState().get('activeFile');
return active && active[0].name.slice(-4) === '.zip';
},
action() {
let active = store.getState().get('activeFile');
store.dispatch(decompress(active));
store.dispatch(hideAll());
}
},
{
name: 'Archive',
action() {
store.dispatch(hideAll());
store.dispatch(show('compressDialog'));
}
}
]
};
@ -164,13 +142,6 @@ const moreMenu = {
})
}
},
{
name: 'Archive',
action() {
store.dispatch(hideAll());
store.dispatch(show('compressDialog'));
}
}
]
}

View File

@ -1,4 +1,4 @@
import { ACTIVE_FILE, SELECT_VIEW } from 'actions/types';
import { ACTIVE_FILE } from 'actions/types';
export default function(state = null, action) {
if (action.type === ACTIVE_FILE) {

View File

@ -32,7 +32,6 @@ export default function(state = new Immutable.Map(), action) {
deleteDialog: dialog(state, action, 'deleteDialog'),
errorDialog: dialog(state, action, 'errorDialog'),
createDialog: dialog(state, action, 'createDialog'),
searchDialog: dialog(state, action, 'searchDialog'),
compressDialog: dialog(state, action, 'compressDialog')
searchDialog: dialog(state, action, 'searchDialog')
});
}

View File

@ -1,5 +1,5 @@
import { CHANGE_DIRECTORY, REFRESH, SETTINGS } from 'actions/types';
import { children, CACHE, FTP_CACHE } from 'api/auto';
import { children, CACHE } from 'api/files';
import store from 'store';
import { reportError, normalize } from 'utils';
import { listFiles } from 'actions/files-view';
@ -13,7 +13,6 @@ export default function(state = '', action) {
if (action.type === REFRESH) {
CACHE[state] = null;
FTP_CACHE[state] = null;
}
if (action.type === REFRESH || action.type === SETTINGS) {

View File

@ -1,10 +1,9 @@
import { LIST_FILES, RENAME_FILE, DELETE_FILE, CREATE_FILE, MOVE_FILE, COPY_FILE, SEARCH, COMPRESS, DECOMPRESS } from 'actions/types';
import zip from 'jszip';
import { LIST_FILES, RENAME_FILE, DELETE_FILE, CREATE_FILE, MOVE_FILE, COPY_FILE, SEARCH } from 'actions/types';
import { refresh } from 'actions/files-view';
import * as auto from 'api/auto';
import { move, remove, sdcard, createFile, createDirectory, copy } from 'api/files';
import { show } from 'actions/dialog';
import store, { bind } from 'store';
import { reportError, type, normalize } from 'utils';
import { reportError, type } from 'utils';
let boundRefresh = bind(refresh());
@ -39,7 +38,7 @@ export default function(state = [], action) {
}
if (action.type === CREATE_FILE) {
let fn = action.directory ? auto.createDirectory : auto.createFile;
let fn = action.directory ? createDirectory : createFile;
fn(action.path).then(boundRefresh, reportError);
return state;
@ -48,7 +47,7 @@ export default function(state = [], action) {
if (action.type === RENAME_FILE) {
let all = Promise.all(action.file.map(file => {
let cwd = store.getState().get('cwd');
return auto.move(file, cwd + '/' + action.name);
return move(file, cwd + '/' + action.name);
}));
all.then(boundRefresh, reportError);
@ -57,7 +56,7 @@ export default function(state = [], action) {
if (action.type === MOVE_FILE) {
let all = Promise.all(action.file.map(file => {
return auto.move(file, action.newPath + '/' + file.name);
return move(file, action.newPath + '/' + file.name);
}));
all.then(boundRefresh, reportError);
@ -66,7 +65,7 @@ export default function(state = [], action) {
if (action.type === COPY_FILE) {
let all = Promise.all(action.file.map(file => {
return auto.copy(file, action.newPath + '/' + file.name);
return copy(file, action.newPath + '/' + file.name);
}));
all.then(boundRefresh, reportError);
@ -75,71 +74,17 @@ export default function(state = [], action) {
if (action.type === DELETE_FILE) {
let all = Promise.all(action.file.map(file => {
let path = normalize((file.path || '') + file.name);
return auto.remove(path, true);
let path = ((file.path || '') + file.name).replace(/^\//, '');
return remove(path, true);
}))
all.then(boundRefresh, reportError);
return state;
}
if (action.type === COMPRESS) {
let archive = new zip();
let cwd = store.getState().get('cwd');
let all = Promise.all(action.file.map(function addFile(file) {
let path = normalize((file.path || '') + file.name);
let archivePath = path.slice(cwd.length);
// directory
console.log(file);
if (file.type === 'Directory') {
let folder = archive.folder(file.name);
return auto.children(path).then(files => {
files = files.filter(file => file);
return Promise.all(files.map(child => {
return addFile(child);
}));
});
}
return auto.readFile(path).then(content => {
archive.file(archivePath, content);
});
}))
all.then(() => {
let blob = archive.generate({ type: 'blob' });
let cwd = store.getState().get('cwd');
let path = normalize(cwd + '/' + action.name);
return auto.writeFile(path, blob);
}).then(boundRefresh).catch(reportError);
return state;
}
if (action.type === DECOMPRESS) {
let file = action.file[0];
let path = normalize((file.path || '') + file.name);
auto.readFile(path).then(content => {
let archive = new zip(content);
let files = Object.keys(archive.files);
let all = Promise.all(files.map(name => {
let buffer = archive.files[name].asArrayBuffer();
let blob = new Blob([buffer]);
let cwd = store.getState().get('cwd');
let filePath = normalize(cwd + '/' + name);
return auto.writeFile(filePath, blob);
}));
all.then(boundRefresh, reportError);
});
}
return state;
function mov(file, newPath) {
return
}

View File

@ -2,7 +2,7 @@ import { SEARCH, CHANGE_DIRECTORY, REFRESH } from 'actions/types';
import store from 'store';
import { reportError } from 'utils';
import { listFiles } from 'actions/files-view';
import { children } from 'api/auto';
import { children } from 'api/files';
import { type, normalize } from 'utils';
export default function(state = '', action) {

View File

@ -27,8 +27,7 @@ export function getKey(object = store.getState().toJS(), key) {
export function reportError(err) {
console.error(err);
let msg = err.message || err.target.error.message;
let action = show('errorDialog', {description: msg});
let action = show('errorDialog', {description: err.message});
store.dispatch(action);
}
@ -51,17 +50,3 @@ export function humanSize(size) {
}
}
}
export function getLength(string) {
var byteLen = 0;
for (var i = 0; i < string.length; i++) {
var c = string.charCodeAt(i);
byteLen += c < (1 << 7) ? 1 :
c < (1 << 11) ? 2 :
c < (1 << 16) ? 3 :
c < (1 << 21) ? 4 :
c < (1 << 26) ? 5 :
c < (1 << 31) ? 6 : Number.NaN;
}
return byteLen;
}

View File

@ -11,10 +11,4 @@
box-sizing: border-box;
background: @light-gray;
button {
flex: 1;
width: auto;
background-position: center center;
}
}

View File

@ -1,5 +1,5 @@
{
"version": "1.2.0",
"version": "1.0.0",
"name": "Hawk",
"description": "Keep an eye on your files with a full-featured file manager",
"launch_path": "/index.html",
@ -30,9 +30,6 @@
"device-storage:music": {
"access": "readwrite",
"description": "We need access to your files in order to give you the functionality of listing, reading, opening and writing files in your storage"
},
"tcp-socket": {
"description": "FTP Browser: Used to connect to FTP servers"
}
},
"installs_allowed_from": [