Skip to content

Commit ee61873

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

Some content is hidden

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

43 files changed

+1361
-18
lines changed

.eslintrc.json

+2-1
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

+3-1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
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",
@@ -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
}
+100
Loading
+43
Loading
Loading
+3
Loading
+10
Loading
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+
);
+19
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+
);

src/Assets/DashboardAssets/left.png

1.85 KB
Loading
Loading
Loading

src/Assets/DashboardAssets/right.png

1.83 KB
Loading
+3
Loading
Loading
+10
Loading

src/Assets/DashboardAssets/user.svg

+9
Loading

src/Assets/DashboardAssets/user_icon_big.svg

+9
Loading

0 commit comments

Comments
 (0)