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
reservation-service
Commits
872ffa42
Commit
872ffa42
authored
Oct 05, 2020
by
Lee Jin Ju
Browse files
.
parent
aebef277
Changes
5
Hide whitespace changes
Inline
Side-by-side
server/.gitignore
View file @
872ffa42
...
...
@@ -20,8 +20,4 @@
npm-debug.log*
yarn-debug.log*
<<<<<<< HEAD
yarn-error.log*
=======
yarn-error.log*
>>>>>>> origin/rkyoung7
yarn-error.log*
\ No newline at end of file
server/client/src/Components/Calendar.js
View file @
872ffa42
import
React
,
{
useState
,
useEffect
}
from
'
react
'
;
import
Calendar
from
'
tui-calendar
'
;
import
"
tui-calendar/dist/tui-calendar.css
"
;
import
styled
from
'
styled-components
'
;
const
calendar
=
new
Calendar
(
'
#calendar
'
,
{
defaultView
:
'
week
'
,
// useCreationPopup: true,
// useDetailPopup: true
});
calendar
.
createSchedules
([
{
id
:
'
1
'
,
calendarId
:
'
Major Lecture
'
,
title
:
'
자료 구조
'
,
category
:
'
time
'
,
start
:
'
2018-11-20T10:30:00
'
,
end
:
'
2018-11-20T12:30:00
'
},
{
id
:
'
2
'
,
calendarId
:
'
General Lecture
'
,
title
:
'
건강과 영양
'
,
category
:
'
time
'
,
dueDateClass
:
''
,
start
:
'
2018-11-20T14:30:00
'
,
end
:
'
2018-11-20T16:30:00
'
,
isReadOnly
:
true
// schedule is read-only
}
]);
const
cal
=
styled
.
div
`
position: absolute;
left: 0;
right: 0;
bottom: 5px;
top: 64px;
`
// const container = document.getElementById('calendar');
const
options
=
{
defaultView
:
'
week
'
,
taskView
:
false
,
week
:
{
workweek
:
true
},
useCreationPopup
:
true
,
useDetailPopup
:
true
};
const
calendar
=
new
Calendar
(
'
#calendar
'
,
options
);
calendar
.
setCalendars
([
{
id
:
'
Major Subject
'
,
name
:
'
전공 필수
'
,
color
:
'
#ffffff
'
,
bgColor
:
'
#ff5583
'
,
dragBgColor
:
'
#ff5583
'
,
borderColor
:
'
#ff5583
'
},
{
id
:
'
Elective Subject
'
,
name
:
'
전공 선택
'
,
color
:
'
#ffffff
'
,
bgColor
:
'
#ffbb3b
'
,
dragBgColor
:
'
#ffbb3b
'
,
borderColor
:
'
#ffbb3b
'
},
{
id
:
'
General Subject
'
,
name
:
'
일반 교양
'
,
color
:
'
#ffffff
'
,
bgColor
:
'
#03bd9e
'
,
dragBgColor
:
'
#03bd9e
'
,
borderColor
:
'
#03bd9e
'
}
]);
calendar
.
createSchedules
([
{
id
:
'
1
'
,
calendarId
:
'
Major Subject
'
,
title
:
'
자료구조론
'
,
category
:
'
time
'
,
start
:
'
2020-10-05T11:00:00
'
,
end
:
'
2020-10-05T12:00:00
'
,
isReadOnly
:
true
},
{
id
:
'
2
'
,
calendarId
:
'
Elective Subject
'
,
title
:
'
웹 프로그래밍
'
,
category
:
'
allday
'
,
start
:
'
2020-10-5T10:00:00
'
,
end
:
'
2020-10-9T11:00:00
'
,
isReadOnly
:
true
},
{
id
:
'
3
'
,
calendarId
:
'
General Subject
'
,
title
:
'
영양과 건강
'
,
category
:
'
time
'
,
start
:
'
2020-10-8T11:00:00
'
,
end
:
'
2020-10-8T15:00:00
'
,
isReadOnly
:
true
}
]);
calendar
.
render
();
export
default
Calendar
\ No newline at end of file
server/client/src/Pages/HomePage.js
View file @
872ffa42
...
...
@@ -9,39 +9,6 @@ const Drop = styled.div`
}
`
const
Schedule
=
styled
.
div
`
& ul {
list-style-type: none;
}
& .cd-schedule__events {
width: 100%;
> ul {
display: flex;
flex-wrap: nowrap;
}
& .cd-schedule__timeline {
> ul {
line-height: 1em;
}
}
& .cd-schedule__group {
flex-basis: 0;
flex-grow: 1;
}
& .cd-schedule__event {
position: absolute;
z-index: 3;
width: calc(100% + 2px); // top position and height will be set using js
left: -1px;
}
`
function
Home
()
{
const
[
click
,
setState
]
=
useState
();
...
...
server/client/src/index.css
View file @
872ffa42
...
...
@@ -10,4 +10,4 @@ body {
code
{
font-family
:
source-code-pro
,
Menlo
,
Monaco
,
Consolas
,
'Courier New'
,
monospace
;
}
}
\ No newline at end of file
server/schemas/index.js
View file @
872ffa42
...
...
@@ -6,7 +6,7 @@ module.exports = () => {
mongoose
.
set
(
'
debug
'
,
true
);
}
mongoose
.
connect
(
'
mongodb://hijinju:highlight@localhost:27017/admin
'
,
{
dbName
:
'
KU_R
ental
'
,
dbName
:
'
ku_r
ental
'
,
},
(
error
)
=>
{
if
(
error
)
{
console
.
log
(
'
몽고디비 연결 에러
'
,
error
);
...
...
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