use of org.olat.modules.portfolio.model.SharedItemRow in project openolat by klemens.
the class SharedBindersController method activate.
@Override
public void activate(UserRequest ureq, List<ContextEntry> entries, StateEntry state) {
if (entries.isEmpty())
return;
Long resId = entries.get(0).getOLATResourceable().getResourceableId();
String resName = entries.get(0).getOLATResourceable().getResourceableTypeName();
if ("Binder".equalsIgnoreCase(resName)) {
SharedItemRow activatedRow = null;
List<SharedItemRow> rows = model.getObjects();
for (SharedItemRow row : rows) {
if (row.getBinderKey().equals(resId)) {
activatedRow = row;
break;
}
}
if (activatedRow != null) {
Activateable2 activeateable = doSelectBinder(ureq, activatedRow);
if (activeateable != null) {
List<ContextEntry> subEntries = entries.subList(1, entries.size());
activeateable.activate(ureq, subEntries, entries.get(0).getTransientState());
}
}
}
}
use of org.olat.modules.portfolio.model.SharedItemRow in project openolat by klemens.
the class SharedBindersController method doExpandSections.
private void doExpandSections(UserRequest ureq) {
try {
String row = ureq.getParameter("expand-section");
int index = Integer.parseInt(row);
SharedItemRow itemRow = model.getObject(index);
if (itemRow != null) {
itemRow.setExpandSections(!itemRow.isExpandSections());
}
tableEl.getComponent().setDirty(true);
} catch (NumberFormatException e) {
logError("", e);
}
}
use of org.olat.modules.portfolio.model.SharedItemRow in project openolat by klemens.
the class SharedBindersController method doSelectSection.
private void doSelectSection(UserRequest ureq) {
try {
String row = ureq.getParameter("select-section");
int index = Integer.parseInt(row);
SharedItemRow itemRow = model.getObject(index);
if (itemRow != null) {
String sectionParam = ureq.getParameter("section");
int sectionIndex = Integer.parseInt(sectionParam);
AssessedBinderSection section = itemRow.getSections().get(sectionIndex);
Activateable2 activeateable = doSelectBinder(ureq, itemRow);
if (activeateable != null) {
List<ContextEntry> entries = new ArrayList<>(2);
entries.add(BusinessControlFactory.getInstance().createContextEntry(OresHelper.createOLATResourceableInstance("Entries", 0l)));
entries.add(BusinessControlFactory.getInstance().createContextEntry(OresHelper.createOLATResourceableInstance("Section", section.getSectionKey())));
activeateable.activate(ureq, entries, null);
}
}
} catch (Exception e) {
logError("", e);
}
}
use of org.olat.modules.portfolio.model.SharedItemRow in project openolat by klemens.
the class SelectSectionsCellRenderer method render.
@Override
public void render(Renderer renderer, StringOutput target, Object cellValue, int row, FlexiTableComponent source, URLBuilder ubu, Translator trans) {
if (cellValue instanceof SharedItemRow) {
SharedItemRow itemRow = (SharedItemRow) cellValue;
List<AssessedBinderSection> sections = itemRow.getSections();
if (sections != null && sections.size() > 0) {
FlexiTableElementImpl ftE = source.getFlexiTableElement();
String id = source.getFormDispatchId();
Form rootForm = ftE.getRootForm();
boolean expand = itemRow.isExpandSections();
for (int i = 0; i < sections.size(); i++) {
if (i > 0) {
if (expand)
target.append("<br />");
else
target.append(" | ");
}
NameValuePair pair1 = new NameValuePair("select-section", Integer.toString(row));
NameValuePair pair2 = new NameValuePair("section", Integer.toString(i));
String jsCode = FormJSHelper.getXHRFnCallFor(rootForm, id, 1, true, true, pair1, pair2);
target.append("<a href=\"javascript:").append(jsCode).append(";\"").append(">");
if (expand) {
target.append(StringHelper.escapeHtml(sections.get(i).getSectionTitle()));
} else {
target.append(i + 1);
}
target.append("</a>");
}
NameValuePair pair = new NameValuePair("expand-section", Integer.toString(row));
String jsCode = FormJSHelper.getXHRFnCallFor(rootForm, id, 1, true, true, pair);
target.append(" <a href=\"javascript:").append(jsCode).append(";\"").append(">");
if (itemRow.isExpandSections()) {
target.append("<i class='o_icon o_icon-sm o_icon_expand'> </i>");
} else {
target.append("<i class='o_icon o_icon-sm o_icon_compress'> </i>");
}
target.append("</a>");
}
}
}
Aggregations