Coverage for modules/org/openteacher/interfaces/qt/testMode/studentsView/studentsView : 32%
Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
|
#! /usr/bin/env python3 # -*- coding: utf-8 -*-
# Copyright 2011-2012, Milan Boers # Copyright 2012-2013, Marten de Vries # # This file is part of OpenTeacher. # # OpenTeacher 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. # # OpenTeacher 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 OpenTeacher. If not, see <http://www.gnu.org/licenses/>.
global StudentsView
super().__init__(*args, **kwargs)
self.connection = connection self.header().hide();
self._addStudents()
# Keep a dictionary of name to url of student so we can call the url from the name later self.nameToUrl = dict()
# Get list of groups groupList = self.connection.get("groups") for group in groupList: groupInfo = self.connection.get(group["url"])
# Get list of members userIds = map(os.path.basename, groupInfo["members"])
userWidgets = []
for userId in userIds: userInfo = self.connection.get("users/" + userId) if "role" in userInfo and userInfo["role"] == "student": # This is a student. Add the student to the list item = QtWidgets.QTreeWidgetItem() item.setText(0, userInfo["username"]) userWidgets.append(item)
# Also add this name and the id to a list so we know which id belongs to this student self.nameToUrl[userInfo["username"]] = userInfo["url"]
item = QtWidgets.QTreeWidgetItem() item.setText(0, groupInfo["name"]) item.addChildren(userWidgets) self.addTopLevelItem(item)
# Get list of individual users userList = self.connection.get("users")
for user in userList: userInfo = self.connection.get(user["url"]) if "role" in userInfo and userInfo["role"] == "student": # This is a student. Add the student to the list item = QtWidgets.QTreeWidgetItem() item.setText(0, userInfo["username"]) self.addTopLevelItem(item)
# Also add this name and the id to a list so we know which id belongs to this student self.nameToUrl[userInfo["username"]] = userInfo["url"]
# Check if selected item is a group if self.currentItem().childCount() != 0: # Return list of all items feedback = [] for i in range(self.currentItem().childCount()): text = self.connection.get(self.nameToUrl[self.currentItem().child(i).text(0)]) feedback.append(text) return feedback else: return self.connection.get(self.nameToUrl[self.currentItem().text(0)])
"default": 546, }
self._mm.mods(type="ui"), self._mm.mods(type="event"), self._mm.mods(type="testModeConnection"), )
global QtWidgets except ImportError: return
connection = self._modules.default("active", type="testModeConnection").getConnection() return StudentsView(connection)
|