brandInitialState.js 670 Bytes
'use strict';

import {Record, List, Map} from 'immutable';

let InitialState = Record({
	brandFliter: 0,
	channelFliter:0,
	brandListForBoy: new (Record({
		all_list: Map(),
		hot_list: List(),
		new_list: List(),
	})),
	brandListForGirl: new (Record({
		all_list: Map(),
		hot_list: List(),
		new_list: List(),
	})),
	brandListForKid: new (Record({
		all_list: Map(),
		hot_list: List(),
		new_list: List(),
	})),
	brandListForLifeStyle: new (Record({
		all_list: Map(),
		hot_list: List(),
		new_list: List(),
	})),
	reourceForBoy: new (Record({
		bannerForBoy: Map(),
		custom_brandsForBoy: Map(),
		brandsTextForBoy: List(),
	})),
});

export default InitialState;