Skip to content
This repository was archived by the owner on Oct 2, 2024. It is now read-only.

Commit 5aac369

Browse files
committed
feat: refactored icons included blog platforms
1 parent bcdd373 commit 5aac369

File tree

6 files changed

+132
-27
lines changed

6 files changed

+132
-27
lines changed

package-lock.json

+76-19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@
1919
},
2020
"dependencies": {
2121
"@auth/prisma-adapter": "^2.1.0",
22+
"@fortawesome/fontawesome-svg-core": "^6.5.2",
23+
"@fortawesome/free-brands-svg-icons": "^6.5.2",
24+
"@fortawesome/free-regular-svg-icons": "^6.5.2",
25+
"@fortawesome/free-solid-svg-icons": "^6.5.2",
26+
"@fortawesome/react-fontawesome": "^0.2.2",
2227
"@headlessui/react": "^2.0.4",
2328
"@heroicons/react": "^2.1.3",
2429
"@ngneat/falso": "^7.2.0",
@@ -28,7 +33,6 @@
2833
"next-auth": "^4.24.7",
2934
"react": "^18",
3035
"react-dom": "^18",
31-
"react-social-icons": "^6.16.0",
3236
"zod": "^3.23.8"
3337
},
3438
"devDependencies": {

src/app/layout.js

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ import { Inter } from "next/font/google";
33
import "./globals.css";
44
import prisma from "@/models/db";
55

6+
import "@fortawesome/fontawesome-svg-core/styles.css";
7+
import { config } from "@fortawesome/fontawesome-svg-core";
8+
config.autoAddCss = false;
9+
610
import { classNames } from "@/utils/classNames";
711
import { authOptions } from "@/app/api/auth/[...nextauth]/route";
812
import Header from "@/components/Header";

src/components/list/Item.js

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
import { ChevronRightIcon } from "@heroicons/react/20/solid";
22
import Image from "next/image";
33
import Link from "next/link";
4-
import { SocialIcon } from "react-social-icons";
4+
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
55

66
import Badge from "@/components/Badge";
7+
import socialIcon from "@/config/socialIcon";
78

89
export default function Item({ data }) {
910
return (
@@ -20,9 +21,10 @@ export default function Item({ data }) {
2021
/>
2122
)}
2223
{data.icon && (
23-
<SocialIcon
24-
network={data.icon}
25-
className="h-12 w-12 flex-none rounded-full bg-gray-50"
24+
<FontAwesomeIcon
25+
icon={socialIcon(data.icon)}
26+
className="h-12 w-12 flex-none rounded-full bg-gray-50 p-2"
27+
style={{ height: 50, width: 50 }}
2628
/>
2729
)}
2830
<div className="min-w-0 flex-auto">
@@ -43,10 +45,10 @@ export default function Item({ data }) {
4345
{data.socials &&
4446
data.socials.map((badge, key) => (
4547
<dd key={key}>
46-
<SocialIcon
47-
network={badge.icon}
48+
<FontAwesomeIcon
49+
icon={socialIcon(badge.icon)}
4850
label={badge.icon}
49-
className="h-6 w-6 rounded-full bg-gray-50 ring-2 ring-white"
51+
className="h-6 w-6 rounded-full bg-gray-50 ring-2 ring-white p-2"
5052
style={{ height: 25, width: 25 }}
5153
/>
5254
</dd>

src/config/app.json

+8
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@
1616
"twitch": {
1717
"value": "twitch",
1818
"display": "Twitch"
19+
},
20+
"devto": {
21+
"value": "devto",
22+
"display": "Dev.to"
23+
},
24+
"hashnode": {
25+
"value": "hashnode",
26+
"display": "Hashnode"
1927
}
2028
},
2129
"reach": {

src/config/socialIcon.js

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import {
2+
faDev,
3+
faHashnode,
4+
faTwitch,
5+
faTwitter,
6+
faYoutube,
7+
} from "@fortawesome/free-brands-svg-icons";
8+
import { faThumbsUp } from "@fortawesome/free-regular-svg-icons";
9+
10+
export default function socialIcon(name) {
11+
let icon = faThumbsUp;
12+
switch (name) {
13+
case "twitter":
14+
icon = faTwitter;
15+
break;
16+
case "youtube":
17+
icon = faYoutube;
18+
break;
19+
case "twitch":
20+
icon = faTwitch;
21+
break;
22+
case "hashnode":
23+
icon = faHashnode;
24+
break;
25+
case "devto":
26+
icon = faDev;
27+
break;
28+
}
29+
return icon;
30+
}

0 commit comments

Comments
 (0)