Fetch repo

This commit is contained in:
MD. Ariful Alam
2021-08-23 01:08:27 +06:00
parent eff1e1fd08
commit 3924ed3288
5 changed files with 91 additions and 156 deletions

View File

@@ -13,6 +13,7 @@ import Skill from "./components/Skill";
import Experience from "./components/Experience";
import Education from "./components/Education";
import Project from "./components/Project";
import { setRepo } from "./store/slices/repoSlice";
function App() {
const dispatch = useDispatch();
@@ -28,13 +29,13 @@ function App() {
}, [theme])
useEffect(() => {
loadGitData();
loadProfile();
loadRepo();
}, [])
const loadGitData = () => {
const loadProfile = () => {
axios.get(`https://api.github.com/users/${config.githubUsername}`)
.then(response => {
let data = response.data;
let profileData = {
@@ -48,14 +49,15 @@ function App() {
dispatch(setProfile(profileData));
})
.catch(error => {
.catch((error) => {
console.error('Error:', error);
try {
setRateLimit({
remaining: error.response.headers['x-ratelimit-remaining'],
reset: moment(new Date(error.response.headers['x-ratelimit-reset'] * 1000)).fromNow(),
})
});
if (error.response.status === 403) {
setError(403);
} else if (error.response.status === 404) {
@@ -63,14 +65,41 @@ function App() {
} else {
setError(500);
}
} catch (error) {
} catch (error2) {
setError(500);
}
})
.finally(() => {
dispatch(setLoading(false));
});
}
const loadRepo = () => {
dispatch(setLoading(true));
axios.get(`https://api.github.com/search/repositories?q=user:${config.githubUsername}+&s=stars&type=Repositories`)
.then(response => {
let data = response.data;
dispatch(setRepo(data.items));
})
.catch((error) => {
console.error('Error:', error);
try {
setRateLimit({
remaining: error.response.headers['x-ratelimit-remaining'],
reset: moment(new Date(error.response.headers['x-ratelimit-reset'] * 1000)).fromNow(),
});
} catch (error2) {
console.error('Error:', error2);
}
})
.finally(() => {
dispatch(setLoading(false));
});;
}
return (
@@ -109,7 +138,7 @@ function App() {
) : (
<div className="p-4 lg:p-10 min-h-full bg-base-200">
<div className="grid grid-cols-1 gap-6 lg:grid-cols-3 lg:bg-base-200 rounded-box">
<div className="row-span-3">
<div className="col-span-1">
<div className="grid grid-cols-1 gap-6">
{
!config.themeConfig.disableSwitch && (
@@ -121,100 +150,13 @@ function App() {
<Skill/>
</div>
</div>
<Experience/>
<Education/>
<Project/>
{/* <div className="card shadow-lg compact side bg-base-100">
<div className="flex-row items-center space-x-4 card-body">
<div>
<div className="avatar">
<div className="rounded-full w-14 h-14 shadow">
<img src="https://i.pravatar.cc/500?img=32" />
</div>
</div>
</div>
<div>
<h2 className="card-title">Janis Johnson</h2>
<p className="text-base-content text-opacity-40">Accounts Agent</p>
</div>
<div className="col-span-2">
<div className="grid grid-cols-1 gap-6">
<Experience/>
<Education/>
<Project/>
</div>
</div>
<div className="card shadow-lg compact side bg-base-100">
<div className="flex-row items-center space-x-4 card-body">
<div className="flex-1">
<h2 className="card-title">Meredith Mayer</h2>
<p className="text-base-content text-opacity-40">Data Liaison</p>
</div>
<div className="flex-0">
<button className="btn btn-sm">Follow</button>
</div>
</div>
</div>
<div className="card shadow-lg compact side bg-base-100">
<div className="flex-row items-center space-x-4 card-body">
<div className="flex-1">
<h2 className="card-title text-primary">4,600</h2>
<p className="text-base-content text-opacity-40">Page views</p>
</div>
<div className="flex space-x-2 flex-0">
<button className="btn btn-sm btn-square">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" className="inline-block w-6 h-6 stroke-current">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z" />
</svg>
</button>
<button className="btn btn-sm btn-square">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" className="inline-block w-6 h-6 stroke-current">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M5 12h.01M12 12h.01M19 12h.01M6 12a1 1 0 11-2 0 1 1 0 012 0zm7 0a1 1 0 11-2 0 1 1 0 012 0zm7 0a1 1 0 11-2 0 1 1 0 012 0z" />
</svg>
</button>
</div>
</div>
</div>
<div className="card shadow-lg compact side bg-base-100">
<div className="flex-row items-center space-x-4 card-body">
<label className="flex-0">
<input type="checkbox" defaultChecked="checked" className="toggle toggle-primary" />
</label>
<div className="flex-1">
<h2 className="card-title">
Enable Notifications
</h2>
<p className="text-base-content text-opacity-40">
To get latest updates
</p>
</div>
</div>
</div>
<div className="card col-span-1 row-span-3 shadow-lg xl:col-span-2 bg-base-100">
<div className="card-body">
<h2 className="my-4 text-4xl font-bold card-title">
Top 10 UI Components
</h2>
<div className="mb-4 space-x-2 card-actions">
<div className="badge badge-ghost">
Colors
</div>
<div className="badge badge-ghost">
UI Design
</div>
<div className="badge badge-ghost">
Creativity
</div>
</div>
<p>
Rerum reiciendis beatae tenetur excepturi aut pariatur est eos. Sit sit necessitatibus veritatis sed molestiae voluptates incidunt iure sapiente.
</p>
<div className="justify-end space-x-2 card-actions">
<button className="btn btn-primary">
Login
</button>
<button className="btn">
Register
</button>
</div>
</div>
</div> */}
</div>
</div>
)