Create a modal with React (Pop-up)

Поделиться
HTML-код
  • Опубликовано: 14 дек 2024

Комментарии • 118

  • @TJA91910
    @TJA91910 Год назад +11

    I've referenced this video countless times for a variety of projects. Thank you for taking the time to put this together, you are a true hero!

  • @streetrat7050
    @streetrat7050 3 года назад +13

    Thank you so much for your contribution. I have spent far too long now trying to find an example that is simple, direct and to the point.

  • @jameslovell5201
    @jameslovell5201 3 года назад +30

    Quick! Clear! Concise! An excellent tutorial, my friend!

  • @thearxlive
    @thearxlive Год назад

    I dont usually comment on yt tutorials, but this is the only modal video I felt useful. Thankyou!

  • @johntalatala680
    @johntalatala680 2 месяца назад

    I was looking something like this to insert into my project, Merci infiniment monsieur pour cette contribution. Vous etes magnifique!

  • @lightsabercatspowpow
    @lightsabercatspowpow Год назад +1

    Very very great video. You simplified this down to clean concise code that was very easy to follow. The css styling being done ahead of time helps a lot aswell because this video was how to make it work not how to make it pretty so thanks for getting that done outside the actual content!
    10/10

  • @eskimo6097
    @eskimo6097 3 года назад +2

    Thank you, you explained it so simply! Also, your accent is very cool :D

    • @TheWebSchool
      @TheWebSchool  3 года назад +1

      Glad it helps !
      The French accent never leaves ✌️

  • @ghislainmitahi2584
    @ghislainmitahi2584 2 года назад +1

    really, i'm so happy to hear you again, i usually cach your french tutorials, this modal is all i wanted 🙏👌👌

  • @alienfunbug
    @alienfunbug 3 года назад +2

    Best modal video on youtube (or at least out of like 10 that I compared it with).

  • @gautambedi591
    @gautambedi591 Год назад

    This is exactly what I was looking for. Keep the good work going mate!

  • @turyahabwamark82
    @turyahabwamark82 Год назад

    Beautifully done... Using basic concepts, in a Clear and concise way bro

  • @tadeuvieira319
    @tadeuvieira319 Год назад

    Straight to the point. Perfect! You just got a follower.

  • @sumondatta6595
    @sumondatta6595 Год назад +1

    You are superb!!! easily discuss and understandable code. Thank you so much.

  • @Miguel_ECL
    @Miguel_ECL 3 месяца назад

    Great quick & clear explanation! Thanks!

  • @danielmarx1056
    @danielmarx1056 3 года назад +2

    Thanks for this video, really nice and simple explanation

    • @TheWebSchool
      @TheWebSchool  3 года назад

      Glad it helps, and nice pic in front of the Hungarian Parliament mate ✔️

  • @ashwinpatidar2878
    @ashwinpatidar2878 Год назад

    It is very helpful video for building Modal using Vanilla CSS. Thanks.

  • @diegoguatemala5287
    @diegoguatemala5287 Год назад

    I have been referencing to this video many times, thanks man

  • @AdarshYadav-cf9be
    @AdarshYadav-cf9be 4 месяца назад

    Thankyou so much brother i was suffering from so many problems thankyou so much...😢

  • @MrACrazyHobo
    @MrACrazyHobo 3 года назад +2

    Very easy tutorial, thanks for the source code!

  • @melisandem1735
    @melisandem1735 Год назад

    Thanks, just what I was looking for ! Very Helpful.

  • @EvGen-e2d
    @EvGen-e2d Год назад

    Ok the problem is what if my modal bigger height then viewport?
    overflow-y: scroll; doesn't help because it has different scroll and scrolls much slower
    then body scroll.

  • @s1sko7
    @s1sko7 Год назад

    Excellent!! :)
    But 2 things :
    1 ) Why bother with State when you can just pass an "active-modal" class to body and handle everything with CSS?
    2) Studies shows that a lot of people would click on the previous button of their browser when modal shows up. So we should prevent that maybe with a new page direction.
    Thoughts?

  • @maciejkrogulski9216
    @maciejkrogulski9216 Год назад

    good tutorial, but how can You animate this modal? Especially closing modal?

  • @fancybeing1296
    @fancybeing1296 Год назад

    iam always scared to code an overlay but this video literally helped me in 5 mins

  • @DS-qz2gu
    @DS-qz2gu 11 месяцев назад

    When I learned React, I learned that when you modify the current state to set a new state (e.g., negating a value to toggle boolean state), there’s a specific syntax to ensure that you get the current state instead of risking using a previous version of the state. Instead of this:
    setModal(!modal);
    You’d use this:
    setModal((prevModal) => !prevModal);
    Is this true? Is it just not important in this use case?

  • @diamondsky6605
    @diamondsky6605 2 года назад

    Wow même en anglais j'ai reconnu ta voix direct 😂 Je savais pas que tu avais une autre chaine

  • @thehitlist4046
    @thehitlist4046 2 месяца назад

    Please how do you enable intellisense like when you did div.modal

  • @kamichikora6035
    @kamichikora6035 2 года назад

    As always, great work. Straight to the point

  • @vincebraca7141
    @vincebraca7141 Год назад

    how do you run that modal.js on terminal?
    be cause i use npm start but i can't start it

  • @azashik5678
    @azashik5678 3 года назад

    Nice Tutorial Sir . Quick And clear

  • @ziyaulrana1840
    @ziyaulrana1840 3 года назад

    Very simple and easy method
    Thanks for motivation

  • @rhul0017
    @rhul0017 Год назад

    so which is the best method, using portals or using this approach?

  • @gilbertorogel81
    @gilbertorogel81 3 года назад +1

    Help, i have the exact same code and modal is not showing :s

    • @TheWebSchool
      @TheWebSchool  3 года назад

      Source code is in the description my friend

  • @samuelsonowo6707
    @samuelsonowo6707 11 месяцев назад

    I have a target value to display but when i click submit the value no longer display. What can i do?

  • @NeganSportNews
    @NeganSportNews Год назад

    An excellent tutorial! Thank you so much.

  • @attilakovacs4364
    @attilakovacs4364 3 года назад

    ty great video,one question though,how do I enable scrolling in the modal? I added overflow-y: auto or scroll but it doesnt work.

    • @attilakovacs4364
      @attilakovacs4364 3 года назад +1

      nevermind I'm stupid,I added it to the modal-content section not in the '.modal' section,now it works!

  • @daviddeltoro406
    @daviddeltoro406 Год назад

    Any way to make it so that it fades in and out smoothly?

  • @nehabhole1
    @nehabhole1 Год назад

    Great, quick tutorial for building modals however doesn't address event propagation. I build a form inside a modal and on click it closes the form.

  • @aanchaltripathy5985
    @aanchaltripathy5985 Год назад

    how can we delay the pop up message by a few milliseconds?

  • @Greenlight123
    @Greenlight123 3 года назад

    Thanks. That is exactly what i was looking for. A Point of Reference

  • @mihaibalan1917
    @mihaibalan1917 2 года назад

    This helped me a lot. How can I make the content of my modal scrollable? (I have a photo gallery in the modal)

  • @ambitionhut
    @ambitionhut 2 года назад

    This doesent work sadly on my end. The idea of creating both the button and modal in the same component only works if its like you example. But what if the button is on the navbar? when I do it, the modal pops up inside the navbar..

    • @TheWebSchool
      @TheWebSchool  2 года назад

      Hey, yeah it was for the purpose of the video.
      Most of the time we use the context API or redux or whatever state manager to handle the triggering of a modal.

  • @mohammedhassan-xc7nh
    @mohammedhassan-xc7nh Год назад

    so short and so clear Im Arabian but I understood so much thx bro

  • @inescherif5385
    @inescherif5385 Год назад

    short & clear ! thank u so much for that

  • @ortigaliyevmuhammadjon
    @ortigaliyevmuhammadjon 9 месяцев назад

    Thanks bro it was really useful 👍👍👍

  • @ABC-el3ql
    @ABC-el3ql 2 года назад

    WOW!! Thank you so much from S.Korea!!

  • @ankushmalik8257
    @ankushmalik8257 Год назад

    On clicking Open button, the modal is not opening. Can anyone please suggest?

  • @Teodorant1
    @Teodorant1 2 года назад

    I downloaded the project and copied the components file and put it into my SRC file, and imported it the same way into my app.js, I couldn't get it to work. Please help!

  • @juelmapereira4277
    @juelmapereira4277 8 месяцев назад

    Dude, this is so nice

  • @samriddhabajpai1846
    @samriddhabajpai1846 2 года назад

    Thank you for the easiest explanation!!

  • @polestudiosaroundtheworld
    @polestudiosaroundtheworld 3 года назад

    Thank you, the tutorial is really clear! Just what I need.

  • @matiasrocca4702
    @matiasrocca4702 2 года назад

    Hey!! Im having trouble with the overlay toggle on the overlay div. It is also executing the function when clicking inside the popup component (which kinda makes sense, since the component is within the overlay div). Does anybody know how may I fix this?

    • @matiasrocca4702
      @matiasrocca4702 2 года назад

      Im not being able to call the function only while clicking the overlay (outside part of the box), im also calling it when clicking on the inside. This is a problem, because im trying to fill a form inside the component

  • @souravdutta5703
    @souravdutta5703 3 года назад

    wow!! you made creating modal so simple!!

  • @iafofkhadze4628
    @iafofkhadze4628 2 года назад

    wow u made this super easy tho

  • @julien25585
    @julien25585 3 года назад

    How can i fix this error:
    "./src/App.js
    Module not found: Can't resolve './Components/Modal/Modal' in 'C:\Users\user\Desktop\Test\Test\src'"
    i use this import:
    "import Modal from './Components/Modal/';"

    • @TheWebSchool
      @TheWebSchool  3 года назад

      This is mainly a problem with the path, check the name of your paths

    • @julien25585
      @julien25585 3 года назад

      @@TheWebSchool Maybe i dont understand bcs im kinda new to do programming. I use a relative path, it should be okay then or not?
      Actually i have no clue how to fix this :/

    • @hamidrezarahimi6651
      @hamidrezarahimi6651 3 года назад

      If your folders structure is the same as what was explained in the video, you should add the Component file to your import statement as well. With that being said, you have to update your import to:
      import Modal from "./Components/Modal/Modal";

  • @User-nn9uw
    @User-nn9uw 2 года назад

    So simply, thank you dude

  • @PROTECHRAHUL
    @PROTECHRAHUL 2 года назад

    how can we do it on onload

  • @younesmansourbokhtache118
    @younesmansourbokhtache118 2 года назад

    Thank you so much, the tutorial is really clear

  • @herbertrichard4561
    @herbertrichard4561 9 месяцев назад

    Very good tutorial, thank you ^^

  • @BBoyXy
    @BBoyXy 3 года назад

    Thank you, keep up the good work

  • @kamamedia3535
    @kamamedia3535 2 года назад

    thanks man, really nice n cool to implement

  • @Boltkiller96
    @Boltkiller96 3 месяца назад

    0:29 and we are going to fk us

  • @korkut31
    @korkut31 10 месяцев назад

    why do u say 'hoviley' insted of overlay

  • @FleekGaming2411
    @FleekGaming2411 4 месяца назад

    Thank
    You It's working!

  • @Jonsy
    @Jonsy 2 года назад

    This is great!! thank you so much

  • @IroshanaRavishan
    @IroshanaRavishan 3 месяца назад

    Really helpful...! Thank you

  • @slamanaim1837
    @slamanaim1837 Год назад

    thank you it is what i want to know how to create a modal that is shown when i login my bank account. it contains points that turn and text please wait before showin my bank receipt

  • @nagireddypanditi6429
    @nagireddypanditi6429 3 года назад +1

    Great tutorial!

  • @ora_ukFelix
    @ora_ukFelix Год назад

    Source Code Please

  • @woochille7471
    @woochille7471 27 дней назад

    Super helpful thanks!

  • @GameAnimevietsub
    @GameAnimevietsub Год назад

    not working now :((

  • @ritchieways9495
    @ritchieways9495 2 года назад

    Thanks so much. You saved me

  • @prasathj7436
    @prasathj7436 Год назад

    Excellent one. Thanks.

  • @ice12328
    @ice12328 Год назад

    Excellent Example

  • @lucianoaraus8956
    @lucianoaraus8956 Год назад

    Nice tutorial man!

  • @chiomaubaezuonu3875
    @chiomaubaezuonu3875 2 года назад

    You're amazing

  • @harshgoyal7114
    @harshgoyal7114 Год назад

    Thankyou for your help

  • @nicudomenti5235
    @nicudomenti5235 2 года назад

    Nice video, thank you!

  • @0xBK201
    @0xBK201 2 года назад

    Thanks for this.

  • @EminoMeneko
    @EminoMeneko 3 года назад

    Super bien expliqué mais chez moi ça ne crée pas la modale.
    React dev tools me permet de voir que le state toggle mais rien ne s'affiche.
    En fait c'est parce que je part des templates depuis le site de Bootstrap et que le code ne marche pas tout à fait de la même manière.
    En tout cas ça a répondu à la question que je me posais.

    • @TheWebSchool
      @TheWebSchool  3 года назад

      Thanks, We speak English here :)

  • @phoneringhtone9711
    @phoneringhtone9711 Год назад

    thank you my friend

  • @ashadulmridha4265
    @ashadulmridha4265 3 года назад

    Wow man it's very Cool

  • @martinalvarez4663
    @martinalvarez4663 11 месяцев назад

    gracias perritoo sos crkack

  • @worldclasscode1847
    @worldclasscode1847 2 года назад

    Great video ! :)

  • @gooddeveloper
    @gooddeveloper 9 месяцев назад

    it's really cool

  • @nischithr5428
    @nischithr5428 2 года назад

    Thank You! ☺☺

  • @fola_azeez
    @fola_azeez 5 месяцев назад

    thank you so much bro bro

  • @augischadiegils.5109
    @augischadiegils.5109 2 года назад

    ❤️❤️❤️❤️

  • @venkateshkumar9600
    @venkateshkumar9600 Год назад

    Thank you

  • @henzelsargsyan4302
    @henzelsargsyan4302 2 года назад

    Thanks a lot!

  • @TheNarstonerz
    @TheNarstonerz 2 года назад

    Sweet french accent

  • @khan.hassan
    @khan.hassan 3 года назад

    Thanks 👍

  • @ashwinumbarkar6625
    @ashwinumbarkar6625 11 месяцев назад

    Thanks .

  • @dev_catM
    @dev_catM 2 года назад

    Top!👍

  • @sandeepdhungana6657
    @sandeepdhungana6657 3 года назад

    Great

  • @mega.pe4enka147
    @mega.pe4enka147 3 года назад

    красава

  • @korkut31
    @korkut31 10 месяцев назад

    there are 4 big mistakes. how dare u upload a video. u are junior level

  • @korkut31
    @korkut31 10 месяцев назад

    what is this heavy accent. it is hard to listen . ufff so bad.

  • @RaekhandiYoga
    @RaekhandiYoga Год назад

    Thank you so much

  • @sinclair1082
    @sinclair1082 2 года назад

    Thank you!