98 lines
2.4 KiB
C++
98 lines
2.4 KiB
C++
/*
|
|
* Copyright (C) 2018 Emeric Poupon
|
|
*
|
|
* This file is part of LMS.
|
|
*
|
|
* LMS is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* LMS is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with LMS. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "ArtistsInfoView.hpp"
|
|
|
|
#include <Wt/WAnchor.h>
|
|
#include <Wt/WLocalDateTime.h>
|
|
|
|
#include "database/Artist.hpp"
|
|
#include "database/TrackList.hpp"
|
|
|
|
#include "utils/Utils.hpp"
|
|
|
|
#include "LmsApplication.hpp"
|
|
|
|
using namespace Database;
|
|
|
|
namespace {
|
|
|
|
using namespace UserInterface;
|
|
|
|
void addEntries(Wt::WContainerWidget *container, const std::vector<Artist::pointer>& artists)
|
|
{
|
|
for (auto artist : artists)
|
|
{
|
|
Wt::WTemplate* entry = container->addNew<Wt::WTemplate>(Wt::WString::tr("Lms.Explore.ArtistsInfo.template.entry"));
|
|
|
|
entry->bindWidget("name", LmsApplication::createArtistAnchor(artist));
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
namespace UserInterface {
|
|
|
|
ArtistsInfo::ArtistsInfo()
|
|
: Wt::WTemplate(Wt::WString::tr("Lms.Explore.ArtistsInfo.template"))
|
|
{
|
|
addFunction("tr", &Wt::WTemplate::Functions::tr);
|
|
|
|
_mostPlayedContainer = bindNew<Wt::WContainerWidget>("most-played");
|
|
_recentlyAddedContainer = bindNew<Wt::WContainerWidget>("recently-added");
|
|
|
|
LmsApp->getEvents().dbScanned.connect([=]
|
|
{
|
|
refreshRecentlyAdded();
|
|
});
|
|
|
|
LmsApp->getEvents().trackLoaded.connect([=]
|
|
{
|
|
refreshMostPlayed();
|
|
});
|
|
|
|
refreshMostPlayed();
|
|
refreshRecentlyAdded();
|
|
}
|
|
|
|
void
|
|
ArtistsInfo::refreshRecentlyAdded()
|
|
{
|
|
auto after = Wt::WLocalDateTime::currentServerDateTime().toUTC().addMonths(-1);
|
|
|
|
Wt::Dbo::Transaction transaction(LmsApp->getDboSession());
|
|
auto artists = Artist::getLastAdded(LmsApp->getDboSession(), after, 5);
|
|
|
|
_recentlyAddedContainer->clear();
|
|
addEntries(_recentlyAddedContainer, artists);
|
|
}
|
|
|
|
void
|
|
ArtistsInfo::refreshMostPlayed()
|
|
{
|
|
Wt::Dbo::Transaction transaction(LmsApp->getDboSession());
|
|
auto artists = LmsApp->getUser()->getPlayedTrackList()->getTopArtists(5);
|
|
|
|
_mostPlayedContainer->clear();
|
|
addEntries(_mostPlayedContainer, artists);
|
|
}
|
|
|
|
} // namespace UserInterface
|
|
|