-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
6 additions
and
236 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,85 +1,5 @@ | ||
import { PostDetailItemType } from '@/types/postDetail/postDetailItem'; | ||
|
||
export const enum PostDetailContentMenu { | ||
RECUITMENT = 'RECUITMENT', | ||
WORPLACE = 'WORPLACE', | ||
COMPANY = 'COMPANY', | ||
} | ||
|
||
// 더미데이터 | ||
export const POST_DETAIL_DATA: PostDetailItemType = { | ||
id: 1, | ||
is_my_post: true, | ||
is_book_marked: false, | ||
company_name: 'Tech Solutions Inc.', | ||
title: 'Part-time English Tutor', | ||
icon_img_url: 'https://example.com/icon.png', | ||
company_img_url_list: [ | ||
{ | ||
id: 1, | ||
img_url: 'https://example.com/company1.png', | ||
}, | ||
{ | ||
id: 2, | ||
img_url: 'https://example.com/company2.png', | ||
}, | ||
{ | ||
id: 3, | ||
img_url: 'https://example.com/company3.png', | ||
}, | ||
], | ||
tags: { | ||
is_recruiting: true, | ||
visa: 'D_2_7', | ||
job_category: 'ENGLISH_KIDS_CAFE', | ||
}, | ||
summaries: { | ||
address: '123 Main St, Seoul', | ||
hourly_rate: 15000, | ||
work_period: 'ONE_MONTH_TO_THREE_MONTHS', | ||
work_days_per_week: 5, | ||
}, | ||
recruitment_conditions: { | ||
recruitment_dead_line: '2024-12-31', | ||
education: 'BACHELOR', | ||
number_of_recruits: 3, | ||
visa: 'D_2_7', | ||
gender: 'NONE', | ||
preferred_conditions: 'Previous tutoring experience preferred', | ||
}, | ||
detailed_overview: | ||
'We are looking for a part-time English tutor for a kids cafe. The role requires providing fun and interactive English lessons for young children. We are looking for a part-time English tutor for a kids cafe. The role requires providing fun and interactive English lessons for young children. We are looking for a part-time English tutor for a kids cafe. The role requires providing fun and interactive English lessons for young children.', | ||
workplace_information: { | ||
main_address: '123 Main St, Seoul', | ||
detailed_address: '5th Floor, Room 501', | ||
distance: 1.5, | ||
latitude: 37.5665, | ||
longitude: 126.978, | ||
}, | ||
working_conditions: { | ||
hourly_rate: 15000, | ||
work_period: 'ONE_MONTH_TO_THREE_MONTHS', | ||
work_day_times: [ | ||
{ | ||
day_of_week: 'WEEKDAYS', | ||
work_start_time: '14:00', | ||
work_end_time: '18:00', | ||
}, | ||
{ | ||
day_of_week: 'SATURDAY', | ||
work_start_time: '10:00', | ||
work_end_time: '14:00', | ||
}, | ||
], | ||
job_category: 'ENGLISH_KIDS_CAFE', | ||
employment_type: 'PARTTIME', | ||
}, | ||
company_information: { | ||
company_address: '123 Main St, Seoul', | ||
representative_name: 'John Doe', | ||
recruiter: 'Jane Smith', | ||
contact: '+82 10-1234-5678', | ||
email: '[email protected]', | ||
}, | ||
created_at: '2024-10-22T12:00:00', | ||
}; |