Это видео недоступно.
Сожалеем об этом.

Upload Files in React - Typescript, Drag and Drop, & Form Examples

Поделиться
HTML-код
  • Опубликовано: 26 июл 2023
  • Learn how to upload files like images from a form with drag and drop in a React app.
    We'll walk through setting up an HTML filepicker input to select files, read the files and show a preview using the Filereader API, uploading them to services like Cloudinary, configuring the file input to accept only certain types, and seeing how we can easily add drag and drop with React Dropzone.
    Dig deeper into Full Stack React with my upcoming Appwrite course: spacejelly.dev...
    🧰 Resources
    Tutorial: spacejelly.dev...
    Starter: github.com/col...
    Code: github.com/col...
    Demo: my-react-file-...
    react-dropzone...
    📺 RUclips: ruclips.net/user/co...
    🐦 Twitter: / colbyfayock
    📹 Twitch: / colbyfayock
    ✉️ Newsletter: www.colbyfayoc...
    🎥 What I Use: www.colbyfayoc...
    #colbyfayock #reactjs #uploadfile #draganddrop #webdevelopment

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

  • @colbyfayock
    @colbyfayock  14 дней назад

    Learn how to build a full stack Next.js app in my upcoming course: colbyfayock.com/course

  • @tastymuffinmm
    @tastymuffinmm 11 месяцев назад +7

    Super helpful tutorial, straight to the point and good examples. Subscribed and looking forward to more!

  • @Brlitzkreig
    @Brlitzkreig 3 месяца назад +1

    Wow, you're an excellent teacher you explain it so concisely

  • @jennysukut4346
    @jennysukut4346 Месяц назад

    Fantastic! What a helpful + concise tutorial. Thanks for sharing!

  • @PickleRiiiiiiick
    @PickleRiiiiiiick 10 месяцев назад +1

    Your tutorials are always solid and getting better. Thank you sir.

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

      appreciate the kind words!

  • @amosfigueira894
    @amosfigueira894 7 дней назад

    Excellent. Thanks for Sharing.

  • @shooting4star2023
    @shooting4star2023 17 дней назад

    I believe that it's slightly better to use ref to hold the file, instead of state. As the selected file doesn't affect the look of the page and a rerender (checking on the V-DOM to be technically accurate) is not necessary with the state.

    • @colbyfayock
      @colbyfayock  16 дней назад

      would you imagine then that the file would be stored in a ref but then a reference to the file would be stored in state? the existence of the file does impact the look of the page as we display the preview so we need a mechanism to be able to hook into the render lifecycle

  • @andinuruljihad2912
    @andinuruljihad2912 10 месяцев назад +1

    great tutorial. i will watch your youtube career with great interest.

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

    What's up buddy.😊 Watching your video after a while. Keep it up

  • @techcoderuz
    @techcoderuz 3 месяца назад +1

    thanks. Great tutorial

  • @vikashmishra7160
    @vikashmishra7160 7 месяцев назад +1

    @8:55 src={preview} was showing error .. how did you resolve it?

    • @colbyfayock
      @colbyfayock  7 месяцев назад

      added src={preview as string} github.com/colbyfayock/my-react-file-upload/blob/main/src/pages/contact.tsx#L90

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

    Amazing tutorial, Thankyou so much.

  • @crypto1886
    @crypto1886 4 месяца назад +1

    Hey dude great video, I am a newbie in react and javascript and am running into an error in this line of code:
    const { acceptedFiles, getRootProps, getInputProps, isDragActive } = useDropzone({ onDrop });
    Error:
    Type '(acceptedFiles: FileList) => void' is not assignable to type '(acceptedFiles: T[], fileRejections: FileRejection[], event: DropEvent) => void'.
    Types of parameters 'acceptedFiles' and 'acceptedFiles' are incompatible.
    Property 'item' is missing in type 'T[]' but required in type 'FileList'.ts(2322)
    lib.dom.d.ts(8330, 5): 'item' is declared here.
    Any clue how to fix this?

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

      hey have you seen my code for how i set it up? github.com/colbyfayock/my-react-file-upload/blob/main/src/pages/contact.tsx
      i just spun it up and dont see any errors with that, perhaps its an issue with how you have onDrop set up, where i see FileList, are you using FileList instead of Array perhaps?

  • @John-eq5cd
    @John-eq5cd 6 месяцев назад

    Another clear and useful video, thanks!
    A couple of questions, though...
    Do we need our Cloudinary api_key to upload assets? I can successfully do this using the Cloudinary url and referencing my cloud name in the url, nothing else needed.
    Secondly, by using NEXT_PUBLIC_ in front of your environment variable as you suggest below, is this not exposing that env variable?

    • @colbyfayock
      @colbyfayock  6 месяцев назад +1

      you need the API key unless you're doing an unsigned upload which is defined using an Upload Presset
      yup, that exposes it to the client, but the API Key is okay for this use, you do _not_ want to expose the API Secret

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

    Great video my dude, thank you so much.

  • @andelianzio7457
    @andelianzio7457 Месяц назад

    And what if a I wanna upload the image + data (name, email, message)

    • @colbyfayock
      @colbyfayock  Месяц назад

      typically you'll store that kind of data in a database. some databases come with file storage that you could also use in situations like that, but often they dont which leaves you to need a service like Cloudinary or S3, where you would then store the ID / URL in the database alongside the rest

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

    very insightful video

  • @OzzTheWizzard
    @OzzTheWizzard 8 месяцев назад +1

    can you make a video showing how to do this one by one, step by step from scratch?

    • @salijoghli
      @salijoghli 7 месяцев назад +1

      Bro he literally did that

    • @OzzTheWizzard
      @OzzTheWizzard 7 месяцев назад

      @@salijoghli let me rewatch it and comment again

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

    Very good video. But what if I want to paste a snippet from memory?

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

      hey thanks! good question, did a quick lookup and this codepen seems to work, check the web console upon paste: codepen.io/appsoftware/pen/WNwWpzW
      this would make for a good tutorial! will add it to my list

  • @blank.haruka
    @blank.haruka 7 месяцев назад

    Thank you sm!

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

    Thanks man, how did you get an environment variable in a client component? It's giving me an error,

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

      no problem! you prepend VITE_ if youre using React with Vite to make it public: github.com/colbyfayock/my-react-file-upload/blob/main/src/pages/contact.tsx#L42

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

      @@colbyfayock thanks for the quick reply man, sorry I should have specified. I’m using nextjs on my project

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

      @@ruairidhgrass3479np, similarly you'd want to add NEXT_PUBLIC_ in front of your environment variable then

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

    Thanks man

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

    If we want a pdf or doc file instead of image?

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

      have you tried? it should work the same as long as you're not restricting the filetype

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

    suuper helpful