Skip to content

Commit

Permalink
feat: new ora disable on latex (#2141)
Browse files Browse the repository at this point in the history
* feat: disable new ORA experience for LaTeX previews

* chore: bump ORA to 6.0.15
  • Loading branch information
nsprenkle authored Dec 12, 2023
1 parent 9436f5e commit 902836e
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 4 deletions.
2 changes: 1 addition & 1 deletion openassessment/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Initialization Information for Open Assessment Module
"""

__version__ = '6.0.14'
__version__ = '6.0.15'
5 changes: 5 additions & 0 deletions openassessment/xblock/openassessmentblock.py
Original file line number Diff line number Diff line change
Expand Up @@ -659,6 +659,7 @@ def mfe_views_supported(self):
1) Team assignments
2) Assignments with reordered assessment steps
3) ORAs with leaderboards
4) ORAs with LaTeX previews enabled
Returns:
- False if we are in one of these unsupported configurations.
Expand All @@ -677,6 +678,10 @@ def mfe_views_supported(self):
if self.leaderboard_show != 0:
return False

# LaTeX previews not enabled yet
if self.allow_latex:
return False

return True

def ora_blocks_listing_view(self, context=None):
Expand Down
12 changes: 12 additions & 0 deletions openassessment/xblock/test/test_openassessment.py
Original file line number Diff line number Diff line change
Expand Up @@ -735,6 +735,18 @@ def test_mfe_views_supported__leaderboard(self, xblock, mock_value, expected_sup
# Then they are unsupported for ORAs with leaderboards
self.assertEqual(xblock.mfe_views_supported, expected_supported)

@ddt.unpack
@ddt.data((True, False), (False, True))
@patch.object(openassessmentblock.OpenAssessmentBlock, 'allow_latex', new_callable=PropertyMock)
@scenario('data/simple_self_staff_scenario.xml')
def test_mfe_views_supported__latex(self, xblock, mock_value, expected_supported, mock_allow_latex):
# Given I'm on / not on an ORA with a leaderboard
mock_allow_latex.return_value = mock_value

# When I see if MFE views are supported
# Then they are unsupported for ORAs with leaderboards
self.assertEqual(xblock.mfe_views_supported, expected_supported)


class TestDates(XBlockHandlerTestCase):
""" Test Assessment Dates. """
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "edx-ora2",
"version": "6.0.14",
"version": "6.0.15",
"repository": "https://github.com/openedx/edx-ora2.git",
"dependencies": {
"@edx/frontend-build": "8.0.6",
Expand Down

0 comments on commit 902836e

Please sign in to comment.