Skip to content

Commit dc26de1

Browse files
committed
[Starts #171648121] Feature page displays user profile and support updating user info
1 parent 5735837 commit dc26de1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+1453
-21
lines changed

.eslintrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"]}],
2323
"jsx-a11y/control-has-associated-label": [0],
2424
"jsx-a11y/anchor-is-valid": [0],
25-
"react/jsx-props-no-spreading": 0
25+
"react/jsx-props-no-spreading": 0,
26+
"jsx-a11y/click-events-have-key-events": [0]
2627
}
2728
}

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@
4242
"eslint-plugin-prettier": "^3.1.3",
4343
"eslint-plugin-react": "^7.20.0",
4444
"eslint-plugin-react-hooks": "^2.5.0",
45+
"file-loader": "^6.0.0",
4546
"html-webpack-plugin": "^4.3.0",
4647
"jest": "^26.0.1",
4748
"moxios": "^0.4.0",
48-
"node-sass": "^4.14.1",
4949
"prettier": "^2.0.5",
5050
"react-svg-loader": "^3.0.3",
5151
"redux-mock-store": "^1.5.4",
@@ -68,6 +68,7 @@
6868
"enzyme-adapter-react-16": "^1.15.2",
6969
"express": "^4.17.1",
7070
"jwt-decode": "^2.2.0",
71+
"node-sass": "^4.14.1",
7172
"prop-types": "^15.7.2",
7273
"query-string": "^6.12.1",
7374
"react": "^16.13.1",
@@ -80,6 +81,7 @@
8081
"redux": "^4.0.5",
8182
"redux-devtools-extension": "^2.13.8",
8283
"redux-logger": "^3.0.6",
83-
"redux-thunk": "^2.3.0"
84+
"redux-thunk": "^2.3.0",
85+
"simple-flexbox": "^2.3.1"
8486
}
8587
}
Lines changed: 100 additions & 0 deletions
Loading
Lines changed: 43 additions & 0 deletions
Loading
Lines changed: 44 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 10 additions & 0 deletions
Loading
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import React from "react";
2+
3+
export default () => (
4+
<svg
5+
width="18"
6+
height="19"
7+
viewBox="0 0 18 19"
8+
fill="none"
9+
xmlns="http://www.w3.org/2000/svg"
10+
>
11+
<path
12+
d="M7.99999 19C9.10374 19 9.99905 18.1047 9.99905 17H6.00093C6.00093 18.1047 6.89624 19 7.99999 19ZM14.7309 14.3216C14.1272 13.6728 12.9975 12.6969 12.9975 9.5C12.9975 7.07188 11.295 5.12812 8.99937 4.65125V4C8.99937 3.44781 8.55187 3 7.99999 3C7.44812 3 7.00062 3.44781 7.00062 4V4.65125C4.70499 5.12812 3.00249 7.07188 3.00249 9.5C3.00249 12.6969 1.8728 13.6728 1.26905 14.3216C1.08155 14.5231 0.998429 14.7641 0.999991 15C1.00343 15.5125 1.40562 16 2.00312 16H13.9969C14.5944 16 14.9969 15.5125 15 15C15.0016 14.7641 14.9184 14.5228 14.7309 14.3216Z"
13+
fill="#C5C7CD"
14+
/>
15+
<circle
16+
cx="13"
17+
cy="5"
18+
r="3.75"
19+
fill="#3751FF"
20+
stroke="#F7F8FC"
21+
strokeWidth="1.5"
22+
/>
23+
</svg>
24+
);
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import React from "react";
2+
3+
export default () => (
4+
<svg
5+
width="16"
6+
height="16"
7+
viewBox="0 0 16 16"
8+
fill="none"
9+
xmlns="http://www.w3.org/2000/svg"
10+
>
11+
<circle cx="6.5" cy="6.5" r="5.75" stroke="#C5C7CD" strokeWidth="1.5" />
12+
<path
13+
d="M11 11L15 15"
14+
stroke="#C5C7CD"
15+
strokeWidth="1.5"
16+
strokeLinecap="round"
17+
/>
18+
</svg>
19+
);
1.85 KB
Loading

0 commit comments

Comments
 (0)