Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/#160 해커톤 단건 조회 페이지 구현 #167

Merged
merged 42 commits into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
492dea9
feat: 클라이언트 서비스의 페이지네이션 컴포넌트 구현
Aug 13, 2024
dcc23ec
feat: 학생의 마일스톤 획득내역, 실적 목록 페이지네이션 처리
Aug 13, 2024
7d85a78
feat: 나의 마일스톤 획득 내역에 페이지네이션 처리
Aug 13, 2024
8127d7a
fix: 학생의 실적 목록 조회 api의 totalElements가 제대로 불러와지지 않는 문제 해결
Aug 13, 2024
3c4c210
feat: Title 컴포넌트 구현
Aug 14, 2024
9b5c366
Merge branch 'Feature/#150-학생의_마일스톤_획득내역_실적목록_페이지네이션_처리' of https://g…
Aug 14, 2024
107df9d
feat: 해커톤 목록 페이지 구현
Aug 14, 2024
11608ee
refactor: 불필요한 styled comopnent 삭제
Aug 14, 2024
ee540ba
refactor: 파일 다운로드 기능 deprecated
Aug 14, 2024
89625bc
feat: 외부에서 파일 리소스에 직접 접근할 수 있도록 설정
Aug 14, 2024
1747e11
feat: 외부에서 파일 리소스에 직접 접근할 수 있도록 설정
Aug 14, 2024
2a3af0a
Merge branch 'Feature/#155-url로_파일_리소스에_접근할_수_있도록_설정' of https://gith…
Aug 14, 2024
8ebef38
fix: 파일 다운로드 테스트 삭제
Aug 15, 2024
b15dc48
Merge branch 'Feature/#155-url로_파일_리소스에_접근할_수_있도록_설정' of https://gith…
Aug 15, 2024
a589b4f
feat: 해커톤 단건 페이지 중 공고 섹션 구현
Aug 19, 2024
39ffda2
build: Tiptap 라이브러리 설치
Aug 19, 2024
772ac60
feat: 마크다운 뷰어 컴포넌트 구현
Aug 19, 2024
7de3a0b
feat: 해커톤 공고 섹션 완성
Aug 19, 2024
eccf12e
feat: 해커톤 정보 페이지의 타이틀, 전환 버튼을 레이아웃으로 분리
Aug 19, 2024
56815d2
feat: 투표 페이지 내 팀 목록 UI 구현
Aug 19, 2024
891758b
feat: 모달 바깥 요소의 스크롤을 막는 커스텀 훅 구현
Aug 20, 2024
173e2c0
feat: 모달 바깥 영역 클릭 시 모달을 닫는 커스텀 훅 구현
Aug 20, 2024
6649efb
build: classname 라이브러리 설치
Aug 20, 2024
25b905e
build: react-markdown 라이브러리 설치
Aug 20, 2024
6df5b80
build: tiptap 커스텀에 필요한 라이브러리 설치
Aug 21, 2024
cce5f79
feat: 해커톤 팀 조회 모달 구현
Aug 21, 2024
2a987e1
design: 팀 정보 조회 모달 반응형 처리
Aug 21, 2024
5032f3c
feat: 해커톤 수상 내역 조회 페이지 구현
Aug 21, 2024
9432a4c
feat: 드래그&드랍 이미지 업로더 컴포넌트 구현
Aug 25, 2024
a152aef
build: 드래그&드랍 라이브러리 설치
Aug 25, 2024
7ff2687
refactor: 해커톤의 thumbnailImageName을 bannerImageName으로 변경
Aug 25, 2024
d0c29f8
fix: dropdown 컴포넌트의 옵션 목록의 위치가 요소 위치에 맞춰 변경되도록 수정
Aug 25, 2024
f6ffde7
feat: 해커톤 팀 등록 모달 구현
Aug 25, 2024
d7f33a5
feat: 디바운싱 기능을 제공하는 커스텀 훅 구현
Aug 25, 2024
518cbab
feat: 팀원 학번 입력 시 팀원의 정보를 검색하는 기능 구현
Aug 25, 2024
91eee22
design: 해커톤 팀 생성 모달 반응형 처리
Aug 25, 2024
3537b57
fix: 목데이터에 누락된 속성값 추가
Aug 25, 2024
a4f63cd
Merge branch 'main' into Feature/#160-해커톤_단건_조회_페이지_구현
amaran-th Aug 25, 2024
96a2eb8
fix: 중복된 import문 삭제
Aug 25, 2024
98a4ab1
fix: 중복된 api 호출 함수 정의 삭제
Aug 25, 2024
3e6a415
fix: 자잘한 오류 해결
Aug 25, 2024
0e2bd89
feat: 원활한 테스트를 위한 테스트 데이터 추가
Aug 25, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions backend/src/main/resources/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,14 @@ drop table if exists sw_css.milestone_history;

