performance for when not logged in

simple style updates
This commit is contained in:
nelsonlaquet 2013-08-31 21:28:45 -05:00
parent 2d43bf64af
commit 018e880508
6 changed files with 11 additions and 6 deletions

View file

@ -39,7 +39,7 @@
$page = Input::get('page');
$query = Playlist::summary()
->with('user', 'user.avatar', 'tracks', 'tracks.cover')
->with('user', 'user.avatar', 'tracks', 'tracks.cover', 'tracks.user', 'tracks.album', 'tracks.album.user')
->userDetails()
->orderBy('created_at', 'desc')
->where('track_count', '>', 0)

View file

@ -99,7 +99,7 @@
'is_favourited' => false
];
if ($album->users->count()) {
if (Auth::check() && $album->users->count()) {
$userRow = $album->users[0];
$userData = [
'stats' => [

View file

@ -71,7 +71,7 @@
'is_favourited' => false
];
if ($playlist->users->count()) {
if (Auth::check() && $playlist->users->count()) {
$userRow = $playlist->users[0];
$userData = [
'stats' => [

View file

@ -136,7 +136,7 @@
'is_favourited' => false
];
if ($track->users->count()) {
if (Auth::check() && $track->users->count()) {
$userRow = $track->users[0];
$userData = [
'stats' => [

View file

@ -10,7 +10,7 @@
@yield('styles')
</head>
<body ng-app="ponyfm" ng-controller="application">
<body ng-app="ponyfm" ng-controller="application" class="{{Auth::check() ? 'is-logged' : ''}}">
@yield('content')
@yield('scripts')
</body>

View file

@ -1,8 +1,13 @@
@import-once 'variables';
@import-once 'mixins';
body.is-logged {
.track-player {
margin-right: 75px;
}
}
.track-player {
margin-right: 75px;
padding: 10px;
.image {