Skip to content
Closed
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
2756e3d
feat: slot component for dynamic plugins
johnvente Dec 13, 2023
e9f29a6
temp: using the component wrapper with the plugins
johnvente Dec 13, 2023
b59d783
fix: conflicts
johnvente Dec 13, 2023
5fcc77f
fix: conflicts
johnvente Dec 13, 2023
c548d45
fix: linter problems
johnvente Dec 13, 2023
d6b09c5
fix: unit test
johnvente Dec 13, 2023
7fee38c
fix: children and props wrapper dependecies
johnvente Dec 16, 2023
55468d6
fix: unit test for pluggable component
johnvente Dec 16, 2023
cd64f47
test: update tests for pluggable component
johnvente Dec 17, 2023
dd365d5
feat: build form email full pluggable
johnvente Dec 20, 2023
5c16343
test: update test for pluggable component
johnvente Dec 22, 2023
52f6dad
feat: context factory util and build email form extensible with context
johnvente Dec 22, 2023
ee2dffa
refactor: update plugins with context data
johnvente Dec 22, 2023
adbf942
test: reducer test for build email form extensible
johnvente Dec 22, 2023
13003f1
refactor: remove unnecessary comments
johnvente Dec 26, 2023
ed8a010
refactor: addressing some some improvements
johnvente Dec 27, 2023
0d94489
feat: adding course id for plugins
johnvente Dec 29, 2023
7e64b99
fix: solve conflicts
johnvente Jan 30, 2024
6b1e8ec
fix: dependencies problems
johnvente Jan 30, 2024
4d7a58d
feat: allow multiple plugins for pluggable component
johnvente Feb 2, 2024
5f013fc
refactor: change plugins hook to a component
johnvente Feb 5, 2024
fc0b1bf
docs: ui slot external config
johnvente Feb 7, 2024
f2716f0
fix: solve conflicts
johnvente Mar 7, 2024
ffa1797
refactor: removing unnecessary bulk email form and changing paragon d…
johnvente Mar 7, 2024
45cedc9
refactor: removing unnecessary code
johnvente Mar 8, 2024
39b9941
fix: check box form test
johnvente Mar 8, 2024
fccfd57
refactor: changing BuildEmailFormExtensible to BulkEmailForm
johnvente Mar 20, 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
19 changes: 18 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,26 @@
const path = require('path');
/* eslint-disable import/no-extraneous-dependencies */

const { createConfig } = require('@edx/frontend-build');

module.exports = createConfig('eslint', {
settings: {
'import/resolver': {
webpack: {
config: path.resolve(__dirname, 'webpack.dev.config.js'),
},
},
},
rules: {
'react/function-component-definition': 'off',
'import/prefer-default-export': 'off',
'import/no-extraneous-dependencies': 'off',
},
overrides: [
{
files: ['plugins/**/*.jsx'],
rules: {
'import/no-extraneous-dependencies': 'off',
},
},
],
});
3 changes: 3 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,7 @@ module.exports = createConfig('jest', {
'src/setupTest.js',
'src/i18n',
],
moduleNameMapper: {
'@node_modules/(.*)': '<rootDir>/node_modules/$1'
},
});
Loading