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

[모임 게시판] 등록/조회/삭제/수정 구현 #89

Closed
SightStudio opened this issue Sep 17, 2020 · 12 comments · Fixed by #98
Closed

[모임 게시판] 등록/조회/삭제/수정 구현 #89

SightStudio opened this issue Sep 17, 2020 · 12 comments · Fixed by #98
Assignees

Comments

@SightStudio
Copy link
Collaborator

No description provided.

@SightStudio SightStudio changed the title 게시판 API 생성 게시판 조희/생성 Sep 17, 2020
@SightStudio SightStudio changed the title 게시판 조희/생성 게시판 기능 조희/생성 Sep 17, 2020
@SightStudio SightStudio self-assigned this Sep 19, 2020
@SightStudio SightStudio added the WIP 작업 중입니다. 머지하지 마세요 label Sep 19, 2020
@SightStudio
Copy link
Collaborator Author

SightStudio commented Sep 19, 2020

image

클럽 별 게시판 조회를 위해 DDL 추가

@030ii
Copy link
Collaborator

030ii commented Sep 20, 2020

  • 게시판 조회(목록)

스크린샷 2020-09-20 오후 12 47 46

  • 게시판 생성(글쓰기)

스크린샷 2020-09-20 오후 12 48 35

  • 게시글 화면(+댓글 기능 +작성자 본인여부에 따른 수정/삭제 버튼 노출)

스크린샷 2020-09-20 오후 12 48 48

  • 화면은 이런식으로 만들어두었습니다. 필요 데이터들 참고해주세요.

@yyy9942 yyy9942 linked a pull request Sep 20, 2020 that will close this issue
@yyy9942
Copy link
Contributor

yyy9942 commented Sep 20, 2020

@030ii 상단고정 게시글의 경우, 색상이 노란색?으로 달려있으면 좋겠네요

@yyy9942
Copy link
Contributor

yyy9942 commented Sep 20, 2020

[요청사항]

  • 첫 번째 사진의 썸네일
  • 사진의 개수

@SightStudio
Copy link
Collaborator Author

넵 확인했습니다.

@SightStudio
Copy link
Collaborator Author

SightStudio commented Oct 5, 2020

클럽 게시판 이미지 저장을 위한 테이블 생성

create table club_board_img
(
    seq bigint not null primary key,
    club_board_seq bigint  not null ,
    img_name varchar(50) null,
    img_url varchar(400) null,
    created_at datetime null,
    updated_at datetime null,
    delete_flag bit not null

) engine=innodb collate=utf8mb4_unicode_ci;

@SightStudio
Copy link
Collaborator Author

@030ii 글쓸때 이미지를 어떻게 처리할지 논의할 필요가 있을것같네요. (신경 잘 못써서 죄송합니다 ㅜㅜ)

  1. 게시글안에 이미지가 들어가는 방식으로 처리할 것인지
    image

  2. 텍스트 따로, 이미지 따로

스크린샷 2020-10-06 오후 8 22 12

2번이 적용하기는 편하지만, 1안이 더 재밋을 거같긴 하네요.
현재는 일단 2안으로 적용시켜놓겠습니다. 어떤게 나을지 알려주세요

@yyy9942
Copy link
Contributor

yyy9942 commented Oct 6, 2020

소모임 어플리케이션에서는 2안으로 적용되어있긴 합니다만, 이번에는 1안이 더 재밌어보여요

@SightStudio
Copy link
Collaborator Author

SightStudio commented Oct 7, 2020

[요청사항]

  • 첫 번째 사진의 썸네일
  • 사진의 개수

그리고 게시글 수정 부분은 사진때문에 논의를 좀 해봐야할것같아요 @030ii

해당 PR이 반영되면 적용될 예정입니다.
#98

스크린샷 2020-10-07 오후 11 49 33

@030ii
Copy link
Collaborator

030ii commented Oct 11, 2020

저도 이미지 업로드 후 미리보기?? 방식을 어떻게 해야할지 고민중이에요.
현재 이미지 자르기 팝업창은 요렇게 만들었어요

@030ii
Copy link
Collaborator

030ii commented Oct 11, 2020

제가 사용한 이미지 crop 라이브러리는 이미지 자르기 팝업창에서 "완료" 버튼 누르면
잘린 상태 이미지만 post전송하는 방식인거같아 사진 업로드용 임시 테이블이 하나 더 필요할 거 같아요.
==> 파일 임시 저장 API 있네요 --> 이거로 작업

1안이 재미있어 보이긴 하나, 작업 공수가 꽤 들거같아요. 한번 고려해보겠습니다.

@SightStudio SightStudio removed the WIP 작업 중입니다. 머지하지 마세요 label Oct 11, 2020
@SightStudio SightStudio reopened this Oct 11, 2020
@030ii
Copy link
Collaborator

030ii commented Oct 11, 2020

@SightStudio
현재까지는 2안은 바로 작업가능하여 2안으로 정할게요.
1안은 추후 작업가능해지면 그때 말씀드릴게요!

@SightStudio SightStudio changed the title 게시판 기능 조희/생성 [모임 게시판] 등록/조회/삭제/수정 구현 Oct 21, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants