mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
Fix spacing
This commit is contained in:
parent
d14e56f223
commit
8ee9bda37b
@ -1,6 +1,7 @@
|
|||||||
import alt from '../alt';
|
import alt from '../alt';
|
||||||
import PieceListFetcher from '../fetchers/piece_list_fetcher';
|
import PieceListFetcher from '../fetchers/piece_list_fetcher';
|
||||||
|
|
||||||
|
|
||||||
class PieceListActions {
|
class PieceListActions {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.generateActions(
|
this.generateActions(
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import alt from '../alt';
|
import alt from '../alt';
|
||||||
import UserFetcher from '../fetchers/user_fetcher';
|
import UserFetcher from '../fetchers/user_fetcher';
|
||||||
|
|
||||||
|
|
||||||
class UserActions {
|
class UserActions {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.generateActions(
|
this.generateActions(
|
||||||
|
@ -2,7 +2,6 @@ import React from 'react';
|
|||||||
import Router from 'react-router';
|
import Router from 'react-router';
|
||||||
import Header from '../components/header';
|
import Header from '../components/header';
|
||||||
|
|
||||||
|
|
||||||
let Link = Router.Link;
|
let Link = Router.Link;
|
||||||
let RouteHandler = Router.RouteHandler;
|
let RouteHandler = Router.RouteHandler;
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
|
|
||||||
let Piece = React.createClass({
|
let Piece = React.createClass({
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
|
@ -11,6 +11,7 @@ import TableItemText from './table_item_text';
|
|||||||
|
|
||||||
let Link = Router.Link;
|
let Link = Router.Link;
|
||||||
|
|
||||||
|
|
||||||
let PieceList = React.createClass({
|
let PieceList = React.createClass({
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
|
@ -3,6 +3,7 @@ import React from 'react';
|
|||||||
import TableItem from './table_item';
|
import TableItem from './table_item';
|
||||||
import TableHeader from './table_header';
|
import TableHeader from './table_header';
|
||||||
|
|
||||||
|
|
||||||
let Table = React.createClass({
|
let Table = React.createClass({
|
||||||
propTypes: {
|
propTypes: {
|
||||||
columnMap: React.PropTypes.object.isRequired
|
columnMap: React.PropTypes.object.isRequired
|
||||||
|
@ -3,6 +3,7 @@ import React from 'react';
|
|||||||
import TableColumnMixin from '../mixins/table_column_mixin';
|
import TableColumnMixin from '../mixins/table_column_mixin';
|
||||||
import GeneralUtils from '../utils/general_utils';
|
import GeneralUtils from '../utils/general_utils';
|
||||||
|
|
||||||
|
|
||||||
let TableHeader = React.createClass({
|
let TableHeader = React.createClass({
|
||||||
mixins: [TableColumnMixin],
|
mixins: [TableColumnMixin],
|
||||||
propTypes: {
|
propTypes: {
|
||||||
|
@ -4,6 +4,7 @@ import TableColumnMixin from '../mixins/table_column_mixin';
|
|||||||
import TableItemImg from './table_item_img';
|
import TableItemImg from './table_item_img';
|
||||||
import TableItemText from './table_item_text';
|
import TableItemText from './table_item_text';
|
||||||
|
|
||||||
|
|
||||||
let TableItem = React.createClass({
|
let TableItem = React.createClass({
|
||||||
mixins: [TableColumnMixin],
|
mixins: [TableColumnMixin],
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
|
|
||||||
let TableItemText = React.createClass({
|
let TableItemText = React.createClass({
|
||||||
propTypes: {
|
propTypes: {
|
||||||
content: React.PropTypes.string.isRequired
|
content: React.PropTypes.string.isRequired
|
||||||
|
@ -3,6 +3,7 @@ import fetch from 'isomorphic-fetch';
|
|||||||
import AppConstants from '../constants/application_constants';
|
import AppConstants from '../constants/application_constants';
|
||||||
import FetchApiUtils from '../utils/fetch_api_utils';
|
import FetchApiUtils from '../utils/fetch_api_utils';
|
||||||
|
|
||||||
|
|
||||||
let PieceListFetcher = {
|
let PieceListFetcher = {
|
||||||
/**
|
/**
|
||||||
* Fetches a list of pieces from the API.
|
* Fetches a list of pieces from the API.
|
||||||
|
@ -3,6 +3,7 @@ import fetch from 'isomorphic-fetch';
|
|||||||
import AppConstants from '../constants/application_constants';
|
import AppConstants from '../constants/application_constants';
|
||||||
import FetchApiUtils from '../utils/fetch_api_utils';
|
import FetchApiUtils from '../utils/fetch_api_utils';
|
||||||
|
|
||||||
|
|
||||||
let UserFetcher = {
|
let UserFetcher = {
|
||||||
/**
|
/**
|
||||||
* Fetch one user from the API.
|
* Fetch one user from the API.
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import GeneralUtils from '../utils/general_utils';
|
import GeneralUtils from '../utils/general_utils';
|
||||||
|
|
||||||
|
|
||||||
let TableColumnMixin = {
|
let TableColumnMixin = {
|
||||||
/**
|
/**
|
||||||
* Generates the bootstrap grid column declarations automatically using
|
* Generates the bootstrap grid column declarations automatically using
|
||||||
|
@ -7,6 +7,7 @@ import Piece from './components/piece';
|
|||||||
|
|
||||||
let Route = Router.Route;
|
let Route = Router.Route;
|
||||||
|
|
||||||
|
|
||||||
let routes = (
|
let routes = (
|
||||||
<Route name="app" path="/" handler={AscribeApp}>
|
<Route name="app" path="/" handler={AscribeApp}>
|
||||||
<Route name="pieces" handler={PieceList}>
|
<Route name="pieces" handler={PieceList}>
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import alt from '../alt';
|
import alt from '../alt';
|
||||||
import PieceListActions from '../actions/piece_list_actions';
|
import PieceListActions from '../actions/piece_list_actions';
|
||||||
|
|
||||||
|
|
||||||
class PieceListStore {
|
class PieceListStore {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.itemList = []; // rename this to pieceList after figuring out AltContainer transform
|
this.itemList = []; // rename this to pieceList after figuring out AltContainer transform
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import alt from '../alt';
|
import alt from '../alt';
|
||||||
import UserAction from '../actions/user_actions';
|
import UserAction from '../actions/user_actions';
|
||||||
|
|
||||||
|
|
||||||
class UserStore{
|
class UserStore{
|
||||||
constructor() {
|
constructor() {
|
||||||
this.currentUser = {}
|
this.currentUser = {}
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import GeneralUtils from './general_utils';
|
import GeneralUtils from './general_utils';
|
||||||
|
|
||||||
|
|
||||||
// TODO: Create Unittests that test all functions
|
// TODO: Create Unittests that test all functions
|
||||||
let FetchApiUtils = {
|
let FetchApiUtils = {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user