Skip to content

feat: Syllabus page for learner MFE #1

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

Merged
merged 16 commits into from
Jun 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
979d613
feat: Syllabus page for learner MFE
xitij2000 Mar 21, 2025
72ae54c
fixup! feat: Syllabus page for learner MFE
xitij2000 Apr 7, 2025
ab98147
fixup! fixup! feat: Syllabus page for learner MFE
xitij2000 Apr 7, 2025
0fe0d64
fixup! fixup! fixup! feat: Syllabus page for learner MFE
xitij2000 Apr 8, 2025
9ee2ab9
fixup! fixup! fixup! fixup! feat: Syllabus page for learner MFE
xitij2000 Apr 8, 2025
b58665c
fixup! fixup! fixup! fixup! fixup! feat: Syllabus page for learner MFE
xitij2000 Apr 8, 2025
bd570eb
fixup! fixup! fixup! fixup! fixup! fixup! feat: Syllabus page for lea…
xitij2000 Apr 9, 2025
b7b7b49
fixup! fixup! fixup! fixup! fixup! fixup! fixup! feat: Syllabus page …
xitij2000 Apr 11, 2025
1170669
fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! feat: Syllabu…
xitij2000 Apr 11, 2025
f796a1d
fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! feat: …
xitij2000 Apr 14, 2025
83d5b67
fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup!…
xitij2000 Apr 14, 2025
4e1d551
fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup!…
xitij2000 Apr 14, 2025
de18452
fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup!…
xitij2000 Apr 14, 2025
6b3e17b
fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup!…
xitij2000 Apr 16, 2025
7c146d3
fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup!…
xitij2000 Apr 16, 2025
f2fdb84
fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup!…
xitij2000 Apr 16, 2025
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
661 changes: 661 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

32 changes: 32 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
frontend-plugin-syllabus-tab
##########################

Purpose
*******

This repo contains slots that add a Syllabus tab to the learning MFE.

Getting Started
***************

In ``frontend-app-learning`` create a file called ``env.config.jsx`` with the
following contents:

```javascript
import { slotConfig } from '@open-craft/frontend-plugin-syllabus-tab';


const config = {
pluginSlots: {
...slotConfig,
},
};

export default config;
```

Install this repo as:

```bash
npm install --no-save https://github.com/open-craft/frontend-plugin-syllabus-tab.git
```
6 changes: 6 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const { createConfig } = require('@openedx/frontend-build');

const config = createConfig('babel-preserve-modules');
config.presets.push('@babel/preset-typescript');

module.exports = config;
10 changes: 10 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
coverage:
status:
project:
default:
target: auto
threshold: 0%
patch:
default:
target: auto
threshold: 0%
10 changes: 10 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
const { createConfig } = require('@openedx/frontend-build');

module.exports = createConfig('jest', {
// setupFilesAfterEnv is used after the jest environment has been loaded. In general this is what you want.
// If you want to add config BEFORE jest loads, use setupFiles instead.
coveragePathIgnorePatterns: [
'src/setupTest.js',
'src/i18n',
],
});
Loading