subjectPostInitialState.js 1.06 KB
 /**
 * # sunbjectPostInitialState.js
 *
 *
 */
'use strict';
/**
 * ## Import immutable record
 */
import Immutable, {List, Record} from 'immutable';

let InitialState = Record({

    isContentFetching: false,
    contentError: null,
    isCommentsFetching: false,
    commentsError: null,

    authorInfo: new (Record({
        headIcon: '',
        nickName: '',
        uid: 0,
        url: ''
	})),
    blocks: List(),//   contentData  order templateKey
    browse: 0,
    createTime: 0,
    forumCode: 0,
    forumName: '',
    id: 0,
    isForumTop: false,
    isHot: false,
    isIndexTop: false,
    postsTitle: '',
    praise: 0,
    praiseUsers: List(),//headIcon  nickName  uid
    shareGoods: new(Record({
        productName: '',
        productUrl: '',
        salesPrice: 0,
        goodsImage: '',
    })),
    publishTimeString: '',
    shareProductSkn: 0,
    LZ: false,//楼主
    lastedTime: 0,
    totalPages: 0,
    currentPage: 0,
    commentCount: 0,
    commentList: List(),//

    assets: List(),//回复里面的图片。
});

export default InitialState;