Skip to content
Snippets Groups Projects
Commit bebcfeed authored by srosse's avatar srosse
Browse files

OO-1555: write the names of areas and groups without the icons decoration in...

OO-1555: write the names of areas and groups without the icons decoration in the configuration of the enrollment course element
parent 4d357038
No related branches found
No related tags found
No related merge requests found
...@@ -38,6 +38,7 @@ import org.olat.core.gui.translator.PackageTranslator; ...@@ -38,6 +38,7 @@ import org.olat.core.gui.translator.PackageTranslator;
import org.olat.core.gui.translator.Translator; import org.olat.core.gui.translator.Translator;
import org.olat.core.id.Roles; import org.olat.core.id.Roles;
import org.olat.core.util.Util; import org.olat.core.util.Util;
import org.olat.core.util.filter.FilterFactory;
import org.olat.course.ICourse; import org.olat.course.ICourse;
import org.olat.course.condition.ConditionEditController; import org.olat.course.condition.ConditionEditController;
import org.olat.course.editor.CourseEditorEnv; import org.olat.course.editor.CourseEditorEnv;
...@@ -191,13 +192,15 @@ public class ENCourseNode extends AbstractAccessableCourseNode { ...@@ -191,13 +192,15 @@ public class ENCourseNode extends AbstractAccessableCourseNode {
/* /*
* check group and area names for existence * check group and area names for existence
*/ */
String nodeId = getIdent();
ModuleConfiguration mc = getModuleConfiguration(); ModuleConfiguration mc = getModuleConfiguration();
String areaStr = (String) mc.get(CONFIG_AREANAME); String areaStr = (String) mc.get(CONFIG_AREANAME);
String nodeId = getIdent();
if (areaStr != null) { if (areaStr != null) {
String[] areas = areaStr.split(","); String[] areas = areaStr.split(",");
for (int i = 0; i < areas.length; i++) { for (int i = 0; i < areas.length; i++) {
String trimmed = areas[i] != null ? areas[i].trim() : areas[i]; String trimmed = areas[i] != null ?
FilterFactory.getHtmlTagsFilter().filter(areas[i]).trim() : areas[i];
if (!trimmed.equals("") && !cev.existsArea(trimmed)) { if (!trimmed.equals("") && !cev.existsArea(trimmed)) {
StatusDescription sd = new StatusDescription(StatusDescription.WARNING, "error.notfound.name", "solution.checkgroupmanagement", StatusDescription sd = new StatusDescription(StatusDescription.WARNING, "error.notfound.name", "solution.checkgroupmanagement",
new String[] { "NONE", trimmed }, translatorStr); new String[] { "NONE", trimmed }, translatorStr);
...@@ -210,7 +213,8 @@ public class ENCourseNode extends AbstractAccessableCourseNode { ...@@ -210,7 +213,8 @@ public class ENCourseNode extends AbstractAccessableCourseNode {
if (groupStr != null) { if (groupStr != null) {
String[] groups = groupStr.split(","); String[] groups = groupStr.split(",");
for (int i = 0; i < groups.length; i++) { for (int i = 0; i < groups.length; i++) {
String trimmed = groups[i] != null ? groups[i].trim() : groups[i]; String trimmed = groups[i] != null ?
FilterFactory.getHtmlTagsFilter().filter(groups[i]).trim() : groups[i];
if (!trimmed.equals("") && !cev.existsGroup(trimmed)) { if (!trimmed.equals("") && !cev.existsGroup(trimmed)) {
StatusDescription sd = new StatusDescription(StatusDescription.WARNING, "error.notfound.name", "solution.checkgroupmanagement", StatusDescription sd = new StatusDescription(StatusDescription.WARNING, "error.notfound.name", "solution.checkgroupmanagement",
new String[] { "NONE", trimmed }, translatorStr); new String[] { "NONE", trimmed }, translatorStr);
......
...@@ -25,7 +25,6 @@ ...@@ -25,7 +25,6 @@
package org.olat.course.nodes.en; package org.olat.course.nodes.en;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection; import java.util.Collection;
import java.util.HashSet; import java.util.HashSet;
import java.util.List; import java.util.List;
...@@ -158,21 +157,15 @@ class ENEditGroupAreaFormController extends FormBasicController implements Gener ...@@ -158,21 +157,15 @@ class ENEditGroupAreaFormController extends FormBasicController implements Gener
@Override @Override
protected void formOK(UserRequest ureq) { protected void formOK(UserRequest ureq) {
// 1. group names // 1. group names
List<Long> groupKeys = getKeys(easyGroupList); KeysAndNames groupKeysAndNames = (KeysAndNames)easyGroupList.getUserObject();
String groupName = ""; String groupNames = StringHelper.formatAsSortUniqCSVString(groupKeysAndNames.getNames());
if (StringHelper.containsNonWhitespace(easyGroupList.getValue())){ moduleConfig.set(ENCourseNode.CONFIG_GROUPNAME, groupNames);
groupName = easyGroupList.getValue(); moduleConfig.set(ENCourseNode.CONFIG_GROUP_IDS, groupKeysAndNames.getKeys());
}
moduleConfig.set(ENCourseNode.CONFIG_GROUPNAME, groupName);
moduleConfig.set(ENCourseNode.CONFIG_GROUP_IDS, groupKeys);
// 2. area names // 2. area names
List<Long> areaKeys = getKeys(easyAreaList); KeysAndNames areaKeysAndNames = (KeysAndNames)easyAreaList.getUserObject();
String areaName = ""; String areaNames = StringHelper.formatAsSortUniqCSVString(areaKeysAndNames.getNames());
if (StringHelper.containsNonWhitespace(easyAreaList.getValue())){ moduleConfig.set(ENCourseNode.CONFIG_AREANAME, areaNames);
areaName = easyAreaList.getValue(); moduleConfig.set(ENCourseNode.CONFIG_AREA_IDS, areaKeysAndNames.getKeys());
}
moduleConfig.set(ENCourseNode.CONFIG_AREANAME, areaName);
moduleConfig.set(ENCourseNode.CONFIG_AREA_IDS, areaKeys);
// 3. cancel-enroll-enabled flag // 3. cancel-enroll-enabled flag
Boolean cancelEnrollEnabled = enableCancelEnroll.getSelectedKeys().size()==1; Boolean cancelEnrollEnabled = enableCancelEnroll.getSelectedKeys().size()==1;
moduleConfig.set(ENCourseNode.CONF_CANCEL_ENROLL_ENABLED, cancelEnrollEnabled); moduleConfig.set(ENCourseNode.CONF_CANCEL_ENROLL_ENABLED, cancelEnrollEnabled);
...@@ -192,26 +185,22 @@ class ENEditGroupAreaFormController extends FormBasicController implements Gener ...@@ -192,26 +185,22 @@ class ENEditGroupAreaFormController extends FormBasicController implements Gener
@Override @Override
protected void initForm(FormItemContainer formLayout, Controller listener, UserRequest ureq) { protected void initForm(FormItemContainer formLayout, Controller listener, UserRequest ureq) {
// groups // groups
List<Long> groupKeys = moduleConfig.getList(ENCourseNode.CONFIG_GROUP_IDS, Long.class);
String groupInitVal;
@SuppressWarnings("unchecked")
List<Long> groupKeys = (List<Long>)moduleConfig.get(ENCourseNode.CONFIG_GROUP_IDS);
if(groupKeys == null) { if(groupKeys == null) {
groupInitVal = (String) moduleConfig.get(ENCourseNode.CONFIG_GROUPNAME); String groupNames = (String) moduleConfig.get(ENCourseNode.CONFIG_GROUPNAME);
if(StringHelper.containsNonWhitespace(groupInitVal)) { if(StringHelper.containsNonWhitespace(groupNames)) {
groupKeys = businessGroupService.toGroupKeys(groupInitVal, cev.getCourseGroupManager().getCourseEntry()); groupKeys = businessGroupService.toGroupKeys(groupNames, cev.getCourseGroupManager().getCourseEntry());
} else { } else {
groupKeys = new ArrayList<Long>(); groupKeys = new ArrayList<Long>();
} }
} }
groupInitVal = getGroupNames(groupKeys); KeysAndNames groupInitVal = getGroupKeysAndNames(groupKeys);
chooseGroupsLink = uifactory.addFormLink("chooseGroup", formLayout, "btn btn-default o_xsmall o_form_groupchooser"); chooseGroupsLink = uifactory.addFormLink("chooseGroup", formLayout, "btn btn-default o_xsmall o_form_groupchooser");
chooseGroupsLink.setLabel("form.groupnames", null); chooseGroupsLink.setLabel("form.groupnames", null);
chooseGroupsLink.setIconLeftCSS("o_icon o_icon-fw o_icon_group"); chooseGroupsLink.setIconLeftCSS("o_icon o_icon-fw o_icon_group");
easyGroupList = uifactory.addStaticTextElement("group", null, groupInitVal == null ? "" : groupInitVal, formLayout); easyGroupList = uifactory.addStaticTextElement("group", null, groupInitVal.getDecoratedNames(), formLayout);
easyGroupList.setUserObject(groupKeys); easyGroupList.setUserObject(groupInitVal);
easyGroupList.setElementCssClass("text-muted"); easyGroupList.setElementCssClass("text-muted");
hasGroups = businessGroupService.countBusinessGroups(null, cev.getCourseGroupManager().getCourseEntry()) > 0; hasGroups = businessGroupService.countBusinessGroups(null, cev.getCourseGroupManager().getCourseEntry()) > 0;
...@@ -222,21 +211,21 @@ class ENEditGroupAreaFormController extends FormBasicController implements Gener ...@@ -222,21 +211,21 @@ class ENEditGroupAreaFormController extends FormBasicController implements Gener
} }
// areas // areas
String areaInitVal;
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")
List<Long> areaKeys = (List<Long>)moduleConfig.get(ENCourseNode.CONFIG_AREA_IDS); List<Long> areaKeys = (List<Long>)moduleConfig.get(ENCourseNode.CONFIG_AREA_IDS);
if(areaKeys == null) { if(areaKeys == null) {
areaInitVal = (String) moduleConfig.get(ENCourseNode.CONFIG_AREANAME); String areaNames = (String) moduleConfig.get(ENCourseNode.CONFIG_AREANAME);
areaKeys = areaManager.toAreaKeys(areaInitVal, cev.getCourseGroupManager().getCourseResource()); areaKeys = areaManager.toAreaKeys(areaNames, cev.getCourseGroupManager().getCourseResource());
} }
areaInitVal = getAreaNames(areaKeys);
KeysAndNames areaInitVal = getAreaKeysAndNames(areaKeys);
chooseAreasLink = uifactory.addFormLink("chooseArea", formLayout, "btn btn-default o_xsmall o_form_areachooser"); chooseAreasLink = uifactory.addFormLink("chooseArea", formLayout, "btn btn-default o_xsmall o_form_areachooser");
chooseAreasLink.setLabel("form.areanames", null); chooseAreasLink.setLabel("form.areanames", null);
chooseAreasLink.setIconLeftCSS("o_icon o_icon-fw o_icon_courseareas"); chooseAreasLink.setIconLeftCSS("o_icon o_icon-fw o_icon_courseareas");
easyAreaList = uifactory.addStaticTextElement("area", null, areaInitVal == null ? "" : areaInitVal, formLayout); easyAreaList = uifactory.addStaticTextElement("area", null, areaInitVal.getDecoratedNames(), formLayout);
easyAreaList.setUserObject(areaKeys); easyAreaList.setUserObject(areaInitVal);
easyAreaList.setElementCssClass("text-muted"); easyAreaList.setElementCssClass("text-muted");
hasAreas = areaManager.countBGAreasInContext(cev.getCourseGroupManager().getCourseResource()) > 0; hasAreas = areaManager.countBGAreasInContext(cev.getCourseGroupManager().getCourseResource()) > 0;
...@@ -493,14 +482,9 @@ class ENEditGroupAreaFormController extends FormBasicController implements Gener ...@@ -493,14 +482,9 @@ class ENEditGroupAreaFormController extends FormBasicController implements Gener
if (source == groupChooseC) { if (source == groupChooseC) {
if (event == Event.DONE_EVENT) { if (event == Event.DONE_EVENT) {
cmc.deactivate(); cmc.deactivate();
List<String> newGroupNames = groupChooseC.getSelectedNames(); KeysAndNames c = getGroupKeysAndNames(groupChooseC.getSelectedKeys());
List<String> escapedNames = new ArrayList<>(newGroupNames.size()); easyGroupList.setValue(c.getDecoratedNames());
for(String newGroupName:newGroupNames) { easyGroupList.setUserObject(c);
escapedNames.add(StringHelper.escapeHtml(newGroupName));
}
String list = StringHelper.formatAsSortUniqCSVString(escapedNames);
easyGroupList.setValue(list == null ? "" : list);
easyGroupList.setUserObject(groupChooseC.getSelectedKeys());
easyGroupList.getRootForm().submit(ureq); easyGroupList.getRootForm().submit(ureq);
chooseGroupsLink.setI18nKey("choose"); chooseGroupsLink.setI18nKey("choose");
} else if (Event.CANCELLED_EVENT == event) { } else if (Event.CANCELLED_EVENT == event) {
...@@ -509,14 +493,9 @@ class ENEditGroupAreaFormController extends FormBasicController implements Gener ...@@ -509,14 +493,9 @@ class ENEditGroupAreaFormController extends FormBasicController implements Gener
} else if (source == areaChooseC) { } else if (source == areaChooseC) {
if (event == Event.DONE_EVENT) { if (event == Event.DONE_EVENT) {
cmc.deactivate(); cmc.deactivate();
List<String> newAreaNames = areaChooseC.getSelectedNames(); KeysAndNames c = getAreaKeysAndNames(areaChooseC.getSelectedKeys());
List<String> escapedNames = new ArrayList<>(newAreaNames.size()); easyAreaList.setValue(c.getDecoratedNames());
for(String newAreaName:newAreaNames) { easyAreaList.setUserObject(c);
escapedNames.add(StringHelper.escapeHtml(newAreaName));
}
String list = StringHelper.formatAsSortUniqCSVString(escapedNames);
easyAreaList.setValue(list == null ? "" : list);
easyAreaList.setUserObject(areaChooseC.getSelectedKeys());
easyAreaList.getRootForm().submit(ureq); easyAreaList.getRootForm().submit(ureq);
chooseAreasLink.setI18nKey("choose"); chooseAreasLink.setI18nKey("choose");
} else if (event == Event.CANCELLED_EVENT) { } else if (event == Event.CANCELLED_EVENT) {
...@@ -530,12 +509,17 @@ class ENEditGroupAreaFormController extends FormBasicController implements Gener ...@@ -530,12 +509,17 @@ class ENEditGroupAreaFormController extends FormBasicController implements Gener
List<Long> c = new ArrayList<Long>(); List<Long> c = new ArrayList<Long>();
c.addAll(getKeys(easyGroupList)); c.addAll(getKeys(easyGroupList));
if (fixGroupError != null && fixGroupError.getUserObject() != null) { if (fixGroupError != null && fixGroupError.getUserObject() != null) {
c.removeAll(Arrays.asList((String[])fixGroupError.getUserObject())); String[] keyArr = (String[])fixGroupError.getUserObject();
if(keyArr != null && keyArr.length > 0) {
List<Long> fixedKeys = toKeys(keyArr[0]);
c.removeAll(fixedKeys);
}
} }
c.addAll(groupCreateCntrllr.getCreatedGroupKeys()); c.addAll(groupCreateCntrllr.getCreatedGroupKeys());
easyGroupList.setValue(getGroupNames(c)); KeysAndNames keysAndNames = getGroupKeysAndNames(c);
easyGroupList.setUserObject(c); easyGroupList.setValue(keysAndNames.getDecoratedNames());
easyGroupList.setUserObject(keysAndNames);
if (groupCreateCntrllr.getCreatedGroupNames().size() > 0 && !hasGroups) { if (groupCreateCntrllr.getCreatedGroupNames().size() > 0 && !hasGroups) {
chooseGroupsLink.setLinkTitle("select"); chooseGroupsLink.setLinkTitle("select");
...@@ -551,12 +535,17 @@ class ENEditGroupAreaFormController extends FormBasicController implements Gener ...@@ -551,12 +535,17 @@ class ENEditGroupAreaFormController extends FormBasicController implements Gener
List<Long> c = new ArrayList<Long>(); List<Long> c = new ArrayList<Long>();
c.addAll(getKeys(easyAreaList)); c.addAll(getKeys(easyAreaList));
if (fixAreaError != null && fixAreaError.getUserObject() != null) { if (fixAreaError != null && fixAreaError.getUserObject() != null) {
c.removeAll(Arrays.asList((String[])fixAreaError.getUserObject())); String[] keyArr = (String[])fixAreaError.getUserObject();
if(keyArr != null && keyArr.length > 0) {
List<Long> fixedKeys = toKeys(keyArr[0]);
c.removeAll(fixedKeys);
}
} }
c.addAll(areaCreateCntrllr.getCreatedAreaKeys()); c.addAll(areaCreateCntrllr.getCreatedAreaKeys());
easyAreaList.setValue(getAreaNames(c)); KeysAndNames keysAndNames = getAreaKeysAndNames(c);
easyAreaList.setUserObject(c); easyAreaList.setValue(keysAndNames.getDecoratedNames());
easyAreaList.setUserObject(keysAndNames);
if (areaCreateCntrllr.getCreatedAreaNames().size() > 0 && !hasAreas) { if (areaCreateCntrllr.getCreatedAreaNames().size() > 0 && !hasAreas) {
chooseAreasLink.setLinkTitle("select"); chooseAreasLink.setLinkTitle("select");
...@@ -604,13 +593,12 @@ class ENEditGroupAreaFormController extends FormBasicController implements Gener ...@@ -604,13 +593,12 @@ class ENEditGroupAreaFormController extends FormBasicController implements Gener
} }
private List<Long> getKeys(StaticTextElement element) { private List<Long> getKeys(StaticTextElement element) {
@SuppressWarnings("unchecked") KeysAndNames keys = (KeysAndNames)element.getUserObject();
List<Long> keys = (List<Long>)element.getUserObject();
if(keys == null) { if(keys == null) {
keys = new ArrayList<Long>(); keys = new KeysAndNames();
element.setUserObject(keys); element.setUserObject(keys);
} }
return keys; return keys.getKeys();
} }
private String toString(Collection<Long> keys) { private String toString(Collection<Long> keys) {
...@@ -622,26 +610,71 @@ class ENEditGroupAreaFormController extends FormBasicController implements Gener ...@@ -622,26 +610,71 @@ class ENEditGroupAreaFormController extends FormBasicController implements Gener
return sb.toString(); return sb.toString();
} }
private String getGroupNames(List<Long> keys) { private List<Long> toKeys(String keysString) {
List<Long> keyList = new ArrayList<>();
String[] keys = keysString.split(",");
for(String key:keys) {
try {
keyList.add(Long.parseLong(key));
} catch (NumberFormatException e) {
logWarn("Cannot parse this key: " + key, e);
}
}
return keyList;
}
private KeysAndNames getGroupKeysAndNames(List<Long> keys) {
StringBuilder sb = new StringBuilder(); StringBuilder sb = new StringBuilder();
KeysAndNames keysAndNames = new KeysAndNames();
keysAndNames.getKeys().addAll(keys);
List<BusinessGroupShort> groups = businessGroupService.loadShortBusinessGroups(keys); List<BusinessGroupShort> groups = businessGroupService.loadShortBusinessGroups(keys);
for(BusinessGroupShort group:groups) { for(BusinessGroupShort group:groups) {
if(sb.length() > 0) sb.append("&nbsp;&nbsp;"); if(sb.length() > 0) sb.append("&nbsp;&nbsp;");
sb.append("<i class='o_icon o_icon-fw o_icon_group'>&nbsp;</i> "); sb.append("<i class='o_icon o_icon-fw o_icon_group'>&nbsp;</i> ");
sb.append(StringHelper.escapeHtml(group.getName())); sb.append(StringHelper.escapeHtml(group.getName()));
keysAndNames.getNames().add(group.getName());
} }
return sb.toString(); keysAndNames.setDecoratedNames(sb.toString());
return keysAndNames;
} }
private String getAreaNames(List<Long> keys) { private KeysAndNames getAreaKeysAndNames(List<Long> keys) {
StringBuilder sb = new StringBuilder(); StringBuilder sb = new StringBuilder();
List<BGArea> areas = areaManager.loadAreas(keys); List<BGArea> areas = areaManager.loadAreas(keys);
KeysAndNames keysAndNames = new KeysAndNames();
keysAndNames.getKeys().addAll(keys);
for(BGArea area:areas) { for(BGArea area:areas) {
if(sb.length() > 0) sb.append("&nbsp;&nbsp;"); if(sb.length() > 0) sb.append("&nbsp;&nbsp;");
sb.append("<i class='o_icon o_icon-fw o_icon_courseareas'>&nbsp;</i> "); sb.append("<i class='o_icon o_icon-fw o_icon_courseareas'>&nbsp;</i> ");
sb.append(StringHelper.escapeHtml(area.getName())); sb.append(StringHelper.escapeHtml(area.getName()));
keysAndNames.getNames().add(area.getName());
} }
return sb.toString(); keysAndNames.setDecoratedNames(sb.toString());
return keysAndNames;
} }
private static class KeysAndNames {
private final List<Long> keys = new ArrayList<>();
private final List<String> names = new ArrayList<>();
private String decoratedNames;
public List<Long> getKeys() {
return keys;
}
public List<String> getNames() {
return names;
}
} public String getDecoratedNames() {
return decoratedNames;
}
public void setDecoratedNames(String decoratedNames) {
this.decoratedNames = decoratedNames;
}
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment