As promised, here's the link to the complete source code! 👇 github.com/saarthack/ems Start building! 🔥❤
@haaha4812 ай бұрын
Nice😊
@Super_Hero_G2 ай бұрын
Sir app ko deploy kaise karen please bata do🤪
@amanchoudhary74142 ай бұрын
Bhaiya literally wow 🤌.... Kya kahu .... Ek hi dil to hai..... kitni baar jitoge....
@callsignmaverick-c5o2 ай бұрын
10 lpa project hai kya hai?😂😂
@Yash_kumar_halder2 ай бұрын
Animated website using react please ❤ ( gsap, scrolltTrigger, sheryjs ) Please jaldi video lao mera college hackathon ke kam ayega.🥹🥹
@gouravthakur80942 ай бұрын
kaafi sahi leel ka project hai, definitely want more of this content!!
@abeehazainab1932 ай бұрын
Your energy is incredible-that’s exactly why you’re making such an impact here. 🎊
@bollywoodmeets-hollywood2 ай бұрын
Yes, we want backend in this project.
@aryansebastian34392 ай бұрын
Best KZbin channel for web development 💯
@PythonCourse-j4lАй бұрын
we support sheryians and want more projects with full backend in mern
@bhuvana40602 ай бұрын
Well, guys the problem at 4:08:54 (empty object at 3) is pretty simple to resolve if you know how React works, and no, it is not because of strict mode. The reason for this is that we are using setNewTask (useState) to create a new object on submit, and we are pushing newTask into elem right after the setNewTask. Now React state updates are asynchronous. This means that when you try to push newState into elem while the object inside setNewTask has not yet been created, it still has an empty object. due to which every time your first push will be an empty object (as while state creation it was initialized). If you still didn't understand here is something: 1) const [newTask, setNewTask] = useState({}); 2) setNewTask({ taskTitle, taskDescription, taskDate, category, active: false, newTask: true, failed: false, completed: false, }); 3) elem.tasks.push(newTask); Now 1 will run first, seNewTask is asynchronous which means it will take time so 3) will run , now when 3) runs before 2) newTask has an empty object . Now after 3) runs your 2) will run . hope this makes sense. FIX: you don't need a state just use a constant function. code___________________________________________: const submitHandler = (e) => { e.preventDefault(); const newTask = { taskTitle, taskDescription, taskDate, category, active: false, newTask: true, failed: false, completed: false, }; const data = userData; data.forEach(function (elem) { if (asignTo === elem.firstName) { elem.tasks.push(newTask); elem.taskCounts.newTask = elem.taskCounts.newTask + 1; } }); setUserData(data); console.log(data); setTaskTitle(""); setCategory(""); setAsignTo(""); setTaskDate(""); setTaskDescription(""); }; Hope this is helpful guys
@ASHER-er9nq2 ай бұрын
Hii , can you give your source code for this project
@ASMITPHUYAL-y2iАй бұрын
or we could just use async await ..?
@bhuvana4060Ай бұрын
@@ASMITPHUYAL-y2i yup do you want to complicate , why use state and then an async function for something which can be solved using a const
@truptibalbudhe6987Ай бұрын
@@ASMITPHUYAL-y2i we cannot use async await. It will not work
@akaCh4seАй бұрын
so, we should remove the setTask state, and are you gettting the userData from the authContext like sarthak did?
@kamranshah-v1mАй бұрын
2:03:09, those who are confused, why the user is not being set even after he has set the role, which is clearly visible in localstorage, the reason is that he has not converted it to javascript object, he forgot to use JSON.parse() in useEffect, which resulted in being user as undefined.
@Anilkumar-u2i8t15 күн бұрын
Bro, Great observation!!!
@mad-pn3nq2 ай бұрын
Yt kholthe hi video recommend hua meri Khushi batha nahi saktha❤
@usmanazhar18772 ай бұрын
yrr bhaiya mn yehi wait krraha ttha aj 17 oct hai react project dalna tha apnay aur bs foran youtbe pay agaya ❣️❣️❣️abhi betha hn dekhnee amazing love from pakistan bhaiya❤️❤️❤️you guyz are amamzinggh
@omkarmandal813813 күн бұрын
Thank You ! Your Content is One of a kind and is what is required in current scenario. This is the best way to learn it . I've seen many other tutorials none were as good as this video because here you make mistakes and teach us how to solve them.Keep up the Good Work. I wish this channel makes more traffic.
@codersproject2 ай бұрын
❤1 like = Job
@gachawings2 ай бұрын
❤1 like = 1 Project 😏
@hypernoob59162 ай бұрын
ha tere pe comment karne se hi toh job mil rhi, agar aisi harakte karte rahe to sabka to pta nhi tera to nhi hi lagega
@sujatamali31Ай бұрын
Bro😂
@AdityaSingh0164 күн бұрын
Job dila ab like kar diya
@tejasshelke2081Ай бұрын
Nice project brother, i just completed the project and came here to appreciate you and harshbhaiya for such an amazing content . I would love to saw more videos like this some more complex project
@dhruvbhatia573710 күн бұрын
Bhai work kar rha hai properly?
@tejasshelke20819 күн бұрын
Yes, do you want github link?
@huzaifamukhtar56672 ай бұрын
One of the world best instructor love from Pakistan ❤❤
@sandeepgajanan2 ай бұрын
Thank you, bhayya. I genuinely appreciate how you tackle projects freshly and show us the errors and how to fix them. It makes the learning process so much more authentic and relatable. Big thanks to Sheriyans for making me realize that you always need to go through trial and error to achieve success.❤
@aakashdeep_23102 ай бұрын
we need full mern series, with full stack projects
@blondigaming32352 ай бұрын
Thanks for starting a series like this
@thakurutkarshpratapsingh2622 ай бұрын
i saw your react last video, amazing and from then only we were waiting for tailwind
@tusharrai4080Ай бұрын
project done.......gonna add more functionalities to it⌛❤🔥
@AllAboutTechnologАй бұрын
Bro can you provide ur GitHub link I'm facing issues
@RoronoaZoro7868723 күн бұрын
1:26:56 muje console me null ku aaraha hai koi bato psss pzzzz pzzzz bhot try kiya solution nahi milra
@abofficial1732 ай бұрын
At 23 Oct 2024, completed till 1:10:00. Soon will complete the full project InshaaAllah 💪🏻 Thanks for the video.
@shouryamittal5500Ай бұрын
Has you completed it?
@FatimaMadeItАй бұрын
@@shouryamittal5500 *Have
@techsavy566917 күн бұрын
After you get that salary, let us know. I will also start watching it.
@sharmastyles27492 ай бұрын
3:13:20 see the date this video is recorded on 14 oct ! Really Sheriyans are working very hard for us!
@slayersiddheshg3862 ай бұрын
bhaiya video ke starting me dikhya karo ki end product kaise dikhne wala hai or ek overview diya karo
@Piyush_003-e1v2 ай бұрын
Bhai mene aapka channel dosto ke saath share nhi 😢 kiya kyunki aap padhate ho hi itna acha ki kisi or ko btane ka man hi nhi karta 😅😅😅❤❤❤❤
@MANISHKUMAR-wb7hc2 ай бұрын
Us bro us😂😅
@Aryman37622 ай бұрын
Same Bhai Mene Bhi Kisi Ko Nhi Bataya
@mr.rising56912 ай бұрын
Literally Bhai us 😅
@Piyush_003-e1v2 ай бұрын
@@MANISHKUMAR-wb7hc bhai mere dost ka naam bhi manish hi hai😅😅
@anishtanvar23022 ай бұрын
Lekin bhai tere dost bhi tujhe bina btaye SHERYIANS CODING SCHOOL ko hi dekhte honge🤣🤣🤣🤣
@onkardheemate10662 ай бұрын
yesterday i complited react js course and today you just uploaded next video ..thank you so much
@sagnikmukherjee57812 ай бұрын
God of youtube learning industry is back ❤
@ahmadsajjad57202 ай бұрын
Thkx brother waiting for this video 😊😊😊
@AzanKhan-hw9df2 ай бұрын
You Are Great Developer love From Pakistan ❤❤❤❤❤❤
@BeastGuru522 ай бұрын
Best React Project With Great Explanation and Beginer can make this project easily and simply.
@harshavardhan7074Ай бұрын
motivation in the middle 🔥💯
@mdtouhidulislam870520 күн бұрын
Thanks for giving this type of project video...REally, I've learned a lot. I'd low idea of how to and where to and when to use states, useEffects, UseContext, forEach, find etc etc...after, your project video i've learned a lot and also got some confidennce.. I hope you'll upload this type of project in the incoming days...and with your this project video, it took me to 15-16 days to make this project by myself... thank vaiya...
@RoronoaZoro7868725 күн бұрын
Bhot sahi bhaiya bhot hard 🎉🎉🎉
@1anu_ra-dha.Ай бұрын
finally completed this project .Thanks bhai🙇♀
@PrajwalPatil-qs2wh2 ай бұрын
Nice video bro it would be very help full for any one who has finished the learning phase of react and willing to go to project phase make few more context of this sort...!
@CodeCrafte_r2 ай бұрын
We want Mern stack projects ❤❤❤❤❤❤❤
@chatterjeeprotyushaАй бұрын
Doneeeeee,,Completed and also created😭😭❣❣
@SaaraNasir18 күн бұрын
github link do
@Sumit-c1p5 күн бұрын
Love from UP❤❤❤❤ Maja aa gya bhaiiii!!!!!!😇😇😇😇
@ravichaudhary61315 күн бұрын
Bhai apne isko deploy krdiya?
@FaizanRaza-f2x2 ай бұрын
Love from Pakistan ❤🎉. Although you don't accept it but still sending it over🎉😊. Learned a lot from you!
@rakshii49622 ай бұрын
Bhai tumhe roti miltihe kay?😂
@msd7rishi5142 ай бұрын
@@rakshii4962 bhai tumhe आटा milta hai kya aisa puchhna chahiye tha roti to door ki baat hai 😂
@muzamilsattar4942 ай бұрын
@@msd7rishi514 han bro sab milta hay 😂😂😂😂 per mehnga bahut hay 😁
@alirana92442 ай бұрын
@@rakshii4962han milti ha beef ke sath 😂😂😂😂
@rakshii49622 ай бұрын
@@alirana9244 bro vo beef he ya suar dheklo
@codingbabus.s62142 ай бұрын
Hi sarthak it's really a great project anyone can understand easily
@jane_rosso2 ай бұрын
addicted to this channel 🐲💗
@junaidkhn997917 күн бұрын
1:39:40 admin dashboard or user dashboard wali conditional statement wrong h as uska else wala part joki employee dashboard ko render krti h wo humesha true rhegi. (proof - u can see the scroll bar coming in right the dashboard is rendered below the login page)
@NihitGupta-dw4pb12 күн бұрын
{!user ?:''} {user=='admin'?:(user == 'employee' ? :null)} This is updated code for anyone who need
@sufiyanmogal15272 ай бұрын
we need a full stack project
@MuhammadHaris-rt7wx2 ай бұрын
Was waiting for this! For past couple of days
@CricketFanClubvm1wy2 ай бұрын
Thank u so much ❤❤❤. Love u all sheriyans
@full_stack_developer-ih4gc27 күн бұрын
incredible project love it 😍😍😍😍
@jawadmdkhn2 ай бұрын
This will Change of many peoples life❤
@white_code77362 ай бұрын
Wowwww❤
@vishwaskumar25082 ай бұрын
Thank you so much for this video, love from bangalore ❤❤❤
@psvvlogs94322 ай бұрын
bro your way of teaching is superb
@BalochScripterАй бұрын
sir see i have use find , map and filter but no matter what i use it still throws the error that find is not a function or filter is not a function
@sahilgupta70012 ай бұрын
No hate, but without using backend how can you say this project is a industry level project, real work starts only when there is backend, I may be partially wrong but one thing is for sure that I am not totally wrong
@sufiyanmogal15272 ай бұрын
yes backend is the brain of the project but now the viewers don't know backend bro if you u can implement by yourself just learn from anywhere dont depend on any one,
@user-cs8lu1gk6iАй бұрын
yess,, i was thinking the same,, as a 10 LPA kind of industry grade project, it should be like first creating the highlevel and then low level system design all the apis gonna build data models etc.,, then if you wanna complete the frontend part first, mimicing incoming data by using dumy data is fine,, or better built the backend first(my opinion). though its just my opinion , it depends on how do the developer vision and after all the results matter. Again its just an opinion.
@KRISHNAPRASAD-x4f2 ай бұрын
Hi bro love your videos great explanation ❤
@harshsharma5232 ай бұрын
Pichhle videos ki baat kr raha hai wo
@ShivikaGarg-g2l2 ай бұрын
amazing work by Sheryians team
@aviop90282 ай бұрын
Thank you sarthak bhai for this vedio(reach badhne keliye comment kiya h).
@pardeepsingh23652 ай бұрын
Thankyou so much for this amazing project❤❤
@tushxr05Ай бұрын
please ase projects ki video ooor bhi layo, mza agya is project ko bna😉😁
@m.h.wasimelahi38782 ай бұрын
Bhai full mern Stack base project bnwao plz humne front end aur backend ki communication seekhni ha 😊
@montogaming72392 ай бұрын
Bhai Aisa kuch tutorial/end to end wala video Mila kya tumko ki dono Sikh saken frontend and backend aur uska dono ke bich ka communication😊
@Debanjali-uk7wf2 ай бұрын
Thanks to all the team members for such efforts
@Snehasharnagatshorts2 ай бұрын
Feeling glad that i am studying at offline centre....
@iamUtcurse2 ай бұрын
4hrs straight upp without bakwaas TYSM bhaiya ❤
@iabhaysharma2 ай бұрын
Good work bro ❤
@ShubhamChakraborty032 ай бұрын
great will be waiting for backend project of the same 🔥🔥
@RishiPandey-s2h2 ай бұрын
This is crazy video thanks for sheriyans coding school
@prakshitgodsera7452 ай бұрын
🥺 sharthak bhaiya 🎉apki mehnat dekh mere aankh 🥺bhar atain h. Jitna v video h apki sab mast h .🎉
@anshupatel60412 ай бұрын
Thanks sarthak, i'll complete those comments
@relsb5536Ай бұрын
Thank you sheryians 💕
@BeastGuru522 ай бұрын
kya padhaya hy sirr. bilkul sbb kuch clear ho gya aik aik cheez!!!
@aryakakade9292 ай бұрын
have you completed this project
@BeastGuru522 ай бұрын
@@aryakakade929 almost
@Call_Me_Mortis2 ай бұрын
@@BeastGuru52 hey bro can u give me the source code
@BeastGuru52Ай бұрын
@@Call_Me_Mortis sir may nay context ki jaga redux use kiya hy chahiye hy tu btao
@paramitabiswal71102 ай бұрын
Wonderful project bhaiya ji🙏 Thank you so much
@nawazthezaifre887027 күн бұрын
at 1:12:31 why taskContent is not visible ?
@PythonCourse-j4lАй бұрын
we want more projects like this
@luckkkyyyy562 ай бұрын
Love ur content ❤
@aayushigorania55422 ай бұрын
Love you sheryians ❤❤❤
@sbgmi012912 ай бұрын
Thankyou Brother for giving us your important knowledge
@sanipatel48292 ай бұрын
Love from Gujarat ❤
@Faizk155012 ай бұрын
we want more projects videos like this
@Loko-q7n2 ай бұрын
video dekhne me maza to aata hai bhai, thanks for the project
@mohdanasshaikh202 ай бұрын
Bhai itni achchi video banai mager local storage ke data wagera mai bht bhapla diya aap ne
@white_code77362 ай бұрын
Bestest explanation bhai❤
@suhaib_nisar2 ай бұрын
Bro such a great project just make another full stack project after uploading backend with industry standards
@webByTalha2 ай бұрын
Love From Pakistan. Really Amazing Playlist.
@Webdevgiyas2 ай бұрын
thk u soo much. waiting for this ☺️☺️☺️☺️☺️☺️☺️☺️. soooo happy
@hamudxd9497Ай бұрын
BUHUT BADHIYA ❤
@muhammadbakhsh77802 ай бұрын
Me ne apse aur harsh Bhai se buhut Kuch seekha h. So many many thanks🎉
@ethicalhacker92052 ай бұрын
Nice & Thanks for this Project👋
@amanmourya77272 ай бұрын
Facing problem in logging with employee and admin data 😢😢
@amanbhaisare50582 ай бұрын
Great Work Sir
@shikhargaur41602 ай бұрын
hamesha ki tarah quality content
@white_code77362 ай бұрын
Very very very good explanation bhaiya ❤
@raselak-dc7lk2 ай бұрын
Nice😊 & Thanks for this project
@nithenbains2 ай бұрын
Amazing Project
@107tejasjadhav92 ай бұрын
we want backend on this project.....🔥🔥🔥🔥
@abhishekparmar52072 ай бұрын
Sheriyans ❌ Goats ✅
@Barbi-0072 ай бұрын
Watching From Pakistan Following MERN Series
@FatimaMadeItАй бұрын
Me too
@bademama-16i25 күн бұрын
please make playlist on AWS and Cloud Computing
@Piyush_003-e1v2 ай бұрын
Thankyou so much Bhai❤❤❤❤❤❤
@Faiza-td9vm2 ай бұрын
Thank bro will try to implement the project ASAP
@kaleemsipraa2 ай бұрын
Thank you sir love from PAKISTAN ❤❤
@AmanVerma-tl5prАй бұрын
from 1:48 i cannnot do array in console showing nulll
@ravichaudhary61315 күн бұрын
Sir is project ke deployment ke bare me bhi btaiye..kyuki me isko deploy nhi kr pa rha vercel pe
@Rahul-jo1mpАй бұрын
4:9:00 Last me useState se form handle kiya he apne isliye task null print ho raha he
@farmanali34362 ай бұрын
First View Love From Pakistan ❤👍🏻 Shreyans will Takeover is all over KZbin in the future. This is not a prediction this is a spoiler 💀