started adding the logic for RSS feeds, started storing metainfo and torrent files in database directly

This commit is contained in:
2018-01-05 23:02:54 -05:00
parent 7411638c95
commit 08b3a14576
3430 changed files with 85789 additions and 4299 deletions

View File

@@ -12,7 +12,7 @@ import {createStore} from 'redux';
import {Provider} from 'react-redux';
import reducer from './store/reducer';
//Menu and torrentlist imports
import TopMenu from './topMenu';
import TopMenu from './TopMenu/topMenu';
import BottomMenu from './BottomMenu/bottomMenu';
import LeftMenu from './leftMenu';
import TorrentList from './torrentlist';
@@ -47,10 +47,10 @@ class BasicLayout extends React.PureComponent {
super(props);
var layout = [
{i: 'a', x: 0, y: 0, w: 6, h: 1},
{i: 'b', x: 0, y: 1, w: 1, h: 7},
{i: 'c', x: 1, y: 1, w: 5, h: 3, minW: 5, minH: 3},
{i: 'd', x: 1, y: 2, w: 5, h: 4, minW: 5, minH: 1}
{i: 'a', x: 0, y: 0, w: 6, h: 1, static: true},
{i: 'b', x: 0, y: 1, w: 1, h: 9, static: true},
{i: 'c', x: 1, y: 1, w: 5, h: 5, minW: 5, minH: 3, static: true},
{i: 'd', x: 1, y: 6, w: 5, h: 4, minW: 5, minH: 1, static: true}
];
this.state = { layout };
}