<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: IdanMenaged</title>
    <description>The latest articles on DEV Community by IdanMenaged (@idanmenaged).</description>
    <link>https://dev.to/idanmenaged</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F914546%2Fc1590a61-7f2e-4918-8ce1-0e9c6ce8d8fa.png</url>
      <title>DEV Community: IdanMenaged</title>
      <link>https://dev.to/idanmenaged</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/idanmenaged"/>
    <language>en</language>
    <item>
      <title>how do i get data from reactstrap form?</title>
      <dc:creator>IdanMenaged</dc:creator>
      <pubDate>Tue, 06 Sep 2022 19:47:53 +0000</pubDate>
      <link>https://dev.to/idanmenaged/how-do-i-get-data-from-reactstrap-form-128d</link>
      <guid>https://dev.to/idanmenaged/how-do-i-get-data-from-reactstrap-form-128d</guid>
      <description>&lt;p&gt;i want to console log the data after it's been submitted.&lt;br&gt;
how would i go about doing it? when i take the target section of the event it returns the html object itself, not it's data&lt;br&gt;
ty for anyone who answers :)&lt;/p&gt;

&lt;p&gt;&lt;code&gt;import React from 'react';&lt;br&gt;
import { Form, FormGroup, Label, Input, Button, Modal, ModalHeader, ModalBody } from 'reactstrap';&lt;br&gt;
import './taskAdder.css';&lt;br&gt;
class TaskAdder extends React.Component {&lt;br&gt;
    constructor(props) {&lt;br&gt;
        super(props);&lt;br&gt;
        this.state = {&lt;br&gt;
            showForm: false,&lt;br&gt;
            newTask: {&lt;br&gt;
                title: '',&lt;br&gt;
                description: '',&lt;br&gt;
                notificationDate: {},&lt;br&gt;
                notificationTime: {}&lt;br&gt;
            }&lt;br&gt;
        };&lt;br&gt;
        // idk what both of those do&lt;br&gt;
        this.toggle = this.toggle.bind(this);&lt;br&gt;
        this.onSubmit = this.onSubmit.bind(this);&lt;br&gt;
    }&lt;br&gt;
    render() {&lt;br&gt;
        return (&lt;br&gt;
            &amp;lt;div className='task-adder'&amp;gt;&lt;br&gt;
                &amp;lt;Button onClick={this.toggle}&amp;gt;Add a New Task&amp;lt;/Button&amp;gt;&lt;br&gt;
                &amp;lt;Modal isOpen={this.state.showForm}&amp;gt;&lt;br&gt;
                    &amp;lt;ModalHeader toggle={this.toggle}&amp;gt;New Task&amp;lt;/ModalHeader&amp;gt;&lt;br&gt;
                    &amp;lt;ModalBody&amp;gt;&lt;br&gt;
                        &amp;lt;Form onSubmit={(e) =&amp;gt; { this.onSubmit(e) }}&amp;gt;&lt;br&gt;
                            &amp;lt;legend&amp;gt;New Task&amp;lt;/legend&amp;gt;&lt;br&gt;
                            &amp;lt;FormGroup&amp;gt;&lt;br&gt;
                                &amp;lt;Label for='title'&amp;gt;Title&amp;lt;/Label&amp;gt;&lt;br&gt;
                                &amp;lt;Input type='text' name='title' id='title' placeholder='i.e. buy milk' /&amp;gt;&lt;br&gt;
                            &amp;lt;/FormGroup&amp;gt;&lt;br&gt;
                            &amp;lt;FormGroup&amp;gt;&lt;br&gt;
                                &amp;lt;Label for='description'&amp;gt;Description&amp;lt;/Label&amp;gt;&lt;br&gt;
                                &amp;lt;Input type='textarea' name='description' id='description' placeholder='i.e. at the grocery store on 75th avenue' /&amp;gt;&lt;br&gt;
                            &amp;lt;/FormGroup&amp;gt;&lt;br&gt;
                            &amp;lt;FormGroup&amp;gt;&lt;br&gt;
                                &amp;lt;legend&amp;gt;Notification&amp;lt;/legend&amp;gt;&lt;br&gt;
                                &amp;lt;FormGroup&amp;gt;&lt;br&gt;
                                    &amp;lt;Label for='notification-date'&amp;gt;Date&amp;lt;/Label&amp;gt;&lt;br&gt;
                                    &amp;lt;Input type='date' name='notificationDate' id='notification-date' /&amp;gt;&lt;br&gt;
                                &amp;lt;/FormGroup&amp;gt;&lt;br&gt;
                                &amp;lt;FormGroup&amp;gt;&lt;br&gt;
                                    &amp;lt;Label for='notification-time'&amp;gt;Time&amp;lt;/Label&amp;gt;&lt;br&gt;
                                    &amp;lt;Input type='time' name='notificationTime' id='notification-time' /&amp;gt;&lt;br&gt;
                                &amp;lt;/FormGroup&amp;gt;&lt;br&gt;
                            &amp;lt;/FormGroup&amp;gt;&lt;br&gt;
                            &amp;lt;Button&amp;gt;Submit&amp;lt;/Button&amp;gt;&lt;br&gt;
                        &amp;lt;/Form&amp;gt;&lt;br&gt;
                    &amp;lt;/ModalBody&amp;gt;&lt;br&gt;
                &amp;lt;/Modal&amp;gt;&lt;br&gt;
            &amp;lt;/div&amp;gt;&lt;br&gt;
        );&lt;br&gt;
    }&lt;br&gt;
    toggle() {&lt;br&gt;
        this.setState({&lt;br&gt;
            showForm: !this.state.showForm&lt;br&gt;
        });&lt;br&gt;
    }&lt;br&gt;
    onSubmit(e) {&lt;br&gt;
        e.preventDefault();&lt;br&gt;
        const { target } = e;&lt;br&gt;
        const { title, description, notificationDate, notificationTime } = target;&lt;br&gt;
        this.setState({&lt;br&gt;
            newTask: {&lt;br&gt;
                title: title,&lt;br&gt;
                description: description,&lt;br&gt;
                notificationDate: notificationTime,&lt;br&gt;
                notificationTime: notificationTime&lt;br&gt;
            }&lt;br&gt;
        });&lt;br&gt;
        console.log(this.state.newTask);&lt;br&gt;
        console.log(typeof notificationDate, typeof notificationTime)&lt;br&gt;
    }&lt;br&gt;
}&lt;br&gt;
export default TaskAdder;&lt;/code&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>what web framework to use?</title>
      <dc:creator>IdanMenaged</dc:creator>
      <pubDate>Tue, 30 Aug 2022 16:02:21 +0000</pubDate>
      <link>https://dev.to/idanmenaged/what-web-framework-to-use-414i</link>
      <guid>https://dev.to/idanmenaged/what-web-framework-to-use-414i</guid>
      <description>&lt;p&gt;I already learned a bit of django and angular but there are things I'm dissatisfied with in both. like the boiler-plate in django or the disorganization in angular. are there better alternatives? what are their advantages and disadvantages? ty :)&lt;/p&gt;

</description>
      <category>webdev</category>
    </item>
    <item>
      <title>where can i find game jams and hackathons / where can i contact people to work with on those?</title>
      <dc:creator>IdanMenaged</dc:creator>
      <pubDate>Mon, 29 Aug 2022 13:35:23 +0000</pubDate>
      <link>https://dev.to/idanmenaged/where-can-i-find-game-jams-and-hackathons-where-can-i-contact-people-to-work-with-on-those-4m19</link>
      <guid>https://dev.to/idanmenaged/where-can-i-find-game-jams-and-hackathons-where-can-i-contact-people-to-work-with-on-those-4m19</guid>
      <description></description>
      <category>question</category>
      <category>hackathon</category>
      <category>gamejam</category>
    </item>
  </channel>
</rss>
