Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
students
butter-studio
Commits
07d957af
Commit
07d957af
authored
Aug 11, 2021
by
Kim, Subin
Browse files
진짜진짜 마지막
parent
64032ed9
Changes
1
Show whitespace changes
Inline
Side-by-side
client/src/components/Calender/HorizontalCalender.js
View file @
07d957af
...
...
@@ -6,9 +6,6 @@ import styles from "./calender.module.scss";
const
Calender
=
({
selectDate
,
setSelectDate
})
=>
{
const
[
dateList
,
setDateList
]
=
useState
([])
const
[
dateArr
,
setDateArr
]
=
useState
([])
const
[
date
,
setDate
]
=
useState
(
moment
().
format
(
'
YYYY-MM-DD
'
))
const
[
weekly
,
setWeekly
]
=
useState
([])
const
[
week
,
setWeek
]
=
useState
([
"
일
"
,
"
월
"
,
"
화
"
,
"
수
"
,
"
목
"
,
"
금
"
,
"
토
"
])
const
[
month
,
setMonth
]
=
useState
({
pre
:
moment
(
selectDate
).
subtract
(
1
,
'
months
'
).
format
(
'
YYYY-MM
'
),
cur
:
moment
(
selectDate
).
format
(
'
YYYY-MM
'
),
next
:
moment
(
selectDate
).
add
(
1
,
'
months
'
).
format
(
'
YYYY-MM
'
)
})
const
history
=
useHistory
()
...
...
@@ -16,25 +13,8 @@ const Calender = ({ selectDate, setSelectDate }) => {
useEffect
(()
=>
{
setMonth
({
...
month
,
pre
:
moment
(
selectDate
).
subtract
(
1
,
'
months
'
).
format
(
'
YYYY-MM
'
),
cur
:
moment
(
selectDate
).
format
(
'
YYYY-MM
'
),
next
:
moment
(
selectDate
).
add
(
1
,
'
months
'
).
format
(
'
YYYY-MM
'
)
})
getDate
(
selectDate
)
getWeek
(
selectDate
)
},
[
selectDate
])
function
getWeek
(
oneDay
)
{
let
dateArr
=
[]
dateArr
=
Array
(
7
).
fill
(
0
).
map
((
n
,
i
)
=>
{
let
current
=
moment
(
oneDay
).
add
((
n
+
i
),
'
days
'
)
return
<
div
className
=
"
col-auto align-self-end text-center
"
onClick
=
{()
=>
setSelectDate
(
current
.
format
(
'
YYYY-MM-DD
'
))}
>
{
current
.
isSame
(
oneDay
)
||
current
.
format
(
"
DD
"
)
===
"
01
"
?
<
strong
className
=
{
styles
.
yearmonth
}
>
{
current
.
format
(
'
YYYY.MM
'
)}
<
/strong> : ""
}
<
div
className
=
{
`d-flex flex-column
${
styles
.
cursor
}
`
+
((
current
.
format
(
"
d
"
)
===
"
0
"
||
current
.
format
(
"
d
"
)
===
"
6
"
)
?
((
current
.
format
(
"
d
"
)
===
"
0
"
)
?
"
text-danger
"
:
"
text-primary
"
)
:
""
)}
>
<
strong
className
=
{
current
.
isSame
(
oneDay
)
?
(
/admin/g
.
test
(
history
.
location
.
pathname
)
?
styles
.
selectDate
:
styles
.
selectatHome
)
:
""
}
>
{
current
.
format
(
'
DD
'
)}
<
/strong
>
<
strong
>
{
current
.
isSame
(
moment
().
format
(
'
YYYY-MM-DD
'
))
?
"
오늘
"
:
week
[
Number
(
current
.
format
(
"
d
"
))]}
<
/strong
>
<
/div
>
<
/div
>
})
console
.
log
(
"
Dadsa--===
"
,
dateArr
)
setWeekly
(
dateArr
)
}
function
getDate
(
oneDay
)
{
let
dateArr
=
[]
let
lastWeek
=
moment
(
oneDay
).
clone
().
subtract
(
6
,
'
days
'
)
...
...
@@ -54,8 +34,6 @@ const Calender = ({ selectDate, setSelectDate }) => {
}
return
(
<>
{
console
.
log
(
"
date==
"
,
selectDate
)}
<
div
className
=
"
d-flex position-relative border-bottom border-dark border-2 p-3
"
>
<
i
className
=
{
`bi bi-calendar2 position-absolute top-0
${
styles
.
calender
}
${
styles
.
cursor
}
`
}
data
-
bs
-
toggle
=
"
modal
"
data
-
bs
-
target
=
"
#calenderModal
"
><
/i
>
<
div
className
=
"
modal
"
id
=
"
calenderModal
"
tabIndex
=
"
-1
"
aria
-
labelledby
=
"
calenderModal
"
aria
-
hidden
=
"
true
"
>
...
...
@@ -100,7 +78,6 @@ const Calender = ({ selectDate, setSelectDate }) => {
<
/div
>
<
i
className
=
{
`bi bi-chevron-right carousel-control-next align-self-center text-center
${
styles
.
cursor
}
${
/
admin
/
g
.
test
(
history
.
location
.
pathname
)
?
"
text-dark
"
:
"
text-white
"
}
`
}
data
-
bs
-
target
=
"
#carouselWeek
"
data
-
bs
-
slide
=
"
next
"
><
/i
>
<
/div
>
<
/
>
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment