-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
React conversion + Support Dashboard #1359
Conversation
…sited React media importer revisited
…n-errors Issue #1446/Fix post-login redirects
…rt-user-permissions
Issue/1453 adds support label on profile page
…ions Issue/1438 Grants support users additional permissions
…on-graph Fixes to score screen and individual score semester
…istribution-graph Implements Emanuel's changes to score screen and distribution graphs
…che-busting Issue/1459 remove asset hash cache busting
…y build assets into app image.
Changes for deploy
Fixes duplicate API score calls
…er than the 60. Removed unnecessary iconUurl utility usage in My Widgets instance component. Added CSS style to improve the look of the widget icon in the LTI widget picker.
…g-backwards-compatibility Add expected `img` property to widget instance objects used by the LTI widget picker.
…nent-refactor [React branch] Widget player component refactor
…port options dialog.
…rt-seven React Branch fixes and polish part seven
…ss settings modifier if a student has access to a non-student widget
[React Branch] Fixes and polish: final edition
…eme-ucf to v2.0.1 in composer
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since this work and functionality has (more or less) all been verified in the numerous individual branches that were merged into this one over time, and since it's been running without issue in a production environment for a week, I think this is probably ready to merge.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to merge. Great work!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ship it.
The "React Branch" Update for Materia
Unofficially
dev/10.0
.New and Notable Features
Replaces AngularJS with React and consolidates JS and CSS assets into the main repo
Previously, static assets (JS & CSS) were part of a separate repository, Materia-Server-Client-Assets. This update brings these assets back into the fold in a new top-level
src
directory. Compiled assets are emitted by webpack intopublic/
(public/dist/
when in development environments). Because React is doing the heavy lifting of DOM rendering, the old PHP partial views infuel/app/themes/default/
are being retired.This conversion also affects how theme overrides work. Previously, controllers would listen for Events registered in Fuel package's
bootstrap.php
files, and make use of PHP partial views provided by those packages. While the event registration/trigger system remains, theme packages operate a little differently. See the Materia-Theme-UCF repo for more info.Redesign and improved responsiveness
The React conversion gave us the opportunity to give Materia a much-needed facelift. Enjoy crisper, snappier interfaces, improved UX like creator guide links in the widget creator, and a soon-to-be-implemented Dark Mode.
Improved support and administration
We've added a new user role,
support_user
, to bridge the gap between normal users and administrators. Both support users and admins have access to new admin panels to handle common requests from users. Support users are given access to the User admin interface, where they can easily look up user information, play history, and owned instances - and even administrate those instances directly. They also have access to the Instance admin interface, which allows fast lookups of any instance in the database and administrative actions like modifying settings or adding users.The Widget admin interface remains available for super users, allowing for fast widget installation and updates and administration of the widget catalog.
Accessibility information
The widget catalog and details pages now include additional qualifying information about keyboard and screen reader accessibility if the requisite metadata is included in a widget's
install.yaml
:The new Materia-Widget-Dependencies package
Because of MSCA's retirement, the widget development kit will need a new node package dependency to provide the required Materia JS and CSS to properly run. This is provided in the new
materia-widget-dependencies
package, which is located within apackage.json
in thepublic/dist
directory. The package can be published via a GitHub action as required, to include the latest and greatest changes from the Materia engine, creator, and score cores, or other aspects of the creator and player.Miscellaneous updates
Other notable features include:
.m4a
Extra Notes
First-time installation
Navigate to
Materia/docker
and run./run_first.sh
Starting up the local Materia instance
Materia/docker
and rundocker-compose up
yarn dev
Useful Commands
These need to be run in the
Materia/docker
directory.To create a user
./run.sh php oil r admin:new_user <username> <first> <mi> <last> <email> <password>
To give the user a role
./run.sh php oil r admin:give_user_role <username> <rolename>
Currently available roles are
basic_author
,support_user
andsuper_user
.