forked from openedx/edx-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunit_block.py
75 lines (62 loc) · 2.57 KB
/
unit_block.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
"""
An XBlock which groups related XBlocks together.
This is like the "vertical" block, but without that block's UI code, JavaScript,
and other legacy features.
"""
from web_fragments.fragment import Fragment
from xblock.completable import XBlockCompletionMode
from xblock.core import XBlock
from xblock.fields import Scope, String
# Make '_' a no-op so we can scrape strings.
_ = lambda text: text
class UnitBlock(XBlock):
"""
Unit XBlock: An XBlock which groups related XBlocks together.
This is like the "vertical" block in principle, but this version is
explicitly designed to not contain LMS-related logic, like vertical does.
The application which renders XBlocks and/or the runtime should manage
things like bookmarks, completion tracking, etc.
This version also avoids any XModule mixins and has no JavaScript code.
"""
has_children = True
# This is a block containing other blocks, so its completion is defined by
# the completion of its child blocks:
completion_mode = XBlockCompletionMode.AGGREGATOR
# Define a non-existent resources dir because we don't have resources, but
# the default will pull in all files in this folder.
resources_dir = 'assets/unit'
display_name = String(
display_name=_("Display Name"),
help=_("The display name for this component."),
scope=Scope.settings,
default=_("Unit"),
)
def student_view(self, context=None):
"""Provide default student view."""
result = Fragment()
child_frags = self.runtime.render_children(self, context=context)
result.add_resources(child_frags)
result.add_content('<div class="unit-xblock vertical">')
for frag in child_frags:
result.add_content(frag.content)
result.add_content('</div>')
return result
public_view = student_view
def index_dictionary(self):
"""
Return dictionary prepared with block content and type for indexing, so
that the contents of this block can be found in free-text searches.
"""
# return key/value fields in a Python dict object
# values may be numeric / string or dict
xblock_body = super().index_dictionary()
index_body = {
"display_name": self.display_name,
}
if "content" in xblock_body:
xblock_body["content"].update(index_body)
else:
xblock_body["content"] = index_body
# We use "Sequence" for sequentials and units/verticals
xblock_body["content_type"] = "Sequence"
return xblock_body