Skip to content

RDM submission download / markdown updates #6835

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 33 commits into from
Feb 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
9611beb
UN-129 - improve universal-nav ssr placeholder
vas3a Feb 16, 2023
f22b5eb
fix: add newline to TopcoderHeader file
vas3a Feb 16, 2023
1128d52
RDM submission download support
jmgasper Feb 16, 2023
001704a
Better markdown rendering
jmgasper Feb 17, 2023
d3cd33a
Fix for showing “My Profile” or “Profiles”
jmgasper Feb 17, 2023
d2b6149
Merge branch 'universal_nav' into marathon_match_submission_download
jmgasper Feb 17, 2023
910aeb8
Failing test fix
jmgasper Feb 17, 2023
94e7d74
Build fix
jmgasper Feb 17, 2023
327f5e3
Build / test fix
jmgasper Feb 17, 2023
a28aff4
Hopefully last build fix
jmgasper Feb 17, 2023
77343fa
Merge pull request #6828 from topcoder-platform/UN-129_improve-uninav…
jmgasper Feb 17, 2023
077e2ce
Lint issue
jmgasper Feb 17, 2023
588ed26
SSR fixes
jmgasper Feb 20, 2023
84b2357
Merge branch 'universal_nav' into marathon_match_submission_download
jmgasper Feb 20, 2023
063f150
fix: add package-lock & updatesnapshot
vas3a Feb 20, 2023
250daea
Merge branch 'universal_nav' into marathon_match_submission_download
jmgasper Feb 20, 2023
5db3d00
Updated package lock
jmgasper Feb 20, 2023
7438878
Test lint fix
jmgasper Feb 20, 2023
755181a
Let’s try this.
jmgasper Feb 20, 2023
b17f4fc
Revert "Let’s try this."
jmgasper Feb 20, 2023
6231534
Build fix
jmgasper Feb 20, 2023
e29a125
Build fixes
jmgasper Feb 21, 2023
a645c6a
Revert "Revert "Let’s try this.""
jmgasper Feb 21, 2023
9ac65f9
Revert "Revert "Revert "Let’s try this."""
jmgasper Feb 21, 2023
fc86baa
Additional build fixes
jmgasper Feb 21, 2023
5df8f1a
Build fix
jmgasper Feb 21, 2023
9f2427e
List styling for indentation
jmgasper Feb 22, 2023
e0ee222
Temporary fix for white screen issue
jmgasper Feb 22, 2023
9ebccfa
Lint fix
jmgasper Feb 22, 2023
2575f8c
Lint fix
jmgasper Feb 22, 2023
72851b1
Lint fix
jmgasper Feb 22, 2023
8969b47
update uninav loader
vas3a Feb 22, 2023
a82df96
Merge pull request #6832 from topcoder-platform/update-uninav-loader
jmgasper Feb 22, 2023
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
8 changes: 6 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@
"rules": {
"jsx-a11y/anchor-is-valid": false,
"import/no-cycle": [2, { "maxDepth": 1 }],
"react/forbid-prop-types": false
"react/forbid-prop-types": false,
"react/no-unknown-property": false,
"react/jsx-no-bind": false,
"react/destructuring-assignment": false,
"react/no-array-index-key": false
},
"env": {
"browser": true
}
}
}
4 changes: 2 additions & 2 deletions __tests__/shared/components/tc-communities/ArticleCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ test('render properly', () => {
TU.renderIntoDocument((
<Wrapper
title="How Does An IOS 10 LCD Work"
text={'<p>There are advances being made in science and technology everyday</p>'}
text="<p>There are advances being made in science and technology everyday</p>"
imageSrc="/themes/wipro/home/news-01.jpg"
link={{
title: 'Read More',
Expand All @@ -67,7 +67,7 @@ test('render properly', () => {
TU.renderIntoDocument((
<Wrapper
title="How Does An IOS 10 LCD Work"
text={'<p>There are advances being made in science and technology everyday</p>'}
text="<p>There are advances being made in science and technology everyday</p>"
imageSrc="/themes/wipro/home/news-01.jpg"
link={{
title: 'Read More',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,34 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Matches shallow snapshot 1`] = `
<TopcoderHeaderPlaceholder
<withRouter(TopcoderHeader)
auth={
Object {
"profile": Object {},
}
}
dispatch={[Function]}
store={
Object {
"dispatch": [Function],
"getState": [Function],
"subscribe": [Function],
}
}
storeSubscription={
Subscription {
"listeners": Object {
"notify": [Function],
},
"onStateChange": [Function],
"parentSub": undefined,
"store": Object {
"dispatch": [Function],
"getState": [Function],
"subscribe": [Function],
},
"unsubscribe": null,
}
}
/>
`;
10 changes: 10 additions & 0 deletions config/jest/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,15 @@ global.window.resizeTo = (width, height) => {
global.window.innerHeight = height || global.window.innerHeight;
global.window.dispatchEvent(new Event('resize'));
};
/* eslint-disable lines-between-class-members */
/* eslint-disable no-empty-function */
/* eslint-disable no-unused-vars */
/* eslint-disable class-methods-use-this */
/* eslint-disable no-useless-constructor */
global.MutationObserver = class {
constructor(callback) {}
disconnect() {}
observe(element, initObject) {}
};

jest.mock('services/money');
Loading