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(#268): 발표자 페이지 새로고침 시 해결되지 않은 질문 리스트 백업 기능 구현 #269

Merged

Conversation

Byeonjin
Copy link
Collaborator

작업 개요

발표자 페이지 새로고침 시 해결되지 않은 질문 리스트 백업 기능 구현 close #268

작업 사항

  • api 변경에 따른 변경사항 반영
  • reconnectPresenter 이벤트가 발생하면 questionListState 변경해 백업
  • 백업한 내용을 질문리스트에 반영

고민한 점들(필수 X)

스크린샷(필수 X)

2023-12-12.3.59.32.mov

@Byeonjin Byeonjin added ✨ Feat 기능 개발 FE 프론트엔드 작업 labels Dec 12, 2023
@Byeonjin Byeonjin added this to the 6주차 milestone Dec 12, 2023
@Byeonjin Byeonjin self-assigned this Dec 12, 2023
Copy link

netlify bot commented Dec 12, 2023

Deploy Preview for boarlog ready!

Name Link
🔨 Latest commit 37fcbbf
🔍 Latest deploy log https://app.netlify.com/sites/boarlog/deploys/657804f489202b0008b6864b
😎 Deploy Preview https://deploy-preview-269--boarlog.netlify.app/
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link
Collaborator

@Jw705 Jw705 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

고생하셨습니다!

@@ -1,8 +1,9 @@
import { atom, selector } from "recoil";

const questionListState = atom<string[]>({
const questionListState = atom<Array<{ content: string; questionId: string }>>({
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이런식으로 객체 배열도 저장할 수 있군요! 또 하나 배워갑니다 👍

Copy link
Collaborator

@LellowMellow LellowMellow left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM입니다 :) 가장 어렵다고 생각되는 기능이 이로써 완성되었군요. 🔥🔥🔥🔥🔥

@Byeonjin Byeonjin merged commit 37fcbbf into boostcampwm2023:dev Dec 12, 2023
4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
FE 프론트엔드 작업 ✨ Feat 기능 개발
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Feature: 발표자 페이지 새로고침 시 해결되지 않은 질문 리스트 백업 기능 구현
3 participants