-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat: 에디터에서 노트의 trail을 남기는 기능 추가 #177
Conversation
Walkthrough이 변경 사항은 음악 편집기 인터페이스의 렌더링 및 상호작용 로직을 향상시키는 데 중점을 두고 있습니다. 주요 변경 사항으로는 노트 간의 시각적 연결을 포함한 렌더링 개선, 마우스 이벤트 처리 개선, 패턴 관리 로직 강화, 사용자 인터페이스 피드백 향상, 그리고 키보드 단축키 이벤트 처리 확장이 있습니다. 이러한 변경은 음악 편집기의 기능성과 사용자 경험을 개선합니다. Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant Editor
participant UI
User->>Editor: Drag note
Editor->>Editor: Update position
Editor->>UI: Show visual connection
User->>Editor: Copy note
Editor->>UI: Show toast notification
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
🧹 Outside diff range and nitpick comments (4)
public/js/editor.js (4)
Line range hint
1223-1245
: 중첩된fetch
호출 구조 개선 필요현재
fetch
요청이 중첩되어 코드의 복잡도가 증가하고 있습니다. 이는 비동기 호출의 가독성을 떨어뜨릴 수 있습니다.
async/await
를 사용하여 비동기 코드를 간결하게 개선할 수 있습니다.- fetch(`${api}/auth/status`, { - method: "GET", - credentials: "include", - }) - .then((res) => res.json()) - .then((data) => { - // ... - fetch(`${api}/user`, { - method: "GET", - credentials: "include", - }) - .then((res) => res.json()) - .then((data) => { - // ... - }) - .catch((error) => { - // ... - }); - }) - .catch((error) => { - // ... - }); + (async () => { + try { + const authRes = await fetch(`${api}/auth/status`, { + method: "GET", + credentials: "include", + }); + const authData = await authRes.json(); + // ... + const userRes = await fetch(`${api}/user`, { + method: "GET", + credentials: "include", + }); + const userData = await userRes.json(); + // ... + } catch (error) { + // ... + } + })();
Line range hint
1460-1464
:isMac
변수 선언 누락 확인 필요코드에서
isMac
변수를 사용하고 있지만, 해당 변수가 선언되지 않아 오류가 발생할 수 있습니다.다음과 같이
isMac
변수를 선언해 주세요.+ const isMac = navigator.platform.toUpperCase().indexOf("MAC") >= 0;
Line range hint
1100-1110
: 이벤트 리스너에 대한 메모리 누수 방지 조치 필요
window.addEventListener
로 이벤트를 등록하고 있지만, 제거하는 로직이 없어 메모리 누수가 발생할 수 있습니다.컴포넌트 언마운트 시
removeEventListener
를 사용하여 이벤트 리스너를 제거해 주세요.
Line range hint
1010-1020
:patternChanged
함수 호출 시점 조정 필요패턴 변경 시 히스토리가 정확하게 관리되지 않을 수 있습니다.
패턴이 변경되는 즉시
patternChanged
함수를 호출하여 히스토리가 올바르게 기록되도록 해주세요.
const alpha = 0.4 - 0.1 * (validNote - i); | ||
if (i > 0) { | ||
const x1 = (cntCanvas.width / 200) * (renderNotes[i - 1].x + 100); | ||
const y1 = (cntCanvas.height / 200) * (renderNotes[i - 1].y + 100); | ||
const x2 = (cntCanvas.width / 200) * (renderNotes[i].x + 100); | ||
const y2 = (cntCanvas.height / 200) * (renderNotes[i].y + 100); | ||
cntCtx.beginPath(); | ||
cntCtx.strokeStyle = `rgba(255,255,255,${alpha})`; | ||
cntCtx.lineWidth = 3; | ||
cntCtx.moveTo(x1, y1); | ||
cntCtx.lineTo(x2, y2); | ||
cntCtx.stroke(); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
노트 연결선의 투명도 계산 오류 수정 필요
현재 코드에서 alpha
값이 음수가 될 수 있어 연결선이 올바르게 표시되지 않을 수 있습니다.
alpha
값이 0 이하로 내려가지 않도록 최소값을 설정해야 합니다.
- const alpha = 0.4 - 0.1 * (validNote - i);
+ const alpha = Math.max(0.4 - 0.1 * (validNote - i), 0);
📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
const alpha = 0.4 - 0.1 * (validNote - i); | |
if (i > 0) { | |
const x1 = (cntCanvas.width / 200) * (renderNotes[i - 1].x + 100); | |
const y1 = (cntCanvas.height / 200) * (renderNotes[i - 1].y + 100); | |
const x2 = (cntCanvas.width / 200) * (renderNotes[i].x + 100); | |
const y2 = (cntCanvas.height / 200) * (renderNotes[i].y + 100); | |
cntCtx.beginPath(); | |
cntCtx.strokeStyle = `rgba(255,255,255,${alpha})`; | |
cntCtx.lineWidth = 3; | |
cntCtx.moveTo(x1, y1); | |
cntCtx.lineTo(x2, y2); | |
cntCtx.stroke(); | |
} | |
const alpha = Math.max(0.4 - 0.1 * (validNote - i), 0); | |
if (i > 0) { | |
const x1 = (cntCanvas.width / 200) * (renderNotes[i - 1].x + 100); | |
const y1 = (cntCanvas.height / 200) * (renderNotes[i - 1].y + 100); | |
const x2 = (cntCanvas.width / 200) * (renderNotes[i].x + 100); | |
const y2 = (cntCanvas.height / 200) * (renderNotes[i].y + 100); | |
cntCtx.beginPath(); | |
cntCtx.strokeStyle = `rgba(255,255,255,${alpha})`; | |
cntCtx.lineWidth = 3; | |
cntCtx.moveTo(x1, y1); | |
cntCtx.lineTo(x2, y2); | |
cntCtx.stroke(); | |
} |
Summary by CodeRabbit
신규 기능
사용자 인터페이스 개선