Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
students
survey
Commits
4c74350f
Commit
4c74350f
authored
Jan 12, 2023
by
jang dong hyeok
Browse files
div 사이즈 통일
parent
514ebfde
Changes
2
Show whitespace changes
Inline
Side-by-side
frontend/src/surveys/Question.tsx
View file @
4c74350f
...
@@ -23,6 +23,8 @@ export const Question = ({
...
@@ -23,6 +23,8 @@ export const Question = ({
const
[
question
,
setQuestion
]
=
useState
(
element
);
const
[
question
,
setQuestion
]
=
useState
(
element
);
const
isEditing
=
question
.
isEditing
;
const
isEditing
=
question
.
isEditing
;
const
[
questions
,
setQuestions
]
=
useState
();
async
function
handleEditComplete
()
{
async
function
handleEditComplete
()
{
question
.
content
.
choices
.
map
((
choice
)
=>
{
question
.
content
.
choices
.
map
((
choice
)
=>
{
if
(
choice
.
text
.
trim
()
===
""
)
{
if
(
choice
.
text
.
trim
()
===
""
)
{
...
@@ -84,11 +86,12 @@ export const Question = ({
...
@@ -84,11 +86,12 @@ export const Question = ({
const
dropResult
=
monitor
.
getDropResult
<
DropResult
>
();
const
dropResult
=
monitor
.
getDropResult
<
DropResult
>
();
if
(
item
&&
dropResult
)
{
if
(
item
&&
dropResult
)
{
alert
(
`You dropped
${
item
.
name
}
`
);
alert
(
`You dropped
${
item
.
name
}
`
);
}
else
{
alert
(
"
you dropped wrong place
"
);
}
}
},
},
collect
:
(
monitor
)
=>
({
collect
:
(
monitor
)
=>
({
isDragging
:
monitor
.
isDragging
(),
isDragging
:
monitor
.
isDragging
(),
handlerId
:
monitor
.
getHandlerId
(),
}),
}),
}));
}));
...
@@ -98,19 +101,22 @@ export const Question = ({
...
@@ -98,19 +101,22 @@ export const Question = ({
isOver
:
monitor
.
isOver
(),
isOver
:
monitor
.
isOver
(),
canDrop
:
monitor
.
canDrop
(),
canDrop
:
monitor
.
canDrop
(),
}),
}),
hover
(
item
,
monitor
)
{
if
(
!
isDragging
)
{
return
;
}
},
}));
}));
//
//
return
(
return
(
<
div
ref
=
{
drop
}
className
=
"flex w-full h-full justify-center"
>
<
div
ref
=
{
drop
}
className
=
"flex w-4/5 h-full justify-center"
style
=
{
{
border
:
isOver
?
"
dotted
"
:
""
,
}
}
>
<
div
<
div
ref
=
{
drag
}
ref
=
{
drag
}
style
=
{
{
borderColor
:
isEditing
?
"
red
"
:
"
#0A8A8A
"
}
}
style
=
{
{
borderColor
:
isEditing
?
"
red
"
:
"
#0A8A8A
"
,
}
}
className
=
{
className
=
{
"
flex flex-col container w-full h-auto border-2 items-center m-3 py-2 rounded-lg cursor-move
"
"
flex flex-col container w-full h-auto border-2 items-center m-3 py-2 rounded-lg cursor-move
"
}
}
...
...
frontend/src/surveys/SurveyTitleAndComment.tsx
View file @
4c74350f
...
@@ -42,8 +42,9 @@ export const SurveyTitleAndComment = ({
...
@@ -42,8 +42,9 @@ export const SurveyTitleAndComment = ({
};
};
return
(
return
(
<
div
className
=
"flex w-4/5 h-full justify-center"
>
<
div
<
div
className
=
{
`flex flex-col container w-
4/5
h-auto border-2 items-center m-3 py-2 rounded-lg
${
className
=
{
`flex flex-col container w-
full
h-auto border-2 items-center m-3 py-2 rounded-lg
${
disabled
?
"
border-themeColor
"
:
"
border-red-500
"
disabled
?
"
border-themeColor
"
:
"
border-red-500
"
}
`
}
}
`
}
>
>
...
@@ -88,5 +89,6 @@ export const SurveyTitleAndComment = ({
...
@@ -88,5 +89,6 @@ export const SurveyTitleAndComment = ({
)
}
)
}
</
div
>
</
div
>
</
div
>
</
div
>
</
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