create table member
(
id bigint auto_increment primary key,
email varchar(255) not null,
name varchar(255) not null,
password varchar(255) not null,
phone_number varchar(255) not null,
is_deleted boolean not null,
created_at datetime(6) not null default current_timestamp(6)
id bigint auto_increment primary key,
email varchar(255) not null,
name varchar(255) not null,
password varchar(255) not null,
phone_number varchar(255) not null,
is_authorized boolean not null,
is_deleted boolean not null,
created_at datetime(6) not null default current_timestamp(6)
);

create table student_member
Expand Down
13 changes: 11 additions & 2 deletions backend/src/main/resources/test-data.sql
Original file line number Diff line number Diff line change
@@ -1,16 +1,25 @@
## member(student)
insert into member (email, name, password, phone_number, is_authorized, is_deleted)
values ('[email protected]', '송세연', 'password', '010-0000-0000', false);
values ('[email protected]', '송세연', '$2a$10$YyiOL/E5WjKrZPkB6eQSK.PwZtAO.z3JimFbq/Ky3u3rFf3XTGrWK', '010-0000-0000',
true, false);

insert into student_member (id, member_id, major_id, minor_id, double_major_id, career, career_detail)
values (202055558, 1, 1, null, null, 'EMPLOYMENT_COMPANY', 'IT 기업 개발자');

insert into member (email, name, password, phone_number, is_authorized, is_deleted)
values ('[email protected]', '아마란스', 'password', '010-0000-0000', false);
values ('[email protected]', '이다은', '$2a$10$YyiOL/E5WjKrZPkB6eQSK.PwZtAO.z3JimFbq/Ky3u3rFf3XTGrWK', '010-0000-0000',
true, false);

insert into student_member (id, member_id, major_id, minor_id, double_major_id, career, career_detail)
values (202055555, 2, 1, null, null, 'GRADUATE_SCHOOL', 'IT 기업 개발자');

insert into member (email, name, password, phone_number, is_authorized, is_deleted)
values ('[email protected]', '김하윤', '$2a$10$YyiOL/E5WjKrZPkB6eQSK.PwZtAO.z3JimFbq/Ky3u3rFf3XTGrWK', '010-0000-0000',
true, false);

insert into faculty_member (id, member_id)
values (1, 3);

## milestone histories
INSERT INTO sw_css.milestone_history (id, milestone_id, student_id, description, file_url, status, reject_reason, count,
activated_at, is_deleted, created_at)
Expand Down
2 changes: 1 addition & 1 deletion frontend/.babelrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"presets": ["next/babel"],
"presets": ["next/babel","@babel/preset-env" ],
"plugins": [["styled-components", { "ssr": true }]]
}
8 changes: 7 additions & 1 deletion frontend/babel.config.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
{
"plugins": ["@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-private-methods"]
"plugins": ["@babel/plugin-proposal-class-properties", "@babel/plugin-proposal-private-methods"],
"overrides": [
{
"include": "./node_modules/linkifyjs",
"presets": ["@babel/preset-env"]
}
]
}
Loading