-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Initial implementation of the accordion XBlock
Initial working Accordion XBlock
- Loading branch information
Showing
63 changed files
with
98,517 additions
and
410 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Frontend CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
tests: | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: ./frontend | ||
strategy: | ||
matrix: | ||
npm-test: | ||
# - i18n_extract | ||
- lint | ||
- test | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup Nodejs Env | ||
run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ env.NODE_VER }} | ||
- run: npm ci | ||
- run: npm run lint | ||
- run: npm run test | ||
- name: upload coverage | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
fail_ci_if_error: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,7 @@ pip-log.txt | |
.tox | ||
coverage.xml | ||
htmlcov/ | ||
coverage/ | ||
|
||
# Virtual environments | ||
/venv/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,4 @@ | |
|
||
from .accordion import AccordionXBlock | ||
|
||
__version__ = '0.1.0' | ||
__version__ = "0.1.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,107 +1,93 @@ | ||
"""TO-DO: Write a description of what this XBlock is.""" | ||
""" | ||
An XBlock for creating and accordion component with multiple panels with rich content. | ||
""" | ||
|
||
from importlib import resources | ||
|
||
import pkg_resources | ||
from django.utils import translation | ||
from web_fragments.fragment import Fragment | ||
from xblock.core import XBlock | ||
from xblock.fields import Integer, Scope | ||
from xblockutils.resources import ResourceLoader | ||
from xblock.fields import Dict, List, Scope, String | ||
|
||
|
||
class AccordionXBlock(XBlock): | ||
""" | ||
TO-DO: document what your XBlock does. | ||
Accordion XBlock. | ||
""" | ||
|
||
# Fields are defined on the class. You can access them in your code as | ||
# self.<fieldname>. | ||
|
||
# TO-DO: delete count, and define your own fields. | ||
count = Integer( | ||
default=0, scope=Scope.user_state, | ||
help="A simple counter, to show something happening", | ||
display_name = String(default=translation.gettext_noop("Accordion")) | ||
panels = List(help="Accordion entries", default=[], scope=Scope.content) | ||
styling = Dict(help="Accordion styling", default=[], scope=Scope.content) | ||
border_style = String( | ||
help="Accordion border style", default="", scope=Scope.content | ||
) | ||
|
||
def resource_string(self, path): | ||
"""Handy helper for getting resources from our kit.""" | ||
data = pkg_resources.resource_string(__name__, path) | ||
return data.decode("utf8") | ||
data = resources.files("accordion").joinpath(path).read_text("utf8") | ||
return data | ||
|
||
# TO-DO: change this view to display your data your own way. | ||
def student_view(self, context=None): | ||
def student_view(self, context=None): # pylint: disable=unused-argument | ||
""" | ||
Create primary view of the AccordionXBlock, shown to students when viewing courses. | ||
""" | ||
if context: | ||
pass # TO-DO: do something based on the context. | ||
html = self.resource_string("static/html/accordion.html") | ||
frag = Fragment(html.format(self=self)) | ||
frag.add_css(self.resource_string("static/css/accordion.css")) | ||
|
||
# Add i18n js | ||
statici18n_js_url = self._get_statici18n_js_url() | ||
if statici18n_js_url: | ||
frag.add_javascript_url(self.runtime.local_resource_url(self, statici18n_js_url)) | ||
|
||
frag.add_javascript(self.resource_string("static/js/src/accordion.js")) | ||
frag.initialize_js('AccordionXBlock') | ||
frag = Fragment() | ||
frag.add_javascript(self.resource_string("static/student.js")) | ||
frag.add_css_url(self.runtime.local_resource_url(self, "public/student-ui.css")) | ||
frag.initialize_js( | ||
"AccordionBlock", | ||
{ | ||
"url": self.runtime.local_resource_url(self, "public/student-ui.js"), | ||
"panels": self.panels, | ||
"styling": self.styling, | ||
}, | ||
) | ||
return frag | ||
|
||
# TO-DO: change this handler to perform your own actions. You may need more | ||
# than one handler, or you may not need any handlers at all. | ||
@XBlock.json_handler | ||
def increment_count(self, data, suffix=''): | ||
def studio_save(self, data, suffix=""): # pylint: disable=unused-argument | ||
"""Save config and data based on data received at this API endpoint.""" | ||
panels = data.get("panels", None) | ||
styling = data.get("styling", None) | ||
if panels: | ||
self.panels = panels | ||
if styling: | ||
self.styling = styling | ||
|
||
def studio_view(self, context=None): # pylint: disable=unused-argument | ||
""" | ||
Increments data. An example handler. | ||
Create primary view of the AccordionXBlock, shown to students when viewing courses. | ||
""" | ||
if suffix: | ||
pass # TO-DO: Use the suffix when storing data. | ||
# Just to show data coming in... | ||
assert data['hello'] == 'world' | ||
|
||
self.count += 1 | ||
return {"count": self.count} | ||
html = self.resource_string("static/html/accordion.html") | ||
frag = Fragment(html) | ||
frag.add_javascript(self.resource_string("static/studio.js")) | ||
frag.add_css_url(self.runtime.local_resource_url(self, "public/studio-ui.css")) | ||
frag.initialize_js( | ||
"AccordionEditor", | ||
{ | ||
"url": self.runtime.local_resource_url(self, "public/studio-ui.js"), | ||
"panels": self.panels, | ||
"styling": self.styling, | ||
}, | ||
) | ||
return frag | ||
|
||
# TO-DO: change this to create the scenarios you'd like to see in the | ||
# workbench while developing your XBlock. | ||
@staticmethod | ||
def workbench_scenarios(): | ||
"""Create canned scenario for display in the workbench.""" | ||
return [ | ||
("AccordionXBlock", | ||
"""<accordion/> | ||
"""), | ||
("Multiple AccordionXBlock", | ||
"""<vertical_demo> | ||
( | ||
"AccordionXBlock", | ||
"""<accordion/> | ||
""", | ||
), | ||
( | ||
"Multiple AccordionXBlock", | ||
"""<vertical_demo> | ||
<accordion/> | ||
<accordion/> | ||
<accordion/> | ||
</vertical_demo> | ||
"""), | ||
""", | ||
), | ||
] | ||
|
||
@staticmethod | ||
def _get_statici18n_js_url(): | ||
""" | ||
Return the Javascript translation file for the currently selected language, if any. | ||
Defaults to English if available. | ||
""" | ||
locale_code = translation.get_language() | ||
if locale_code is None: | ||
return None | ||
text_js = 'public/js/translations/{locale_code}/text.js' | ||
lang_code = locale_code.split('-')[0] | ||
for code in (locale_code, lang_code, 'en'): | ||
loader = ResourceLoader(__name__) | ||
if pkg_resources.resource_exists( | ||
loader.module_name, text_js.format(locale_code=code)): | ||
return text_js.format(locale_code=code) | ||
return None | ||
|
||
@staticmethod | ||
def get_dummy(): | ||
""" | ||
Generate initial i18n with dummy method. | ||
""" | ||
return translation.gettext_noop('Dummy') |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.