Commit f5486c86 authored by Rosanny Sihombing's avatar Rosanny Sihombing
Browse files

project list: tile view

parent 57ac613a
...@@ -383,7 +383,6 @@ module.exports = function (app) { ...@@ -383,7 +383,6 @@ module.exports = function (app) {
app.get('/projectlist', async function(req, res){ app.get('/projectlist', async function(req, res){
let projectArr = [] let projectArr = []
let websiteArr = []
let isProject = true let isProject = true
let firstId = 0 let firstId = 0
let webname = ""; let webname = "";
...@@ -405,37 +404,31 @@ module.exports = function (app) { ...@@ -405,37 +404,31 @@ module.exports = function (app) {
if (projectData[i].name == "template_gitlab_page") { if (projectData[i].name == "template_gitlab_page") {
continue continue
} }
// M4_LAB logo for all projects that do not have logo // M4_LAB logo for all projects that do not have logo
if (projectData[i].avatar_url == null) { if (projectData[i].avatar_url == null) {
projectData[i].avatar_url = "https://m4lab.hft-stuttgart.de/img/footer/M4_LAB_LOGO_Graustufen.png" projectData[i].avatar_url = "https://m4lab.hft-stuttgart.de/img/footer/M4_LAB_LOGO_Graustufen.png"
} }
// for all projects that have no description
if (projectData[i].description == "") {
projectData[i].description = "- no description -"
}
// websites // websites
if (projectData[i].tag_list.includes('website')) { if (projectData[i].tag_list.includes('website')) {
// customize website name // customize website name
if (projectData[i].name == "Visualization") { if (projectData[i].name == "Visualization") {
webname = "https://transfer.hft-stuttgart.de/pages/visualization" projectData[i].web_url = "https://transfer.hft-stuttgart.de/pages/visualization"
} }
else if (projectData[i].name == "IN-Source") { else if (projectData[i].name == "IN-Source") {
webname = "https://transfer.hft-stuttgart.de/pages/INsource" projectData[i].web_url = "https://transfer.hft-stuttgart.de/pages/INsource"
} }
else if (projectData[i].name == "3DS_Visualization_Cesium") { else if (projectData[i].name == "3DS_Visualization_Cesium") {
webname = "https://transfer.hft-stuttgart.de/pages/3ds_visualization_cesium" projectData[i].web_url = "https://transfer.hft-stuttgart.de/pages/3ds_visualization_cesium"
} }
else { else {
webname = "https://transfer.hft-stuttgart.de/pages/"+projectData[i].name projectData[i].web_url = "https://transfer.hft-stuttgart.de/pages/"+projectData[i].name
}
let website = {
logo: projectData[i].avatar_url,
name: projectData[i].name,
weburl: webname,
desc: projectData[i].description
} }
websiteArr.push(website)
} }
// project repo
else {
let project = { let project = {
logo: projectData[i].avatar_url, logo: projectData[i].avatar_url,
name: projectData[i].name, name: projectData[i].name,
...@@ -444,15 +437,13 @@ module.exports = function (app) { ...@@ -444,15 +437,13 @@ module.exports = function (app) {
} }
projectArr.push(project) projectArr.push(project)
} }
}
firstId = projectData[projectData.length-1].id firstId = projectData[projectData.length-1].id
} }
} }
res.render(lang+'/project/projectList', { res.render(lang+'/project/projectList', {
project: projectArr, project: projectArr
website: websiteArr
// http://pagination.js.org // http://pagination.js.org
}) })
}) })
......
...@@ -7,30 +7,49 @@ html(lang="de") ...@@ -7,30 +7,49 @@ html(lang="de")
link(rel="stylesheet", type="text/css", href="https://transfer.hft-stuttgart.de/css/bootstrap.min.css") link(rel="stylesheet", type="text/css", href="https://transfer.hft-stuttgart.de/css/bootstrap.min.css")
link(rel="stylesheet", type="text/css", href="https://transfer.hft-stuttgart.de/css/m4lab.css") link(rel="stylesheet", type="text/css", href="https://transfer.hft-stuttgart.de/css/m4lab.css")
link(rel="stylesheet", href="https://use.fontawesome.com/releases/v5.8.2/css/all.css", integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay", crossorigin="anonymous") link(rel="stylesheet", href="https://use.fontawesome.com/releases/v5.8.2/css/all.css", integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay", crossorigin="anonymous")
style.
.title-container {
position: relative;
color: white;
}
.card-title-bottom-left {
position: absolute;
bottom: 0px;
width: 100%;
color: black;
font-weight: bold;
background: rgb(255, 255, 255, 0.5);
text-align: left;
padding: 5px
}
.card-img-top {
height: 15vw;
object-fit: cover;
}
body body
div(class="container") div(class="container")
div(class="pt-4 pb-4") div(class="pt-4 pb-4")
input(id="searchInput", class="form-control form-control-dark w-100", type="text", placeholder="Suchen Sie hier nach Themen und Projekten", onkeyup="searchFunction()") input(id="searchInput", class="form-control form-control-dark w-100", type="text", placeholder="Suchen Sie hier nach Themen und Projekten", onkeyup="searchFunction()")
h3(class="mb-3 font-weight-bold") Projekte h3(class="mb-3 font-weight-bold") Projekte
table(class="table table-striped")
tbody
for item in project
tr
td
img(src=item.logo, width="40", height="40")
td <a href="#{item.weburl}" target="_blank">#{item.name}</a>
td #{item.desc}
if website.length > 0 div(class="container")
h3(class="mb-3 font-weight-bold") Websites | <div class="row">
table(class="table table-striped") for item in project
for item in website div(class="py-4 col-sm")
tr div(class="card", style="width: 18rem;")
td div(class="title-container")
img(src=item.logo, width="40", height="40") h5(class="card-title-bottom-left") #{item.name}
td <a href="#{item.weburl}" target="_blank">#{item.name}</a> img(class="card-img-top", src=item.logo)
td #{item.desc} div(class="card-body")
div(class="row")
div(class="col-9")
p(class="card-text") #{item.desc}
div(class="col-3")
svg(class="bi bi-chevron-right", width="32", height="32", viewBox="0 0 20 20", fill="currentColor", xmlns="http://www.w3.org/2000/svg")
| <a xlink:href="#{item.weburl}" target="_blank"><path fill-rule="evenodd" d="M6.646 3.646a.5.5 0 01.708 0l6 6a.5.5 0 010 .708l-6 6a.5.5 0 01-.708-.708L12.293 10 6.646 4.354a.5.5 0 010-.708z"></path></a>
| </div>
// jQuery // jQuery
script(src="https://code.jquery.com/jquery-3.3.1.min.js") script(src="https://code.jquery.com/jquery-3.3.1.min.js")
...@@ -39,31 +58,28 @@ html(lang="de") ...@@ -39,31 +58,28 @@ html(lang="de")
script(src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous") script(src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous")
// Header // Header
script(src="https://transfer.hft-stuttgart.de/js/headfoot.js") script(src="https://transfer.hft-stuttgart.de/js/headfoot.js")
// search: https://www.w3schools.com/howto/howto_js_filter_lists.asp
script. script.
function searchFunction() { function searchFunction() {
var input, filter, rows, col, txtValue; var input = document.getElementById("searchInput")
var isFound = true; var filter = input.value.toUpperCase()
input = document.getElementById("searchInput");
filter = input.value.toUpperCase(); var cards = document.getElementsByClassName("col-sm")
var cardTitle, cardText, titleValue, textValue
var i
for (i = 0; i < cards.length; i++) {
cardTitle = cards[i].getElementsByClassName("card-title-bottom-left");
cardText = cards[i].getElementsByClassName("card-text");
titleValue = cardTitle[0].textContent || cardTitle[0].innerText;
textValue = cardText[0].textContent || cardText[0].innerText;
rows = document.getElementsByTagName("tr"); if (titleValue.toUpperCase().indexOf(filter) > -1 || textValue.toUpperCase().indexOf(filter) > -1) {
for (i = 0; i < rows.length; i++) { cards[i].style.display = "block";
cols = rows[i].getElementsByTagName("td");
// check all cos
for (j = 0; j < cols.length; j++) {
txtValue = cols[j].textContent || cols[j].innerText;
if (txtValue.toUpperCase().indexOf(filter) > -1) {
isFound = true;
break;
} else { } else {
isFound = false; cards[i].style.display = "none";
}
}
if (isFound) {
rows[i].style.display = "block";
}
else {
rows[i].style.display = "none";
} }
} }
} }
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment