@@ -10,7 +10,6 @@ import {
10
10
} from 'semantic-ui-react' ;
11
11
import './mainstyle.css' ;
12
12
import ListIssues from './ListIssuesComponent' ;
13
- import SweetAlert from 'sweetalert2-react' ;
14
13
import { faHome , faImage } from '@fortawesome/free-solid-svg-icons' ;
15
14
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' ;
16
15
@@ -123,103 +122,103 @@ class CreateIssue extends Component {
123
122
project_detail = { this . props . project_detail }
124
123
/>
125
124
) : (
126
- // If not then rendering Create Issue form
127
- < div className = 'main' >
128
- < Container >
129
- < Button
130
- onClick = { ( ) => {
131
- this . setState ( { display_issues : true } ) ;
132
- } }
133
- primary
134
- >
135
- < FontAwesomeIcon icon = { faHome } /> Return to Issues
136
- </ Button >
137
- < br />
138
- < br />
139
- { this . state . show ? (
140
- < Message
141
- success
142
- header = 'Issue Successfully Raised'
143
- content = 'You may now return to the Issues to view your newly raised issue.'
144
- />
145
- ) : (
146
- < div > </ div >
147
- ) }
148
- { this . state . failure ? (
149
- < Message
150
- warning
151
- header = 'Oops Something Went Wrong'
152
- content = 'Looks like you left something important'
153
- />
154
- ) : (
155
- < div > </ div >
156
- ) }
157
- < Form onSubmit = { this . handleSubmit } >
158
- < h1 > Create a New Issue</ h1 >
159
- < Form . Group widths = 'equal' >
160
- < Form . Field
161
- id = 'form-input-control-first-name'
162
- onChange = { this . handleChange2 }
163
- control = { Input }
164
- label = 'Issue Title'
165
- placeholder = 'Enter the title of Issue'
166
- />
167
-
168
- < Form . Field
169
- control = { Select }
170
- options = { [
171
- { key : 'b' , text : 'Bug' , value : 'Bug' } ,
172
- { key : 'u' , text : 'Enhancement/UI' , value : 'UI' } ,
173
- ] }
174
- label = { {
175
- children : 'Type of Issue' ,
176
- htmlFor : 'form-select-control-gender' ,
177
- } }
178
- placeholder = 'Enter type of Issue'
179
- search
180
- searchInput = { { id : 'form-select-control-gender' } }
181
- onChange = { this . handleChange }
182
- />
183
- </ Form . Group >
125
+ // If not then rendering Create Issue form
126
+ < div className = 'main' >
127
+ < Container >
184
128
< Button
185
129
onClick = { ( ) => {
186
- this . setState ( {
187
- include_image : ! this . state . include_image ,
188
- } ) ;
130
+ this . setState ( { display_issues : true } ) ;
189
131
} }
190
- color = 'teal'
132
+ primary
191
133
>
192
- < FontAwesomeIcon icon = { faImage } /> Image (Optional)
193
- </ Button >
194
- < br /> < br />
195
- { this . state . include_image ? (
196
- < Form . Field >
197
- < input
198
- type = 'file'
199
- id = 'image'
200
- accept = 'image/png, image/jpeg'
201
- onChange = { this . handleImageChange }
202
- />
203
- </ Form . Field >
204
- ) : (
205
- < div > </ div >
206
- ) }
134
+ < FontAwesomeIcon icon = { faHome } /> Return to Issues
135
+ </ Button >
207
136
< br />
208
- < Form . Field
209
- id = 'form-textarea-control-opinion'
210
- control = { TextArea }
211
- label = 'Issue Description (Optional)'
212
- onChange = { this . handleChange3 }
213
- placeholder = 'Give a nice description that could be understood by everyone'
214
- />
215
137
< br />
216
- < Button positive type = 'submit' >
217
- Submit
138
+ { this . state . show ? (
139
+ < Message
140
+ success
141
+ header = 'Issue Successfully Raised'
142
+ content = 'You may now return to the Issues to view your newly raised issue.'
143
+ />
144
+ ) : (
145
+ < div > </ div >
146
+ ) }
147
+ { this . state . failure ? (
148
+ < Message
149
+ warning
150
+ header = 'Oops Something Went Wrong'
151
+ content = 'Looks like you left something important'
152
+ />
153
+ ) : (
154
+ < div > </ div >
155
+ ) }
156
+ < Form onSubmit = { this . handleSubmit } >
157
+ < h1 > Create a New Issue</ h1 >
158
+ < Form . Group widths = 'equal' >
159
+ < Form . Field
160
+ id = 'form-input-control-first-name'
161
+ onChange = { this . handleChange2 }
162
+ control = { Input }
163
+ label = 'Issue Title'
164
+ placeholder = 'Enter the title of Issue'
165
+ />
166
+
167
+ < Form . Field
168
+ control = { Select }
169
+ options = { [
170
+ { key : 'b' , text : 'Bug' , value : 'Bug' } ,
171
+ { key : 'u' , text : 'Enhancement/UI' , value : 'UI' } ,
172
+ ] }
173
+ label = { {
174
+ children : 'Type of Issue' ,
175
+ htmlFor : 'form-select-control-gender' ,
176
+ } }
177
+ placeholder = 'Enter type of Issue'
178
+ search
179
+ searchInput = { { id : 'form-select-control-gender' } }
180
+ onChange = { this . handleChange }
181
+ />
182
+ </ Form . Group >
183
+ < Button
184
+ onClick = { ( ) => {
185
+ this . setState ( {
186
+ include_image : ! this . state . include_image ,
187
+ } ) ;
188
+ } }
189
+ color = 'teal'
190
+ >
191
+ < FontAwesomeIcon icon = { faImage } /> Image (Optional)
192
+ </ Button >
193
+ < br /> < br />
194
+ { this . state . include_image ? (
195
+ < Form . Field >
196
+ < input
197
+ type = 'file'
198
+ id = 'image'
199
+ accept = 'image/png, image/jpeg'
200
+ onChange = { this . handleImageChange }
201
+ />
202
+ </ Form . Field >
203
+ ) : (
204
+ < div > </ div >
205
+ ) }
206
+ < br />
207
+ < Form . Field
208
+ id = 'form-textarea-control-opinion'
209
+ control = { TextArea }
210
+ label = 'Issue Description (Optional)'
211
+ onChange = { this . handleChange3 }
212
+ placeholder = 'Give a nice description that could be understood by everyone'
213
+ />
214
+ < br />
215
+ < Button positive type = 'submit' >
216
+ Submit
218
217
</ Button >
219
- </ Form >
220
- </ Container >
221
- </ div >
222
- )
218
+ </ Form >
219
+ </ Container >
220
+ </ div >
221
+ )
223
222
}
224
223
</ div >
225
224
) ;
0 commit comments