Skip to content
Snippets Groups Projects
Commit a8c365b2 authored by tudtianus's avatar tudtianus
Browse files

Merge remote-tracking branch 'origin/Journal' into Journal

parents 8ec8d626 7d8d8439
No related branches found
No related tags found
No related merge requests found
Showing
with 824 additions and 66 deletions
...@@ -24,7 +24,7 @@ public class Menu extends SimpleTagSupport { ...@@ -24,7 +24,7 @@ public class Menu extends SimpleTagSupport {
" <ul class=\"sidebar-nav\">\n" + " <ul class=\"sidebar-nav\">\n" +
" <li class=\"sidebar-brand\"><a href=\"overview-student.html\">overview</a></li>\n" + " <li class=\"sidebar-brand\"><a href=\"overview-student.html\">overview</a></li>\n" +
" <li><a href=\"takeQuiz.jsp\">Quizfrage</a></li>\n" + " <li><a href=\"takeQuiz.jsp\">Quizfrage</a></li>\n" +
" <li><a href=\"#\">ePortfolio</a></li>\n" + " <li><a href=\"eportfolio.jsp\">ePortfolio</a></li>\n" +
" <li><a href=\"#\">Beitrag</a></li>\n" + " <li><a href=\"#\">Beitrag</a></li>\n" +
" <li><a href=\"finalAssessments.jsp\">Bewertung</a></li>\n" + " <li><a href=\"finalAssessments.jsp\">Bewertung</a></li>\n" +
" <li><a href=\"../index.jsp\">Logout</a></li>\n" + " <li><a href=\"../index.jsp\">Logout</a></li>\n" +
......
...@@ -21,27 +21,21 @@ public class AnnotationController implements IAnnotation { ...@@ -21,27 +21,21 @@ public class AnnotationController implements IAnnotation {
uuid = UUID.randomUUID().toString(); uuid = UUID.randomUUID().toString();
} }
// build the annotation
Annotation annotation = new Annotation(uuid,
ZonedDateTime.now().toEpochSecond(),
annotationPostRequest.getUserId(),
annotationPostRequest.getTargetId(),
annotationPostRequest.getBody(),
annotationPostRequest.getStartCharacter(),
annotationPostRequest.getEndCharacter());
// establish connection // establish connection
MysqlConnect connection = new MysqlConnect(); MysqlConnect connection = new MysqlConnect();
connection.connect(); connection.connect();
// build and execute request // build and execute request
String request = "INSERT INTO annotations (`id`, `userId`, `targetId`, `body`, `startCharacter`, `endCharacter`) VALUES (?,?,?,?,?,?);"; String request = "INSERT INTO annotations (`id`, `userId`, `targetId`, `body`, `startCharacter`, `endCharacter`) VALUES (?,?,?,?,?,?);";
connection.issueInsertOrDeleteStatement(request, annotation.getId(), annotation.getUserId(), annotation.getTargetId(), annotation.getBody(), annotation.getStartCharacter(), annotation.getEndCharacter()); connection.issueInsertOrDeleteStatement(request, uuid, annotationPostRequest.getUserId(), annotationPostRequest.getTargetId(), annotationPostRequest.getBody(), annotationPostRequest.getStartCharacter(), annotationPostRequest.getEndCharacter());
// close connection // close connection
connection.close(); connection.close();
return annotation; // build response annotation
Annotation annotationResponse = getAnnotation(uuid);
return annotationResponse;
} }
......
...@@ -113,7 +113,7 @@ public class JournalView { ...@@ -113,7 +113,7 @@ public class JournalView {
//TODO token //TODO token
URI location; URI location;
try { try {
location = new URI("../pages/eportfolio.jsp?token=test"); location = new URI("../pages/eportfolio.jsp");
log.debug("<<< saveJournal: redirect to " +location.toString()); log.debug("<<< saveJournal: redirect to " +location.toString());
return Response.temporaryRedirect(location).build(); return Response.temporaryRedirect(location).build();
...@@ -158,7 +158,7 @@ public class JournalView { ...@@ -158,7 +158,7 @@ public class JournalView {
journalService.closeJournal(journal); journalService.closeJournal(journal);
//TODO token //TODO token
try { try {
URI location = new URI("../pages/eportfolio.jsp?token=test"); URI location = new URI("../pages/eportfolio.jsp?");
log.debug("<<< closeJournal: redirect to " +location.toString()); log.debug("<<< closeJournal: redirect to " +location.toString());
return Response.temporaryRedirect(location).build(); return Response.temporaryRedirect(location).build();
......
...@@ -49,7 +49,7 @@ public class ProjectDescriptionView { ...@@ -49,7 +49,7 @@ public class ProjectDescriptionView {
//TODO token //TODO token
try { try {
URI location = new URI("../pages/eportfolio.jsp?token=test"); URI location = new URI("../pages/eportfolio.jsp?");
log.debug("<<< saveText: redirect to " +location.toString()); log.debug("<<< saveText: redirect to " +location.toString());
return Response.temporaryRedirect(location).build(); return Response.temporaryRedirect(location).build();
...@@ -74,7 +74,7 @@ public class ProjectDescriptionView { ...@@ -74,7 +74,7 @@ public class ProjectDescriptionView {
try { try {
URI location = new URI("../pages/eportfolio.jsp?token=test"); URI location = new URI("../pages/eportfolio.jsp");
log.debug("<<< addLink: redirect to " +location.toString()); log.debug("<<< addLink: redirect to " +location.toString());
return Response.temporaryRedirect(location).build(); return Response.temporaryRedirect(location).build();
...@@ -99,7 +99,7 @@ public class ProjectDescriptionView { ...@@ -99,7 +99,7 @@ public class ProjectDescriptionView {
descriptionService.deleteLink(link); descriptionService.deleteLink(link);
//TODO token //TODO token
try { try {
URI location = new URI("../pages/eportfolio.jsp?token=test"); URI location = new URI("../pages/eportfolio.jsp");
log.debug("<<< deleteLink: redirect to " +location.toString()); log.debug("<<< deleteLink: redirect to " +location.toString());
return Response.temporaryRedirect(location).build(); return Response.temporaryRedirect(location).build();
...@@ -122,7 +122,7 @@ public class ProjectDescriptionView { ...@@ -122,7 +122,7 @@ public class ProjectDescriptionView {
descriptionService.closeDescription(desc); descriptionService.closeDescription(desc);
//TODO token //TODO token
try { try {
URI location = new URI("../pages/eportfolio.jsp?token=test"); URI location = new URI("../pages/eportfolio.jsp");
log.debug("<<< closeDescription: redirect to " +location.toString()); log.debug("<<< closeDescription: redirect to " +location.toString());
return Response.temporaryRedirect(location).build(); return Response.temporaryRedirect(location).build();
......
body, html {
height: 100vh;
width: 100vw;
}
ol {
padding: 0px;
margin: 0px;
list-style-type: none;
}
.content-mainpage {
display: flex;
box-sizing: border-box;
font-family: Arial;
height: 100%;
overflow-y: hidden;
}
.rightcolumn {
float: right;
width: 25%;
display: inline-block;
overflow: scroll;
/* background-color: blue; */
}
.leftcolumn {
padding: 10px;
float: left;
width: 75%;
display: inline-block;
/* background-color: yellow; */
}
.rightcontent {
margin: 10px;
}
.leftcontent {
max-height: 100%;
display: flex;
flex-flow: column;
/* background-color: white; */
}
.spacing {
height: 10px;
/* background-color: orange; */
}
.annotation-card {
width: 100%;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
border-radius: 5px;
display: inline-block;
background-color: white;
}
.annotation-card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.annotation-header {
padding: 5px;
display: flex;
flex-wrap: wrap;
align-items: center;
border-top-right-radius: 5px;
border-top-left-radius: 5px;
color: white; }
.annotation-header i {
font-size: 11px;
}
.annotation-header span {
font-size: 11px;
margin-left: 5px;
margin-right: 5px;
}
.annotation-header a:link {
color: white;
text-decoration: none;
}
.annotation-header a:visited {
color: white;
text-decoration: none;
}
.annotation-header a:active {
color: white;
text-decoration: none;
}
.annotation-header a:hover {
color: #e6e6e6;
text-decoration: none;
}
.annotation-header-title {
display: flex;
flex-flow: column;
width: calc(100% - 40px);
}
.annotation-header-toggle {
height: 40px;
width: 40px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.annotation-body {
padding: 8px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
}
.annotation-body p {
margin: 0px;
font-size: 13px;
}
.overflow-hidden {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.annotation-footer {
padding: 5px;
padding-top: 0px;
text-align: right;
font-size: 9px;
color: lightgrey;
display: flex;
}
.annotation-footer span {
margin-left: 5px;
}
.annotation-footer-delete {
margin-right: 5px;
cursor: pointer;
}
.annotation-footer-date {
flex: 1
}
.container-fluid-content {
display: flex;
flex-flow: column;
height: 100%;
}
.content-header {
display: flex;
}
.full-height {
height: 100%;
}
.leftcontent-buttons-next {
float: right;
margin: 20px;
}
.leftcontent-text {
overflow: scroll;
}
...@@ -4,8 +4,8 @@ ...@@ -4,8 +4,8 @@
grid-template-columns: 2fr 1fr 15%; grid-template-columns: 2fr 1fr 15%;
grid-template-areas: grid-template-areas:
"title edit group" "title edit group"
"text text group"
"text text links" "text text links"
"text text ..."
; ;
} }
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
} }
.journal-description-links{ .journal-description-links{
grid-area:links;
} }
.journal-container{ .journal-container{
......
// initialize userId, userColors and targetId
var userId = randomUserId();
var userColors = new Map();
var userColorsDark = new Map();
var targetId = 200;
// declare document text
var documentText;
/**
* This function will fire when the DOM is ready
*/
$(document).ready(function() {
/**
* Context menu handler
*/
$.contextMenu({
selector: '.context-menu-one',
callback: function(key, options) {
// close context menu
window.close;
// initialize selected body
var body = getSelectedText();
// if user selected something
if (body.length > 0) {
// annotationPostRequest
var request = {
userId: userId,
targetId: targetId,
body: body,
startCharacter: window.getSelection().getRangeAt(0).startOffset,
endCharacter: window.getSelection().getRangeAt(0).endOffset
};
console.log(request);
createAnnotation(request, function(response) {
// display the new annotation
displayAnnotation(response);
});
}
},
items: {
"annotation": {name: "Annotation", icon: "edit"}
}
});
/**
* continue button
*/
$('#btnContinue').click(function () {
location.href="givefeedback.jsp?token=" + getUserTokenFromUrl();
});
documentText = $('#documentText').html();
// fetch annotations from server on page start
getAnnotations(targetId, function (response) {
// iterate over annotations and display each
$.each(response, function (i, annotation) {
displayAnnotation(annotation);
})
});
});
/**
* POST: Save an annotation in the database
*
* @param annotationPostRequest The post request
* @param responseHandler The response handler
*/
function createAnnotation(annotationPostRequest, responseHandler) {
var url = "http://localhost:8080/rest/annotations/";
var json = JSON.stringify(annotationPostRequest);
$.ajax({
url: url,
type: "POST",
data: json,
contentType: "application/json",
dataType: "json",
success: function (response) {
responseHandler(response);
}
});
}
/**
* PATCH: Alter an annotation in database
*
* @param id The annotation id
* @param annotationPatchRequest The patch request
* @param responseHandler The response handler
*/
function alterAnnotation(id, annotationPatchRequest, responseHandler) {
var url = "http://localhost:8080/rest/annotations/" + id;
var json = JSON.stringify(annotationPatchRequest);
$.ajax({
url: url,
type: "PATCH",
data: json,
contentType: "application/json",
dataType: "json",
success: function (response) {
responseHandler(response);
}
});
}
/**
* DELETE: Delete an annotation from database
*
* @param id The annotation id
*/
function deleteAnnotation(id) {
var url = "http://localhost:8080/rest/annotations/" + id;
$.ajax({
url: url,
type: "DELETE",
dataType: "json",
success: function (response) {
// Nothing to do
}
});
}
/**
* GET: Get all annotations from database for a specific target
*
*
* @param targetId The target id
* @param responseHandler The response handler
*/
function getAnnotations(targetId, responseHandler) {
var url = "http://localhost:8080/rest/annotations/target/" + targetId;
$.ajax({
url: url,
type: "GET",
dataType: "json",
success: function (response) {
// sort the responding annotations by timestamp (DESC)
response.sort(function (a, b) {
return a.timestamp - b.timestamp;
});
// handle the response
responseHandler(response);
}
});
}
/**
* Delete annotation from list
*
* @param elem The parent li element
* @param id The id of the annotation
*/
function deleteAnnotationHandler(elem, id) {
// remove annotation from list
elem.remove()
// remove highlighted text
deleteHighlightedText();
// remove annotation from database
deleteAnnotation(id)
}
/**
* Display annotation in the list
*
* @param annotation The annotation to be displayed
*/
function displayAnnotation(annotation) {
// fetch list of annotations
var list = $('#annotations')
var deleteIcon = "fas fa-trash";
var dateIcon = "fas fa-calendar";
if (isTimestampToday(annotation.timestamp)) {
dateIcon = "fas fa-clock";
}
// insert annotation card
list.prepend(
$('<li>')
.attr('class', 'listelement')
.append(
$('<div>').attr('class', 'annotation-card')
.mouseenter(function () {
$(this).children('.annotation-header').css('background-color', getDarkUserColor(annotation.userId));
})
.mouseleave(function () {
$(this).children('.annotation-header').css('background-color', getUserColor(annotation.userId));
})
.append(
$('<div>').attr('class', 'annotation-header')
.css('background-color', getUserColor(annotation.userId))
.append(
$('<div>').attr('class', 'annotation-header-title')
.append(
$('<div>').attr('class', 'overflow-hidden')
.append(
$('<i>').attr('class', 'fas fa-user')
)
.append(
$('<span>').append(annotation.userId)
)
)
.append(
$('<div>').attr('class', 'overflow-hidden')
.append(
$('<i>').attr('class', 'fas fa-bookmark')
)
.append(
$('<span>').append('title' + annotation.userId)
)
)
)
.append(
$('<div>').attr('class', 'annotation-header-toggle')
.click(function () {
toggleButtonHandler($(this));
})
.append(
$('<i>').attr('class', 'fas fa-chevron-down')
)
)
)
.append(
$('<div>').attr('class', 'annotation-body')
.append(
$('<p>').attr('class', 'overflow-hidden').append(annotation.body)
)
)
.append(
$('<div>').attr('class', 'annotation-footer')
.append(
function () {
if (userId == annotation.userId) {
return $('<div>').attr('class', 'annotation-footer-delete')
.append(
$('<i>').attr('class', deleteIcon)
)
.click(function () {
deleteAnnotationHandler($(this).closest('li'), annotation.id)
})
}
}
)
.append(
$('<div>').attr('class', 'annotation-footer-date overflow-hidden')
.append(
$('<i>').attr('class', dateIcon)
)
.append(
$('<span>').append(timestampToReadableTime(annotation.timestamp))
)
)
)
)
.data('annotation', annotation)
.mouseenter(function () {
addHighlightedText(annotation.startCharacter, annotation.endCharacter, annotation.userId);
})
.mouseleave(function () {
deleteHighlightedText();
})
.append(function () {
if ($('#annotations li').filter( ".listelement" ).length > 0) {
return $('<div>').attr('class', 'spacing')
}
})
);
}
/**
* Add a highlighted text at specific position
*
* @param startCharacter The offset of the start character
* @param endCharacter The offset of the end character
* @param userId The user id
*/
function addHighlightedText(startCharacter, endCharacter, userId) {
// create <span> tag with the annotated text
var replacement = $('<span></span>').css('background-color', getUserColor(userId)).html(documentText.slice(startCharacter, endCharacter));
// wrap an <p> tag around the replacement, get its parent (the <p>) and ask for the html
var replacementHtml = replacement.wrap('<p/>').parent().html();
// insert the replacementHtml
var newDocument = documentText.slice(0, startCharacter) + replacementHtml + documentText.slice(endCharacter);
// set new document text
$('#documentText').html(newDocument);
}
/**
* Restore the base text
*/
function deleteHighlightedText() {
$('#documentText').html(documentText);
}
/**
* Get the text value of the selected text
*
* @returns {string} The text
*/
function getSelectedText() {
if(window.getSelection){
return window.getSelection().toString();
}
else if(document.getSelection){
return document.getSelection();
}
else if(document.selection){
return document.selection.createRange().text;
}
}
/**
* Get color based on user id
*
* @param userId The id of the user
* @returns {string} The user color
*/
function getUserColor(userId) {
// insert new color if there is no userId key
if (userColors.get(userId) == null) {
generateRandomColor(userId);
}
// return the color
return userColors.get(userId);
}
/**
* Get dark color based on user id
*
* @param userId The id of the user
* @returns {string} The dark user color
*/
function getDarkUserColor(userId) {
// insert new color if there is no userId key
if (userColorsDark.get(userId) == null) {
generateRandomColor(userId);
}
// return the color
return userColorsDark.get(userId);
}
/**
* Generate a random color of the format 'rgb(r, g, b)'
*
* @param userId The given user id
*/
function generateRandomColor(userId) {
var r = Math.floor(Math.random()*56)+170;
var g = Math.floor(Math.random()*56)+170;
var b = Math.floor(Math.random()*56)+170;
var r_d = r - 50;
var g_d = g - 50;
var b_d = b - 50;
var color = 'rgb(' + r + ',' + g + ',' + b + ')';
var colorDark = 'rgb(' + r_d + ',' + g_d + ',' + b_d + ')';
userColors.set(userId, color);
userColorsDark.set(userId, colorDark);
}
/**
* Calculate and build a readable timestamp from an unix timestamp
*
* @param timestamp A unix timestamp
* @returns {string} A readable timestamp
*/
function timestampToReadableTime(timestamp) {
// build Date object from timestamp
var annotationDate = new Date(timestamp);
// declare response
var responseTimestamp;
// if annotation is from today
if (isTimestampToday(timestamp)) {
// get hours from date
var hours = annotationDate.getHours();
// get minutes from date
var minutes = "0" + annotationDate.getMinutes();
// get seconds from date
// var seconds = "0" + annotationDate.getSeconds();
// build readable timestamp
responseTimestamp = hours + ":" + minutes.substr(-2);
}
// else annotation is not from today
else {
// get date
var date = annotationDate.getDate();
// get month
var month = annotationDate.getMonth();
// get year
var year = annotationDate.getFullYear();
// build readable timestamp
responseTimestamp = date + "." + month + "." + year;
}
return responseTimestamp;
}
/**
* Check if given timestamp is from today
*
* @param timestamp The given timestamp in milliseconds
* @returns {boolean} Returns true if the timestamp is from today
*/
function isTimestampToday(timestamp) {
// now
var now = new Date();
// build Date object from timestamp
var date = new Date(timestamp);
// return true if timestamp is today
if (now.getDate() == date.getDate() && now.getMonth() == date.getMonth() && now.getFullYear() == date.getFullYear()) {
return true;
}
else {
return false;
}
}
/**
* Toggle between the toggle button status
*
* @param element The given toggle button
*/
function toggleButtonHandler(element) {
// open and close annotation text
element.parent().siblings(".annotation-body").children("p").toggleClass("overflow-hidden");
// toggle between up and down button
element.children("i").toggleClass("fa-chevron-down fa-chevron-up")
}
/*
MOCKUP FUNCTIONS
*/
function randomUserId() {
return Math.floor((Math.random() * 12) + 1);;
}
...@@ -7,7 +7,7 @@ $(document).ready(function() { ...@@ -7,7 +7,7 @@ $(document).ready(function() {
$('.journal-description-title').append('<h2>' + data.name + '</h2>'); $('.journal-description-title').append('<h2>' + data.name + '</h2>');
$('.journal-description-text').append(data.descriptionHTML); $('.journal-description-text').append(data.descriptionHTML);
for(var link in data.links){ for(var link in data.links){
$('.journal-description-links').append('<a href=' + data.links[link] + '>' + link + '</a> <button onclick=\'linkLoeschen("'+link+'")\'> <i class="fa fa-trash" aria-hidden="true" ></i></button><br/>'); $('.journal-description-links').append('<button class="btn btn-default btn-xs" onclick=\'linkLoeschen("'+link+'")\'> <i class="fa fa-trash" aria-hidden="true" ></i></button><a href=\' + data.links[link] + \'>' + link + '</a> <br/>');
} }
$('.journal-description-links').append('<button type="button" class="btn btn-default btn-xs" data-toggle="modal" data-target="#addLinkModal"><i class="fa fa-plus" aria-hidden="true"></i></button>'); $('.journal-description-links').append('<button type="button" class="btn btn-default btn-xs" data-toggle="modal" data-target="#addLinkModal"><i class="fa fa-plus" aria-hidden="true"></i></button>');
...@@ -64,7 +64,7 @@ function loadJournals(data) { ...@@ -64,7 +64,7 @@ function loadJournals(data) {
data[journal].category + data[journal].category +
'</div>' + '</div>' +
'<div class="journal-edit" align="right">' + '<div class="journal-edit" align="right">' +
'<a class="btn btn-default btn-sm" href="createJournal.jsp?token=test&journal=' + data[journal].id + '"><i class="fa fa-pencil"></i> Bearbeiten</a>' + '<a class="btn btn-default btn-sm" href="createJournal.jsp?journal=' + data[journal].id + '"><i class="fa fa-pencil"></i> Bearbeiten</a>' +
'<a class="btn btn-default btn-sm" data-toggle="modal" data-target="#closeJournalModal"><i class="fa fa-check-square" aria-hidden="true"></i>Abschlie&szlig;en</a>' + '<a class="btn btn-default btn-sm" data-toggle="modal" data-target="#closeJournalModal"><i class="fa fa-check-square" aria-hidden="true"></i>Abschlie&szlig;en</a>' +
'</div>' + '</div>' +
'<div class="journal-text">' + '<div class="journal-text">' +
......
$(document).ready(function(){
$('.projectId').click(function () {
location.href="project-student.jsp?token="+getUserTokenFromUrl();
});
$('.givefeedback').click(function () {
location.href="givefeedback.jsp?token="+getUserTokenFromUrl();
})
$('.viewfeedback').click(function () {
location.href="viewfeedback.jsp?token="+getUserTokenFromUrl();
})
$('.annotationview').click(function () {
location.href="annotation-document.jsp?token="+getUserTokenFromUrl();
})
$('. overviewstudent').click(function () {
location.href="project-student.jsp?token="+getUserTokenFromUrl();
})
});
\ No newline at end of file
...@@ -6,5 +6,6 @@ function getUserTokenFromUrl() { ...@@ -6,5 +6,6 @@ function getUserTokenFromUrl() {
$_GET[decodeURIComponent(temp[0])] = decodeURIComponent(temp[1]); $_GET[decodeURIComponent(temp[0])] = decodeURIComponent(temp[1]);
} }
return $_GET['token']; return $_GET['token'];
} }
<%@ taglib uri="../core/pages/gemeinsamForschen.tld" prefix="menu"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>muster-gemeinsam-forschen</title>
<!-- css - annotationStyle -->
<link rel="stylesheet" type="text/css" href="../assets/css/annotationStyle.css">
<!-- css - contextMenu -->
<link href="https://swisnl.github.io/jQuery-contextMenu/dist/jquery.contextMenu.css" rel="stylesheet" type="text/css" />
<!-- css - bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- css - styles -->
<link rel="stylesheet" href="../assets/css/styles.css">
<!-- css - font awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css" integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" crossorigin="anonymous">
<!-- css - sidebar -->
<link rel="stylesheet" href="../assets/css/Sidebar-Menu.css">
<!-- js - jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- js - bootstrap -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- js - jQuery ui position -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js" type="text/javascript"></script>
<!-- js - contextMenu script -->
<script src="https://swisnl.github.io/jQuery-contextMenu/dist/jquery.contextMenu.js" type="text/javascript"></script>
<!-- js - utility script -->
<script src="../assets/js/utility.js"></script>
<!-- js - annotationScript -->
<script src="../assets/js/annotationScript.js"></script>
</head>
<body>
<div id="wrapper" class="full-height">
<menu:menu></menu:menu>
<div class="page-content-wrapper full-height">
<div class="container-fluid full-height">
<div class="container-fluid-content">
<div class="content-header">
<h1>gemeinsam Forschen
<a href="#">
<span class="glyphicon glyphicon-envelope"
style="font-size:27px;margin-top:-17px;margin-left:600px;"></span>
</a>
<a href="#">
<span class="glyphicon glyphicon-cog" style="font-size:29px;margin-left:5px;margin-top:-25px;"></span>
</a>
</h1>
</div>
<div class="content-mainpage">
<div class="leftcolumn">
<div class="leftcontent">
<div class="leftcontent-text context-menu-one" id="documentText">
Style never met and those among great. At no or september sportsmen he perfectly happiness attending. Depending listening delivered off new she procuring satisfied sex existence. Person plenty answer to exeter it if. Law use assistance especially resolution cultivated did out sentiments unsatiable. Way necessary had intention happiness but september delighted his curiosity. Furniture furnished or on strangers neglected remainder engrossed. Shot what able cold new the see hold. Friendly as an betrayed formerly he. Morning because as to society behaved moments. Put ladies design mrs sister was. Play on hill felt john no gate. Am passed figure to marked in. Prosperous middletons is ye inhabiting as assistance me especially. For looking two cousins regular amongst.
Style never met and those among great. At no or september sportsmen he perfectly happiness attending. Depending listening delivered off new she procuring satisfied sex existence. Person plenty answer to exeter it if. Law use assistance especially resolution cultivated did out sentiments unsatiable. Way necessary had intention happiness but september delighted his curiosity. Furniture furnished or on strangers neglected remainder engrossed. Shot what able cold new the see hold. Friendly as an betrayed formerly he. Morning because as to society behaved moments. Put ladies design mrs sister was. Play on hill felt john no gate. Am passed figure to marked in. Prosperous middletons is ye inhabiting as assistance me especially. For looking two cousins regular amongst.
</div>
<div class="leftcontent-buttons">
<div class="leftcontent-buttons-next">
<button id="btnContinue" type="button" class="btn btn-secondary">Weiter</button>
</div>
</div>
</div>
</div>
<div class="rightcolumn">
<div class="rightcontent">
<ol id="annotations">
</ol>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
\ No newline at end of file
...@@ -47,16 +47,16 @@ ...@@ -47,16 +47,16 @@
<input type="hidden" name="student" value="0"> <input type="hidden" name="student" value="0">
<input type="hidden" name="project" value="0"> <input type="hidden" name="project" value="0">
<div class="descriptionHTML-form-container"> <div class="description-form-container">
<div class ="descriptionHTML-form-editor"> <div class ="description-form-editor">
<textarea id = "editor" name="text" form="descriptionform" > <textarea id = "editor" name="text" form="descriptionform" >
</textarea> </textarea>
</div> </div>
<div class="descriptionHTML-form-buttons"> <div class="description-form-buttons">
<input class="btn btn-default btn-sm" type="submit"> <input class="btn btn-default btn-sm" type="submit">
<a class="btn btn-default btn-sm" href="eportfolio.jsp?token=test">Zur&uuml;ck</a> <a class="btn btn-default btn-sm" href="eportfolio.jsp">Zur&uuml;ck</a>
</div> </div>
</div> </div>
......
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
<div class="journal-description-title"> <div class="journal-description-title">
</div> </div>
<div class="journal-description-edit" align="right"> <div class="journal-description-edit" align="right">
<a class="btn btn-default btn-sm" href="editDescription.jsp?project=0&token=test"> <a class="btn btn-default btn-sm" href="editDescription.jsp?project=0">
<i class="fa fa-pencil"></i> Bearbeiten</a> <i class="fa fa-pencil"></i> Bearbeiten</a>
<a class="btn btn-default btn-sm" data-toggle="modal" data-target="#closeDescriptionModal"><i class="fa fa-check-square" aria-hidden="true"></i>Abschlie&szlig;en</a> <a class="btn btn-default btn-sm" data-toggle="modal" data-target="#closeDescriptionModal"><i class="fa fa-check-square" aria-hidden="true"></i>Abschlie&szlig;en</a>
...@@ -77,7 +77,7 @@ ...@@ -77,7 +77,7 @@
<option value="OWN">Eigene</option> <option value="OWN">Eigene</option>
</select> </select>
<a class="btn btn-default btn-sm" href="createJournal.jsp?token=test">Neu</a> <a class="btn btn-default btn-sm" href="createJournal.jsp">Neu</a>
</div> </div>
<div class="journal"> <div class="journal">
</div> </div>
...@@ -147,7 +147,7 @@ ...@@ -147,7 +147,7 @@
</div> </div>
<div class="modal-footer"> <div class="modal-footer">
<div class="btn-group"> <div class="btn-group">
<button type="button" class="btn btn-primary mr-auto">Ja</button> <button type="button" class="btn btn-primary mr-auto" data-dismiss="modal">Ja</button>
<button type="button" class="btn btn-secondary" data-dismiss="modal">Nein</button> <button type="button" class="btn btn-secondary" data-dismiss="modal">Nein</button>
</div> </div>
......
...@@ -19,6 +19,8 @@ ...@@ -19,6 +19,8 @@
<script src="https://cdn.jsdelivr.net/npm/inscrybmde@1.11.3/dist/inscrybmde.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/inscrybmde@1.11.3/dist/inscrybmde.min.js"></script>
<script src="https://cdn.rawgit.com/showdownjs/showdown/1.8.5/dist/showdown.min.js"></script> <script src="https://cdn.rawgit.com/showdownjs/showdown/1.8.5/dist/showdown.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/inscrybmde@1.11.3/dist/inscrybmde.min.css"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/inscrybmde@1.11.3/dist/inscrybmde.min.css">
<script src="../assets/js/utility.js"></script>
<script src="../assets/js/project-student.js"></script>
</head> </head>
<body> <body>
...@@ -36,9 +38,9 @@ ...@@ -36,9 +38,9 @@
</button> </button>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="viewfeedback.jsp">Feedback A</a></li> <li><a class="viewfeedback" role="button">Feedback A</a></li>
<li><a href="viewfeedback.jsp">Feedback B</a></li> <li><a class="viewfeedback" role="button">Feedback B</a></li>
<li><a href="viewfeedback.jsp">Feedback C</a></li> <li><a class="viewfeedback" role="button">Feedback C</a></li>
</ul> </ul>
<a href="#"> <a href="#">
...@@ -101,9 +103,12 @@ ...@@ -101,9 +103,12 @@
element: document.getElementById("demo1"), element: document.getElementById("demo1"),
spellChecker: false, spellChecker: false,
//toolbar: ["bold", "italic", "heading", "|", "quote", "table", "code", "|" , "side-by-side", "fullscreen"], //toolbar: ["bold", "italic", "heading", "|", "quote", "table", "code", "|" , "side-by-side", "fullscreen"],
minHeight: "80px",
}); });
editor.style = "min-height: 100px";
function save() { function save() {
console.log("save"); console.log("save");
console.log(editor.value()); console.log(editor.value());
...@@ -116,7 +121,15 @@ ...@@ -116,7 +121,15 @@
} }
</script> </script>
</td>
<button class="btn btn-secondary" onclick="goBack()">Zurück</button>
<script>
function goBack() {
window.history.back();
}
</script>
</td>
<td id="chat"> <td id="chat">
<div class="card"> <div class="card">
......
<%--suppress XmlDuplicatedId --%>
<%@ taglib uri="../core/pages/gemeinsamForschen.tld" prefix="menu"%> <%@ taglib uri="../core/pages/gemeinsamForschen.tld" prefix="menu"%>
<!DOCTYPE html> <!DOCTYPE html>
...@@ -16,6 +17,8 @@ ...@@ -16,6 +17,8 @@
<link rel="stylesheet" href="../assets/css/Sidebar-Menu-1.css"> <link rel="stylesheet" href="../assets/css/Sidebar-Menu-1.css">
<link rel="stylesheet" href="../assets/css/Sidebar-Menu.css"> <link rel="stylesheet" href="../assets/css/Sidebar-Menu.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css" integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" crossorigin="anonymous"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css" integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" crossorigin="anonymous">
<script src="../assets/js/utility.js"></script>
<script src="../assets/js/project-student.js"></script>
</head> </head>
<body> <body>
...@@ -24,18 +27,18 @@ ...@@ -24,18 +27,18 @@
<div class="page-content-wrapper"> <div class="page-content-wrapper">
<div class="container-fluid"> <div class="container-fluid">
<h1 id="projectId">project1</h1> <h1 id="projectId">Project 1</h1>
</div> </div>
<div align="right" class="dropdown" > <div align="right" class="dropdown">
<button style= "position: absolute; right: 50px;" class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown"> <button style= "position: absolute; right: 50px;" class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown">
<i class="glyphicon glyphicon-envelope"></i> <i class="glyphicon glyphicon-envelope"></i>
</button> </button>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="viewfeedback.jsp">Feedback A</a></li> <li><a class="viewfeedback" role="button">Feedback A</a></li>
<li><a href="viewfeedback.jsp">Feedback B</a></li> <li><a class="viewfeedback" role="button">Feedback B</a></li>
<li><a href="viewfeedback.jsp">Feedback C</a></li> <li><a class="viewfeedback" role="button">Feedback C</a></li>
</ul> </ul>
<a href="#"> <a href="#">
...@@ -47,7 +50,7 @@ ...@@ -47,7 +50,7 @@
<table> <table>
<tr> <tr>
<td id="yourContent"> <td id="yourContent">
<h1>your content guys and girls!</h1> <h1>Feedbackable Students</h1>
<!-- here will be all the content --> <!-- here will be all the content -->
<table> <table>
<tr> <tr>
...@@ -58,15 +61,18 @@ ...@@ -58,15 +61,18 @@
<a href="#">student1@uni.de</a> <a href="#">student1@uni.de</a>
<hr> <hr>
<ul> <ul>
<li>Projektübersicht hochgeladen
<a href="givefeedback.jsp"> <li><a class="annotationview" role="button">
<i class="far fa-comments"></i> Projektuebersicht hochgeladen
</a></li> <i class="far fa-comments"></i>
<li>Blumen ins Hausaufgabenheft geklebt </a>
<a href="givefeedback.jsp"> </li>
<span class="glyphicon glyphicon-pencil" <li><a class="annotationview" role="button">
style="font-size:18px;margin-left:5px;margin-top:-25px"></span> Blumen ins Hausaufgabenheft geklebt
</a></li> <i class="far fa-comments"></i>
</a>
</li>
</a>
</ul> </ul>
</td> </td>
<td></td> <td></td>
...@@ -77,20 +83,17 @@ ...@@ -77,20 +83,17 @@
<a href="#">student2@uni.de</a> <a href="#">student2@uni.de</a>
<hr> <hr>
<ul> <ul>
<li>feedback zu Herbarium im Hausaufgabenheft gegeben <li><a class="annotationview" role="button">
<a href="givefeedback.jsp"> Blumen an Vegetarier verfuettert
<span class="glyphicon glyphicon-comment" <i class="far fa-comments"></i>
style="font-size:18px;margin-left:5px;margin-top:-25px"></span>
</a></li> </a></li>
<li>Blumen an Vegetarier verfüttert <li><a class="annotationview" role="button">
<a href="givefeedback.jsp"> Literaturverzeichnis hochgeladen
<span class="glyphicon glyphicon-comment" <i class="far fa-comments"></i>
style="font-size:18px;margin-left:5px;margin-top:-25px"></span>
</a></li> </a></li>
<li>Die armen Vegetarier <li><a class="annotationview" role="button">
<a href="givefeedback.jsp"> Die armen Vegetarier
<span class="glyphicon glyphicon-comment" <i class="far fa-comments"></i>
style="font-size:18px;margin-left:5px;margin-top:-25px"></span>
</a></li> </a></li>
</ul> </ul>
</td> </td>
...@@ -102,14 +105,25 @@ ...@@ -102,14 +105,25 @@
<a href="#">student3@uni.de</a> <a href="#">student3@uni.de</a>
<hr> <hr>
<ul> <ul>
<li>Viva la Floristika <a href="givefeedback.jsp"> <span class="glyphicon glyphicon-pencil" <li><a class="annotationview" role="button">
style="font-size:18px;margin-left:5px;margin-top:-25px"></span></a> "Viva la Floristika" - Titel hochgeladen
<i class="far fa-comments"></i>
</a>
</li> </li>
</ul> </ul>
</td> </td>
</tr> </tr>
</table> </table>
<button onclick="goBack()" class="btn btn-secondary">Zurueck</button>
<script>
function goBack() {
window.history.back();
}
</script>
</td> </td>
<td id="chat"> <td id="chat">
<div class="card"> <div class="card">
......
...@@ -16,6 +16,8 @@ ...@@ -16,6 +16,8 @@
<link rel="stylesheet" href="../assets/css/Community-ChatComments.css"> <link rel="stylesheet" href="../assets/css/Community-ChatComments.css">
<link rel="stylesheet" href="../assets/css/Sidebar-Menu-1.css"> <link rel="stylesheet" href="../assets/css/Sidebar-Menu-1.css">
<link rel="stylesheet" href="../assets/css/Sidebar-Menu.css"> <link rel="stylesheet" href="../assets/css/Sidebar-Menu.css">
<script src="../assets/js/utility.js"></script>
<script src="../assets/js/project-student.js"></script>
</head> </head>
<body> <body>
...@@ -26,16 +28,16 @@ ...@@ -26,16 +28,16 @@
<div class="container-fluid"> <div class="container-fluid">
<h1 id="projectId"> PeerFeedback</h1> <h1 id="projectId"> PeerFeedback</h1>
</div> </div>
<div align="right" class="dropdown" > <div align="right" class="dropdown">
<button style= "position: absolute; right: 50px;" class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown"> <button style= "position: absolute; right: 50px;" class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown">
<i class="glyphicon glyphicon-envelope"></i> <i class="glyphicon glyphicon-envelope"></i>
</button> </button>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="viewfeedback.jsp">Feedback A</a></li> <li><a class="viewfeedback" role="button">Feedback A</a></li>
<li><a href="viewfeedback.jsp">Feedback B</a></li> <li><a class="viewfeedback" role="button">Feedback B</a></li>
<li><a href="viewfeedback.jsp">Feedback C</a></li> <li><a class="viewfeedback" role="button">Feedback C</a></li>
</ul> </ul>
<a href="#"> <a href="#">
...@@ -50,6 +52,16 @@ ...@@ -50,6 +52,16 @@
<h2>Feedback Nachrichten von Student X</h2> <h2>Feedback Nachrichten von Student X</h2>
<iframe width="90%" height="200%" src="http://rocketchat.westeurope.cloudapp.azure.com/channel/general?layout=embedded"></iframe> <iframe width="90%" height="200%" src="http://rocketchat.westeurope.cloudapp.azure.com/channel/general?layout=embedded"></iframe>
<button class="btn btn-secondary" onclick="goBack()">Zurück</button>
<script>
function goBack() {
window.history.back();
}
</script>
</td> </td>
<td id="chat"> <td id="chat">
......
...@@ -61,6 +61,17 @@ CREATE TABLE if not exists projectuser ...@@ -61,6 +61,17 @@ CREATE TABLE if not exists projectuser
ENGINE = InnoDB ENGINE = InnoDB
DEFAULT CHARSET = utf8; DEFAULT CHARSET = utf8;
CREATE TABLE `annotations` (
`id` varchar(120) NOT NULL,
`timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`userId` int(11) DEFAULT NULL,
`targetId` int(11) DEFAULT NULL,
`body` varchar(280) DEFAULT NULL,
`startCharacter` int(11) DEFAULT NULL,
`endCharacter` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
alter table users alter table users
add isStudent tinyint(1) default '1' null; add isStudent tinyint(1) default '1' null;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment