diff --git a/Website/index.html b/Website/index.html index 10f6daf..f050e27 100644 --- a/Website/index.html +++ b/Website/index.html @@ -36,10 +36,26 @@ + + + + + +

Add Task

+ Close +
+ + + + +
+
+ + diff --git a/Website/interaction.js b/Website/interaction.js index 0df2910..454a766 100644 --- a/Website/interaction.js +++ b/Website/interaction.js @@ -18,6 +18,34 @@ const slideOutRightTiming = { easing: "ease-in" } + +const taskTypesSelect = document.querySelector("#taskTypes") +let availableTaskTypes; +GetTaskTypes() + .then(json => availableTaskTypes = json) + .then(json => + json.forEach(taskType => { + var option = document.createElement('option'); + option.value = taskType; + option.innerText = taskType; + taskTypesSelect.appendChild(option); + })); + +const connectorSelect = document.querySelector("#connectors"); +let availableConnectors; +GetAvailableControllers() + .then(json => availableConnectors = json) + .then(json => console.log(json)); + /*.then(json => + json.forEach(connector => { + var option = document.createElement('option'); + option.value = connector.name; + option.innerText = connector.name; + taskTypesSelect.appendChild(option); + }));*/ + + + const settingsTab = document.querySelector("#settingstab"); const settingsCog = document.querySelector("#settingscog"); var slideIn = true; @@ -29,4 +57,12 @@ function slide(){ slideIn = !slideIn; } -settingsCog.addEventListener("click", () => slide()); \ No newline at end of file +settingsCog.addEventListener("click", () => slide()); + +const addTask = document.querySelector("addPublication"); + +setInterval(() => { + GetTasks().then(json => { + //TODO + }); +}, 1000); \ No newline at end of file diff --git a/Website/media/close-x.svg b/Website/media/close-x.svg new file mode 100644 index 0000000..fc8cc4d --- /dev/null +++ b/Website/media/close-x.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Website/style.css b/Website/style.css index 5c37e87..efac94f 100644 --- a/Website/style.css +++ b/Website/style.css @@ -120,7 +120,7 @@ settingstab{ bottom: 0; background-color: rgba(0,0,0,0.5); width: 20rem; - height: calc(100% - var(--topbar-height) - 20px); + height: calc(100% - var(--topbar-height) - 40px); margin-bottom: 10px; border-radius: 5px 0 0 5px; } @@ -179,7 +179,7 @@ publication-information { display: flex; flex-direction: column; justify-content: start; - background-image: linear-gradient(to bottom, rgba(245, 246, 252, 0.52), rgba(117, 19, 93, 0.73)) + background-image: linear-gradient(to bottom, rgba(245, 246, 252, 0.52), rgba(117, 19, 93, 0.73)); z-index: 1; } @@ -204,4 +204,70 @@ publication img { width: 100%; height: 100%; z-index: 0; +} + +addtask-popup{ + display: block; + width: 100%; + height: 100%; + top: 0; + left: 0; + position: absolute; +} + +addtask-background { + width: 100%; + height: 100%; + position: absolute; + left: 0; + background-color: black; + opacity: 0.5; + z-index: 5; +} + +addtask-window { + display: block; + position: absolute; + left: 25%; + top: 15%; + width: 50%; + height: 70%; + padding: 0; + background-color: var(--accent-color); + z-index: 6; + border-radius: 5px; +} + +window-titlebar { + width: 100%; + height: 60px; + background-color: var(--primary-color); + position: absolute; + left: 0; + top: 0; + border-radius: 5px 5px 0 0; + color: var(--accent-color); + + display: flex block; + flex-direction: row; + justify-content: space-between; + align-items: center; +} + +window-titlebar p { + margin: 0 30px; + font-size: 14pt; + font-weight: bolder; + letter-spacing: 1px; +} + +window-titlebar img { + height: 70%; +} + +window-content { + position: absolute; + width: 100%; + top: 60px; + left: 0; } \ No newline at end of file