Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 | 1x | import React, { useState } from 'react';
import { useNavigate } from 'react-router-dom';
import { useMutation } from 'react-query';
import axios from 'axios';
import toast from 'react-hot-toast';
import { ArrowLeft, Save, Plus, X } from 'lucide-react';
const CreateJob = () => {
const navigate = useNavigate();
const [formData, setFormData] = useState({
title: '',
description: '',
requirements: [''],
responsibilities: [''],
location: '',
employmentType: 'full-time',
salaryMin: '',
salaryMax: '',
currency: 'USD',
remoteAllowed: false,
experienceLevel: '',
skillsRequired: [''],
benefits: [''],
applicationDeadline: ''
});
const createJobMutation = useMutation(async (jobData) => {
const response = await axios.post('/api/jobs', jobData);
return response.data;
}, {
onSuccess: () => {
toast.success('Job posted successfully!');
navigate('/jobs');
},
onError: (error) => {
toast.error(error.response?.data?.error || 'Failed to create job');
}
});
const handleChange = (e) => {
const { name, value, type, checked } = e.target;
setFormData(prev => ({
...prev,
[name]: type === 'checkbox' ? checked : value
}));
};
const handleArrayChange = (field, index, value) => {
setFormData(prev => ({
...prev,
[field]: prev[field].map((item, i) => i === index ? value : item)
}));
};
const addArrayItem = (field) => {
setFormData(prev => ({
...prev,
[field]: [...prev[field], '']
}));
};
const removeArrayItem = (field, index) => {
setFormData(prev => ({
...prev,
[field]: prev[field].filter((_, i) => i !== index)
}));
};
const handleSubmit = (e) => {
e.preventDefault();
// Filter out empty array items
const cleanedData = {
...formData,
requirements: formData.requirements.filter(req => req.trim()),
responsibilities: formData.responsibilities.filter(resp => resp.trim()),
skillsRequired: formData.skillsRequired.filter(skill => skill.trim()),
benefits: formData.benefits.filter(benefit => benefit.trim()),
salaryMin: formData.salaryMin ? parseInt(formData.salaryMin) : undefined,
salaryMax: formData.salaryMax ? parseInt(formData.salaryMax) : undefined,
applicationDeadline: formData.applicationDeadline || undefined
};
createJobMutation.mutate(cleanedData);
};
return (
<div className="space-y-6">
<div className="flex items-center">
<button
onClick={() => navigate('/jobs')}
className="mr-4 p-2 text-gray-400 hover:text-gray-600"
>
<ArrowLeft className="h-5 w-5" />
</button>
<div>
<h1 className="text-2xl font-bold text-gray-900">Post a New Job</h1>
<p className="mt-1 text-sm text-gray-500">
Create a job posting to attract qualified candidates
</p>
</div>
</div>
<form onSubmit={handleSubmit} className="space-y-6">
{/* Basic Information */}
<div className="bg-white shadow rounded-lg">
<div className="px-4 py-5 sm:p-6">
<h3 className="text-lg font-medium text-gray-900 mb-4">Basic Information</h3>
<div className="grid grid-cols-1 gap-6 sm:grid-cols-2">
<div className="sm:col-span-2">
<label htmlFor="title" className="block text-sm font-medium text-gray-700">
Job Title *
</label>
<input
type="text"
name="title"
id="title"
required
className="mt-1 input"
value={formData.title}
onChange={handleChange}
placeholder="e.g., Senior Software Engineer"
/>
</div>
<div className="sm:col-span-2">
<label htmlFor="description" className="block text-sm font-medium text-gray-700">
Job Description *
</label>
<textarea
name="description"
id="description"
rows={4}
required
className="mt-1 input"
value={formData.description}
onChange={handleChange}
placeholder="Describe the role, company culture, and what makes this opportunity special..."
/>
</div>
<div>
<label htmlFor="location" className="block text-sm font-medium text-gray-700">
Location *
</label>
<input
type="text"
name="location"
id="location"
required
className="mt-1 input"
value={formData.location}
onChange={handleChange}
placeholder="e.g., San Francisco, CA"
/>
</div>
<div>
<label htmlFor="employmentType" className="block text-sm font-medium text-gray-700">
Employment Type *
</label>
<select
name="employmentType"
id="employmentType"
required
className="mt-1 input"
value={formData.employmentType}
onChange={handleChange}
>
<option value="full-time">Full-time</option>
<option value="part-time">Part-time</option>
<option value="contract">Contract</option>
<option value="internship">Internship</option>
</select>
</div>
</div>
</div>
</div>
{/* Requirements and Responsibilities */}
<div className="bg-white shadow rounded-lg">
<div className="px-4 py-5 sm:p-6">
<h3 className="text-lg font-medium text-gray-900 mb-4">Requirements & Responsibilities</h3>
<div className="space-y-6">
<div>
<label className="block text-sm font-medium text-gray-700 mb-2">
Requirements
</label>
{formData.requirements.map((req, index) => (
<div key={index} className="flex items-center mb-2">
<input
type="text"
className="input flex-1"
value={req}
onChange={(e) => handleArrayChange('requirements', index, e.target.value)}
placeholder="e.g., 5+ years of experience in React"
/>
{formData.requirements.length > 1 && (
<button
type="button"
onClick={() => removeArrayItem('requirements', index)}
className="ml-2 p-2 text-red-600 hover:text-red-800"
>
<X className="h-4 w-4" />
</button>
)}
</div>
))}
<button
type="button"
onClick={() => addArrayItem('requirements')}
className="btn btn-secondary text-sm"
>
<Plus className="h-4 w-4 mr-1" />
Add Requirement
</button>
</div>
<div>
<label className="block text-sm font-medium text-gray-700 mb-2">
Responsibilities
</label>
{formData.responsibilities.map((resp, index) => (
<div key={index} className="flex items-center mb-2">
<input
type="text"
className="input flex-1"
value={resp}
onChange={(e) => handleArrayChange('responsibilities', index, e.target.value)}
placeholder="e.g., Develop and maintain web applications"
/>
{formData.responsibilities.length > 1 && (
<button
type="button"
onClick={() => removeArrayItem('responsibilities', index)}
className="ml-2 p-2 text-red-600 hover:text-red-800"
>
<X className="h-4 w-4" />
</button>
)}
</div>
))}
<button
type="button"
onClick={() => addArrayItem('responsibilities')}
className="btn btn-secondary text-sm"
>
<Plus className="h-4 w-4 mr-1" />
Add Responsibility
</button>
</div>
</div>
</div>
</div>
{/* Compensation */}
<div className="bg-white shadow rounded-lg">
<div className="px-4 py-5 sm:p-6">
<h3 className="text-lg font-medium text-gray-900 mb-4">Compensation</h3>
<div className="grid grid-cols-1 gap-6 sm:grid-cols-3">
<div>
<label htmlFor="salaryMin" className="block text-sm font-medium text-gray-700">
Minimum Salary
</label>
<input
type="number"
name="salaryMin"
id="salaryMin"
className="mt-1 input"
value={formData.salaryMin}
onChange={handleChange}
placeholder="e.g., 80000"
/>
</div>
<div>
<label htmlFor="salaryMax" className="block text-sm font-medium text-gray-700">
Maximum Salary
</label>
<input
type="number"
name="salaryMax"
id="salaryMax"
className="mt-1 input"
value={formData.salaryMax}
onChange={handleChange}
placeholder="e.g., 120000"
/>
</div>
<div>
<label htmlFor="currency" className="block text-sm font-medium text-gray-700">
Currency
</label>
<select
name="currency"
id="currency"
className="mt-1 input"
value={formData.currency}
onChange={handleChange}
>
<option value="USD">USD</option>
<option value="EUR">EUR</option>
<option value="GBP">GBP</option>
<option value="CAD">CAD</option>
</select>
</div>
</div>
</div>
</div>
{/* Additional Details */}
<div className="bg-white shadow rounded-lg">
<div className="px-4 py-5 sm:p-6">
<h3 className="text-lg font-medium text-gray-900 mb-4">Additional Details</h3>
<div className="space-y-6">
<div className="grid grid-cols-1 gap-6 sm:grid-cols-2">
<div>
<label htmlFor="experienceLevel" className="block text-sm font-medium text-gray-700">
Experience Level
</label>
<select
name="experienceLevel"
id="experienceLevel"
className="mt-1 input"
value={formData.experienceLevel}
onChange={handleChange}
>
<option value="">Select level</option>
<option value="entry">Entry Level</option>
<option value="mid">Mid Level</option>
<option value="senior">Senior Level</option>
<option value="lead">Lead</option>
<option value="executive">Executive</option>
</select>
</div>
<div>
<label htmlFor="applicationDeadline" className="block text-sm font-medium text-gray-700">
Application Deadline
</label>
<input
type="date"
name="applicationDeadline"
id="applicationDeadline"
className="mt-1 input"
value={formData.applicationDeadline}
onChange={handleChange}
/>
</div>
</div>
<div className="flex items-center">
<input
type="checkbox"
name="remoteAllowed"
id="remoteAllowed"
className="h-4 w-4 text-primary-600 focus:ring-primary-500 border-gray-300 rounded"
checked={formData.remoteAllowed}
onChange={handleChange}
/>
<label htmlFor="remoteAllowed" className="ml-2 block text-sm text-gray-900">
Remote work allowed
</label>
</div>
<div>
<label className="block text-sm font-medium text-gray-700 mb-2">
Required Skills
</label>
{formData.skillsRequired.map((skill, index) => (
<div key={index} className="flex items-center mb-2">
<input
type="text"
className="input flex-1"
value={skill}
onChange={(e) => handleArrayChange('skillsRequired', index, e.target.value)}
placeholder="e.g., JavaScript, React, Node.js"
/>
{formData.skillsRequired.length > 1 && (
<button
type="button"
onClick={() => removeArrayItem('skillsRequired', index)}
className="ml-2 p-2 text-red-600 hover:text-red-800"
>
<X className="h-4 w-4" />
</button>
)}
</div>
))}
<button
type="button"
onClick={() => addArrayItem('skillsRequired')}
className="btn btn-secondary text-sm"
>
<Plus className="h-4 w-4 mr-1" />
Add Skill
</button>
</div>
<div>
<label className="block text-sm font-medium text-gray-700 mb-2">
Benefits
</label>
{formData.benefits.map((benefit, index) => (
<div key={index} className="flex items-center mb-2">
<input
type="text"
className="input flex-1"
value={benefit}
onChange={(e) => handleArrayChange('benefits', index, e.target.value)}
placeholder="e.g., Health insurance, 401k, Flexible hours"
/>
{formData.benefits.length > 1 && (
<button
type="button"
onClick={() => removeArrayItem('benefits', index)}
className="ml-2 p-2 text-red-600 hover:text-red-800"
>
<X className="h-4 w-4" />
</button>
)}
</div>
))}
<button
type="button"
onClick={() => addArrayItem('benefits')}
className="btn btn-secondary text-sm"
>
<Plus className="h-4 w-4 mr-1" />
Add Benefit
</button>
</div>
</div>
</div>
</div>
{/* Submit Button */}
<div className="flex justify-end space-x-3">
<button
type="button"
onClick={() => navigate('/jobs')}
className="btn btn-secondary"
>
Cancel
</button>
<button
type="submit"
disabled={createJobMutation.isLoading}
className="btn btn-primary disabled:opacity-50"
>
<Save className="h-4 w-4 mr-2" />
{createJobMutation.isLoading ? 'Creating...' : 'Post Job'}
</button>
</div>
</form>
</div>
);
};
export default CreateJob;
|