Skip to content
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

[Gymnasium]: add custom front end components, messaging #1

Open
wants to merge 28 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
5219606
feat: use frontend-plugin-framework to provide a FooterSlot
brian-smith-tcril May 8, 2024
3de2a2c
Update .env.development
rediris Jul 30, 2024
eb9abd5
update packages
rediris Jul 30, 2024
885ed04
hide all the things
rediris Jul 30, 2024
61cb217
add gym css
rediris Jul 30, 2024
422d6ae
add gym frontend
rediris Jul 30, 2024
7346ef8
Update Head.jsx
rediris Jul 30, 2024
21f78c5
Update AccountSettingsPage.jsx
rediris Jul 30, 2024
18999b6
update env
rediris Jul 31, 2024
61cbe98
update packages
rediris Aug 5, 2024
2b36c29
Update index.html
rediris Aug 5, 2024
d484be6
Update package-lock.json
rediris Aug 5, 2024
dd47799
Update index.jsx
rediris Aug 5, 2024
6f312ff
update packages
rediris Aug 13, 2024
22e477a
Update index.html
rediris Aug 13, 2024
eb114e6
Update index.html
rediris Aug 29, 2024
6930155
Update index.html
rediris Aug 29, 2024
53f48a4
chore: remove duplicated favicon, stylesheet
rediris Sep 23, 2024
2be3633
chore: update scss
rediris Sep 23, 2024
e1dba1f
feat: add intercom + onetrust support
rediris Oct 9, 2024
328838c
chore: update gym-frontend to latest version
rediris Oct 14, 2024
7486ba7
chore: remove data-language from onetrust script
rediris Oct 14, 2024
919c293
chore: add generated (blank) webpack.dev-tutor.config.js
rediris Oct 15, 2024
80ef3bc
chore: update gym-frontend
rediris Oct 22, 2024
148653b
chore: version increment
rediris Oct 31, 2024
4efcbca
chore: update gym-frontend
rediris Nov 25, 2024
6f75f65
feat: add custom error pages
rediris Nov 25, 2024
3bf598a
chore: update gym-frontend version
rediris Nov 26, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .env.development
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,29 @@ CSRF_TOKEN_API_PATH='/csrf/api/v1/token'
DEMOGRAPHICS_BASE_URL='http://localhost:18360'
DISCOVERY_API_BASE_URL=''
ECOMMERCE_BASE_URL='http://localhost:18130'
ENABLE_DEMOGRAPHICS_COLLECTION=''
FAVICON_URL=https://edx-cdn.org/v3/default/favicon.ico
ENABLE_DEMOGRAPHICS_COLLECTION='false'
FAVICON_URL=http://edly.io:8888/favicon.svg
LANGUAGE_PREFERENCE_COOKIE_NAME='openedx-language-preference'
LMS_BASE_URL='http://localhost:18000'
LOGIN_URL='http://localhost:18000/login'
LOGO_TRADEMARK_URL=https://edx-cdn.org/v3/default/logo-trademark.svg
LOGO_URL=https://edx-cdn.org/v3/default/logo.svg
LOGO_WHITE_URL=https://edx-cdn.org/v3/default/logo-white.svg
LOGOUT_URL='http://localhost:18000/logout'
MARKETING_SITE_BASE_URL='http://localhost:5335'
MARKETING_SITE_BASE_URL='http://edly.io:8888'
NODE_ENV='development'
ORDER_HISTORY_URL='http://localhost:1996/orders'
PORT=1997
PUBLISHER_BASE_URL=''
REFRESH_ACCESS_TOKEN_ENDPOINT='http://localhost:18000/login_refresh'
SEGMENT_KEY=''
SITE_NAME=localhost
SITE_NAME='Gymnasium Dev'
STUDIO_BASE_URL=''
SUPPORT_URL='http://localhost:18000/support'
USER_INFO_COOKIE_NAME='edx-user-info'
ENABLE_COPPA_COMPLIANCE=''
ENABLE_ACCOUNT_DELETION=''
ENABLE_DOB_UPDATE=''
ENABLE_COPPA_COMPLIANCE='true'
ENABLE_ACCOUNT_DELETION='false'
ENABLE_DOB_UPDATE='false'
MARKETING_EMAILS_OPT_IN=''
APP_ID=
MFE_CONFIG_API_URL=
Expand Down
4 changes: 2 additions & 2 deletions .env.test
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ DEMOGRAPHICS_BASE_URL='http://localhost:18360'
DISCOVERY_API_BASE_URL=''
ECOMMERCE_BASE_URL='http://localhost:18130'
ENABLE_DEMOGRAPHICS_COLLECTION=''
FAVICON_URL=https://edx-cdn.org/v3/default/favicon.ico
FAVICON_URL=http://edly.io:8888/favicon.svg
LANGUAGE_PREFERENCE_COOKIE_NAME='openedx-language-preference'
LMS_BASE_URL='http://localhost:18000'
LOGIN_URL='http://localhost:18000/login'
Expand All @@ -20,7 +20,7 @@ ORDER_HISTORY_URL='http://localhost:1996/orders'
PUBLISHER_BASE_URL=''
REFRESH_ACCESS_TOKEN_ENDPOINT='http://localhost:18000/login_refresh'
SEGMENT_KEY=''
SITE_NAME=localhost
SITE_NAME='Gymnasium Dev'
STUDIO_BASE_URL=''
SUPPORT_URL='http://localhost:18000/support'
USER_INFO_COOKIE_NAME='edx-user-info'
Expand Down
6 changes: 6 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,12 @@ This MFE is bundled with `Devstack <https://github.com/openedx/devstack>`_, see

.. image:: ./docs/images/localhost_preview.png

Plugins
=======
This MFE can be customized using `Frontend Plugin Framework <https://github.com/openedx/frontend-plugin-framework>`_.

The parts of this MFE that can be customized in that manner are documented `here </src/plugin-slots>`_.

Environment Variables/Setup Notes
=================================

Expand Down
Loading