BrightSide Workbench Full Report + Source Code
elephant-alliance/src/main/java/org/turro/alliance/www/ChallengesDashboard.java
Go to the documentation of this file.
1 /*
2  * TurrĂ³ i Cutiller Foundation. License notice.
3  * Copyright (C) 2024 Lluis TurrĂ³ Cutiller <http://www.turro.org/>
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU Affero General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU Affero General Public License for more details.
14  *
15  * You should have received a copy of the GNU Affero General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  */
18 
19 package org.turro.alliance.www;
20 
21 import java.util.List;
22 import org.turro.alliance.content.ChallengeContentIterator;
23 import org.turro.alliance.db.AlliancePU;
24 import org.turro.alliance.db.entities.AxTalentCategory;
25 import org.turro.auth.Authentication;
26 import org.turro.dashboard.AbstractDaoDashboard;
27 import org.turro.elephant.context.IConstructor;
28 import org.turro.jpa.iterator.DaoHtmlIterator;
29 import org.turro.jpa.search.DaoHtmlSearch;
30 import org.turro.sql.SqlClause;
31 
37 
38  private ChallengeContentIterator di;
39 
40  @Override
42  di = new ChallengeContentIterator(getConstructor(), null, Authentication.getIContact(), false, getContext().getFullPath());
43  return di;
44  }
45 
46  @Override
47  protected void initSearchEngine() {
49  if(dhs != null) {
50  dhs.setTagRoot("axchallenge");
51  dhs.setAttribute(getConstructor(), "categories", getTalentCategories(getConstructor()));
52  }
53  }
54 
55  private List<AxTalentCategory> getTalentCategories(IConstructor constructor) {
56  return SqlClause.select("c").from("AxTalentCategory c")
57  .orderBy("c.name")
58  .dao(new AlliancePU())
59  .resultList(AxTalentCategory.class);
60  }
61 
62 }
void setAttribute(IConstructor constructor, String attribute, Object value)