25-03-06
๐ Daily Reportโ
๐ ํ๋ก์ ํธ ์ํฉโ
์ด์์ -> ์ด์ฉ์ ์ธก์ SSE ํ ์คํธ UI๊ฐ ์ผ์ถ ๋๋ฌ๋ค.
๊ทธ๋ฐ๋ฐ ๋ฌธ์ ๊ฐ ์๊ฒผ๋ค.
์๊ธด๊ฒ ์ ๋ง์์ ๋ค์ง ์๋๋ค ๐คจ
์ ๋๋ฉ์ด์ ์ ๋ง์์ง๋ง ๋๋ฉ์ธ ์๊ฐํ๋ฉด ๋๋ฌด ํตํต ํ๋๊ฒ ๊ฐ์.
๐ ์คํฌ๋ฆฝํธ ๋ก๋ฉ ์์ ๊ณ ๋ คํ๊ธฐโ
// ๋นํ์์ด๊ฑฐ๋ ๋ก๊ทธ์ธํ ์ด์ฉ์ (null ์ฒดํฌ๊ฐ ๋งจ ์์ ์์ด์ผ ํจ)
if (role == null || role.equals("MEMBER")) {
...
model.addAttribute("memberCode", code);
return "index"; // ํ์
์คํ ์ด ๋ชฉ๋ก ํ์ด์ง๋ก ์ด๋
}
index.html์ layout-member.html์ ๋ ์ด์์์ผ๋ก ์ฌ์ฉํ๊ณ ์๋๋ฐ,
layout-member.js์์ ์ ๊ทผํ๋ memberCode
๊ฐ undefined์ด๋ฐํผ๋ค๋ก ์ฐํ์ง ์์ผ๋ ค๋ฉด, ํ์์ ๊ฐ์ด ์คํฌ๋ฆฝํธ ๋ก๋ฉ ์์๋ฅผ ์กฐ์ ํด์ผ ํ๋ค.
๐ ์์ธ๋ก ๊ทผ๋ณธ ์๋ replaceChild
โ
๋๋๊ฒ๋ ๋ ํผ๋ฐ์ค์ ์๊ฑฐํ๋ฉด, replaceChild
๋ (dest, src)
ํ์์ ๊ทผ๋ณธ์ ๋ฐ๋ฅด๊ณ ์์๋ค.
๋ค์ ๋งํด newNode๊ฐ 2๋ฒ์งธ ์ธ์๋ก ๋ค์ด๊ฐ๋ค๋ ๋ป์ด๋ค.
// ํ ์คํธ ๋ทฐ ์ปจํธ๋กค
function showAlarmToast(message, dateTime) {
// parent div (toast box)
const notiToastBoxDiv = document.getElementById('noti-toast-box');
// old div
const notiToastDataDiv = document.getElementById('noti-toast-data');
const notiToastDatetimeDiv = document.getElementById('noti-toast-datetime');
// new div
const newDataDiv = document.createElement("div");
newDataDiv.classList.add('noti-toast-data');
newDataDiv.appendChild(document.createTextNode(message));
const newDatetimeDiv = document.createElement("div");
newDatetimeDiv.classList.add('noti-toast-datetime');
newDatetimeDiv.appendChild(document.createTextNode(dateTime));
// div ๊ต์ฒด
notiToastBoxDiv.replaceChild(notiToastDataDiv, newDataDiv); // error
notiToastBoxDiv.replaceChild(notiToastDatetimeDiv, newDatetimeDiv); // error
// ํ ์คํธ ๋ฐ์ค ๋ณด์ฌ์ฃผ๊ธฐ
notiToastBoxDiv.classList.add("active");
// 5์ด ํ ํ ์คํธ ๋ฐ์ค ์จ๊ธฐ๊ธฐ
setTimeout(() =>{
notiToastBoxDiv.classList.remove("active");
}, 5000)
}
๊ทผ๋ฐ ๊ฒฐ๊ตญ์ replaceWith
๋ผ๋ ๋ ๋ชจ๋ํ ๋ฐฉ์์ด ์์ด์ ์ด๋ฅผ ์ฑํํ๋ค.
๊ทธ๋ฆฌ๊ณ ์ ๋
ธ๋์ id ์ง์ ํ๋๊ฑฐ ๊น๋จน์ด์ (-> ์ต์ด replace ์ดํ getElementById
ํธ์ถ์ ํฐ์ง)
ํด๋น ์ฝ๋๋ ์ถ๊ฐํ๋ค.
// ํ ์คํธ ๋ทฐ ์ปจํธ๋กค
function showAlarmToast(message, dateTime) {
console.log('show toast'); // logging
// parent div (toast box)
const notiToastBoxDiv = document.getElementById('noti-toast-box');
// old div
const notiToastDataDiv = document.getElementById('noti-toast-data');
const notiToastDatetimeDiv = document.getElementById('noti-toast-datetime');
// new div
const newDataDiv = document.createElement("div");
newDataDiv.classList.add('noti-toast-data');
newDataDiv.id = 'noti-toast-data';
newDataDiv.appendChild(document.createTextNode(message));
const newDatetimeDiv = document.createElement("div");
newDatetimeDiv.classList.add('noti-toast-datetime');
newDatetimeDiv.id = 'noti-toast-datetime';
newDatetimeDiv.appendChild(document.createTextNode(dateTime));
// div ๊ต์ฒด
notiToastDataDiv.replaceWith(newDataDiv);
notiToastDatetimeDiv.replaceWith(newDatetimeDiv);
// ํ ์คํธ ๋ฐ์ค ๋ณด์ฌ์ฃผ๊ธฐ
notiToastBoxDiv.classList.add("active");
// 5์ด ํ ํ ์คํธ ๋ฐ์ค ์จ๊ธฐ๊ธฐ
setTimeout(() =>{
console.log('hide toast'); // logging
notiToastBoxDiv.classList.remove("active");
}, 5000)
}
๐ ํ์๋ฆฌํ ๋์ class ์ถ๊ฐโ
ํด๋น ๋ฐฉ๋ฒ์ผ๋ก ๊ฐ๋ฅํ๋ค๊ณ ํ๋ค.
๐ ๋๋ฌผ๋๋ th
border-radius ์ ์ฉํ๊ธฐโ
table์ ์ง์ ํ border-collapse: collapse;
์์ฑ๊ณผ radius ์์ฑ์ด ์ถฉ๋ํ๋ค๋๋ผ.
box-shadow์ ์ ํ์ ๋ ธ๊ฐ๋ค๋ก ๊ฒจ์ฐ ํด๊ฒฐํ๋๋ฐ
๊ฒจ์ฐ ํด๊ฒฐํ๊ฒ ์คํ์ผ๋ง์ด์ด์ ํํ๊ฐ ์๋ค. CSS ํ์ค์ด ๋ง์ด ๋ฐ์ ํ๊ธธ ๋ฐ๋...
table {
width: 100%;
border-collapse: collapse;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
margin-bottom: 48px;
}
th {
font-family: "Pretendard", sans-serif;
color: #6C6C71;
background-color: #FCFCFC;
font-weight: 600;
font-size: 13px;
padding: 13px 16px;
text-align: left;
}
th:first-child {
border-top-left-radius: 6px;
box-shadow: 0 0 0 1px #E2E2E9;
}
th:last-child {
border-top-right-radius: 6px;
box-shadow: 0 0 0 1px #E2E2E9;
}
th:not(:last-child) {
border-right: 1px solid #E2E2E9;
}
th:not(:first-child):not(:last-child) {
box-shadow: 0 -1px 0 #E2E2E9, 0 1px 0 #E2E2E9;
}