SEBSERV-109 added surname column and fixed some sort issues
This commit is contained in:
parent
3d20038a1e
commit
02e3a104bf
7 changed files with 414 additions and 390 deletions
|
@ -21,7 +21,6 @@ import javax.validation.constraints.NotEmpty;
|
|||
import javax.validation.constraints.NotNull;
|
||||
import javax.validation.constraints.Size;
|
||||
|
||||
import ch.ethz.seb.sebserver.gbl.model.EntityName;
|
||||
import org.apache.commons.lang3.BooleanUtils;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.joda.time.DateTime;
|
||||
|
@ -37,6 +36,7 @@ import ch.ethz.seb.sebserver.gbl.api.EntityType;
|
|||
import ch.ethz.seb.sebserver.gbl.model.Domain.USER;
|
||||
import ch.ethz.seb.sebserver.gbl.model.Domain.USER_ROLE;
|
||||
import ch.ethz.seb.sebserver.gbl.model.EntityKey;
|
||||
import ch.ethz.seb.sebserver.gbl.model.EntityName;
|
||||
import ch.ethz.seb.sebserver.gbl.util.Utils;
|
||||
|
||||
/** The user info domain model contains primary user information
|
||||
|
@ -50,6 +50,7 @@ public final class UserInfo implements UserAccount, Serializable {
|
|||
|
||||
private static final long serialVersionUID = 2526446136264377808L;
|
||||
|
||||
public static final String FILTER_ATTR_SURNAME = "surname";
|
||||
public static final String FILTER_ATTR_USER_NAME = "username";
|
||||
public static final String FILTER_ATTR_EMAIL = "email";
|
||||
public static final String FILTER_ATTR_LANGUAGE = "language";
|
||||
|
|
|
@ -8,6 +8,14 @@
|
|||
|
||||
package ch.ethz.seb.sebserver.gui.content;
|
||||
|
||||
import java.util.Map;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.eclipse.swt.widgets.Composite;
|
||||
import org.springframework.beans.factory.annotation.Value;
|
||||
import org.springframework.context.annotation.Lazy;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
import ch.ethz.seb.sebserver.gbl.Constants;
|
||||
import ch.ethz.seb.sebserver.gbl.model.Domain;
|
||||
import ch.ethz.seb.sebserver.gbl.model.session.ClientConnection;
|
||||
|
@ -30,13 +38,6 @@ import ch.ethz.seb.sebserver.gui.table.ColumnDefinition.TableFilterAttribute;
|
|||
import ch.ethz.seb.sebserver.gui.table.EntityTable;
|
||||
import ch.ethz.seb.sebserver.gui.table.TableFilter.CriteriaType;
|
||||
import ch.ethz.seb.sebserver.gui.widget.WidgetFactory;
|
||||
import org.eclipse.swt.widgets.Composite;
|
||||
import org.springframework.beans.factory.annotation.Value;
|
||||
import org.springframework.context.annotation.Lazy;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
import java.util.Map;
|
||||
import java.util.function.Function;
|
||||
|
||||
@Lazy
|
||||
@Component
|
||||
|
@ -134,7 +135,7 @@ public class SebClientLogs implements TemplateComposer {
|
|||
.widthProportion(2))
|
||||
|
||||
.withColumn(new ColumnDefinition<ExtendedClientEvent>(
|
||||
Domain.CLIENT_EVENT.TYPE_NAME,
|
||||
Domain.CLIENT_EVENT.ATTR_TYPE,
|
||||
TYPE_TEXT_KEY,
|
||||
this.resourceService::getEventTypeName)
|
||||
.withFilter(this.eventTypeFilter)
|
||||
|
@ -166,7 +167,8 @@ public class SebClientLogs implements TemplateComposer {
|
|||
|
||||
.withDefaultAction(t -> actionBuilder
|
||||
.newAction(ActionDefinition.LOGS_SEB_CLIENT_SHOW_DETAILS)
|
||||
.withExec(action -> sebClientLogDetailsPopup.showDetails(action, t.getSingleSelectedROWData()))
|
||||
.withExec(action -> this.sebClientLogDetailsPopup.showDetails(action,
|
||||
t.getSingleSelectedROWData()))
|
||||
.noEventPropagation()
|
||||
.create())
|
||||
|
||||
|
@ -180,14 +182,12 @@ public class SebClientLogs implements TemplateComposer {
|
|||
.newAction(ActionDefinition.LOGS_SEB_CLIENT_SHOW_DETAILS)
|
||||
.withSelect(
|
||||
table::getSelection,
|
||||
action -> sebClientLogDetailsPopup.showDetails(action, table.getSingleSelectedROWData()),
|
||||
action -> this.sebClientLogDetailsPopup.showDetails(action, table.getSingleSelectedROWData()),
|
||||
EMPTY_SELECTION_TEXT)
|
||||
.noEventPropagation()
|
||||
.publishIf(table::hasAnyContent, false);
|
||||
}
|
||||
|
||||
|
||||
|
||||
private Function<ExtendedClientEvent, String> examNameFunction() {
|
||||
final Map<Long, String> examNameMapping = this.resourceService.getExamNameMapping();
|
||||
return event -> examNameMapping.get(event.examId);
|
||||
|
|
|
@ -8,6 +8,15 @@
|
|||
|
||||
package ch.ethz.seb.sebserver.gui.content;
|
||||
|
||||
import java.util.function.BooleanSupplier;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.apache.commons.lang3.BooleanUtils;
|
||||
import org.eclipse.swt.widgets.Composite;
|
||||
import org.springframework.beans.factory.annotation.Value;
|
||||
import org.springframework.context.annotation.Lazy;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
import ch.ethz.seb.sebserver.gbl.Constants;
|
||||
import ch.ethz.seb.sebserver.gbl.api.API;
|
||||
import ch.ethz.seb.sebserver.gbl.api.EntityType;
|
||||
|
@ -36,14 +45,6 @@ import ch.ethz.seb.sebserver.gui.table.ColumnDefinition.TableFilterAttribute;
|
|||
import ch.ethz.seb.sebserver.gui.table.EntityTable;
|
||||
import ch.ethz.seb.sebserver.gui.table.TableFilter.CriteriaType;
|
||||
import ch.ethz.seb.sebserver.gui.widget.WidgetFactory;
|
||||
import org.apache.commons.lang3.BooleanUtils;
|
||||
import org.eclipse.swt.widgets.Composite;
|
||||
import org.springframework.beans.factory.annotation.Value;
|
||||
import org.springframework.context.annotation.Lazy;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
import java.util.function.BooleanSupplier;
|
||||
import java.util.function.Function;
|
||||
|
||||
@Lazy
|
||||
@Component
|
||||
|
@ -67,6 +68,8 @@ public class UserAccountList implements TemplateComposer {
|
|||
new LocTextKey("sebserver.useraccount.list.column.username");
|
||||
private static final LocTextKey NAME_TEXT_KEY =
|
||||
new LocTextKey("sebserver.useraccount.list.column.name");
|
||||
private static final LocTextKey SURNAME_TEXT_KEY =
|
||||
new LocTextKey("sebserver.useraccount.list.column.surname");
|
||||
private static final LocTextKey TITLE_TEXT_KEY =
|
||||
new LocTextKey("sebserver.useraccount.list.title");
|
||||
private static final LocTextKey NO_EDIT_RIGHT_MESSAGE =
|
||||
|
@ -76,6 +79,8 @@ public class UserAccountList implements TemplateComposer {
|
|||
private final TableFilterAttribute institutionFilter;
|
||||
private final TableFilterAttribute nameFilter =
|
||||
new TableFilterAttribute(CriteriaType.TEXT, Entity.FILTER_ATTR_NAME);
|
||||
private final TableFilterAttribute surnameFilter =
|
||||
new TableFilterAttribute(CriteriaType.TEXT, UserInfo.FILTER_ATTR_SURNAME);
|
||||
private final TableFilterAttribute usernameFilter =
|
||||
new TableFilterAttribute(CriteriaType.TEXT, UserInfo.FILTER_ATTR_USER_NAME);
|
||||
private final TableFilterAttribute mailFilter =
|
||||
|
@ -152,6 +157,14 @@ public class UserAccountList implements TemplateComposer {
|
|||
.sortable()
|
||||
.widthProportion(2))
|
||||
|
||||
.withColumn(new ColumnDefinition<>(
|
||||
Domain.USER.ATTR_SURNAME,
|
||||
SURNAME_TEXT_KEY,
|
||||
UserInfo::getSurname)
|
||||
.withFilter(this.surnameFilter)
|
||||
.sortable()
|
||||
.widthProportion(2))
|
||||
|
||||
.withColumn(new ColumnDefinition<>(
|
||||
Domain.USER.ATTR_USERNAME,
|
||||
USER_NAME_TEXT_KEY,
|
||||
|
|
|
@ -217,6 +217,7 @@ public class PaginationServiceImpl implements PaginationService {
|
|||
// User Table
|
||||
final Map<String, String> userTableMap = new HashMap<>();
|
||||
userTableMap.put(Domain.USER.ATTR_NAME, UserRecordDynamicSqlSupport.name.name());
|
||||
userTableMap.put(Domain.USER.ATTR_SURNAME, UserRecordDynamicSqlSupport.surname.name());
|
||||
userTableMap.put(Domain.USER.ATTR_USERNAME, UserRecordDynamicSqlSupport.username.name());
|
||||
userTableMap.put(Domain.USER.ATTR_EMAIL, UserRecordDynamicSqlSupport.email.name());
|
||||
userTableMap.put(Domain.USER.ATTR_LANGUAGE, UserRecordDynamicSqlSupport.language.name());
|
||||
|
|
|
@ -65,6 +65,10 @@ public class FilterMap extends POSTMapper {
|
|||
return getSQLWildcard(Entity.FILTER_ATTR_NAME);
|
||||
}
|
||||
|
||||
public String getSurname() {
|
||||
return getSQLWildcard(UserInfo.FILTER_ATTR_SURNAME);
|
||||
}
|
||||
|
||||
public String getQuizName() {
|
||||
return getString(Entity.FILTER_ATTR_NAME);
|
||||
}
|
||||
|
|
|
@ -172,6 +172,9 @@ public class UserDAOImpl implements UserDAO {
|
|||
.and(
|
||||
UserRecordDynamicSqlSupport.name,
|
||||
isLikeWhenPresent(filterMap.getName()))
|
||||
.and(
|
||||
UserRecordDynamicSqlSupport.surname,
|
||||
isLikeWhenPresent(filterMap.getSurname()))
|
||||
.and(
|
||||
UserRecordDynamicSqlSupport.username,
|
||||
isLikeWhenPresent(filterMap.getUserUsername()))
|
||||
|
|
|
@ -196,6 +196,8 @@ sebserver.useraccount.list.column.institution=Institution
|
|||
sebserver.useraccount.list.column.institution.tooltip=The institution of the user account.<br/><br/>Use the filter above to specify the institution.<br/>{0}
|
||||
sebserver.useraccount.list.column.name=First Name
|
||||
sebserver.useraccount.list.column.name.tooltip=The first name of the user.<br/><br/>Use the filter above to narrow down a specific first name.<br/>{0}
|
||||
sebserver.useraccount.list.column.surname=Surname
|
||||
sebserver.useraccount.list.column.surname.tooltip=The surname of the user.<br/><br/>Use the filter above to narrow down a specific surname.<br/>{0}
|
||||
sebserver.useraccount.list.column.username=User Name
|
||||
sebserver.useraccount.list.column.username.tooltip=The internal user name of the user.<br/><br/>Use the filter above to narrow down a specific user name.<br/>{0}
|
||||
sebserver.useraccount.list.column.email=Mail
|
||||
|
|
Loading…
Add table
Reference in a new issue