Sample State - R-S-W/Resound GitHub Wiki

For Song Page

{
    entities:{
        users:{
            1: {
                id:1,
                username:'RayWu1',
                email: '[email protected]',
                song_ids: [1]
            }
        },
        songs:{
            1: {
                id:1,
                name: 'My First Song',
                length: 129,
                info: 'Man, this song is fire.  Hope you all enjoy!',
                album_id: 'The 2nd Album',
                artist_id:1,
                genre: future-retro
                comment_ids: [2,3]
            }
        },
        comments:{
            2: {
                id:1,
                content:'Cool song!',
                user_id:2,
                song_id:1
	    },
	    3:{
                id:2
                content: 'THIS IS TRASH',
                user_id:3,
                song_id: 1
            }
        },
        albums:{
	    1:{
		id:1,
		name: 'The 2nd Album'
                song_ids: [1]
	    }
	},
    },
    ui:{
	comment_modal:true/false,
	searchbar_modal: true/false

	},
    errors:{
	login: ['Please try again, invalid login'],
	comment:['Your comment cannot be empty or whitespace'],
    },
    session: {currentUserId: 67}
}