Changes for page Desk allocation
Last modified by Ricardo Julio Rodríguez Fernández on 2025/05/13 08:31
From version 169.1
edited by Ricardo Julio Rodríguez Fernández
on 2024/03/11 19:05
on 2024/03/11 19:05
Change comment:
Uploaded new attachment "room.json", version 1.2
To version 177.1
edited by Abdullah Sharifi
on 2024/03/11 19:37
on 2024/03/11 19:37
Change comment:
There is no comment for this version
Summary
-
Page properties (2 modified, 0 added, 0 removed)
-
Objects (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -XWiki. RicardoJulioRodriguezFernandez1 +XWiki.AbdullahSharifi - Content
-
... ... @@ -1,3 +1,2 @@ 1 -{{kanban width="29%" source="https://portal.igfae.usc.es/xwiki/bin/download/Kanban%20playground%20for%20Ricardo/WebHome/jsonformatter.txt?rev=1.1" addBoardButton="true" addItemButton="true" removeBoardButton="true" removeBoardItem="true"}} 2 -[{"id":"board2","title":"Working","color":"green","item":[{"title":"Item 121"},{"title":"Item 4"}]},{"id":"board3","title":"Done","color":"yellow","item":[{"title":"Item 2"},{"title":"Item 7"}]},{"id":"board1","title":"To Do","color":"red","item":[{"title":"Item 5"},{"title":"Item 1"}]},{"id":"board4","title":"New Board 01","color":"blue","item":[{"title":"Item 1"}]},{"id":"board5","title":"New Board 02","color":"orange","item":[{"title":"Item 3"}]},{"id":"board6","title":"New Board 03","color":"yellow","item":[{"title":"Item 1"},{"title":"Item 1"}]}] 1 +{{kanban width="29%" source="https://portal.igfae.usc.es/xwiki/bin/downloadrev/Kanban%20playground%20for%20Ricardo/WebHome/room.json?rev=1.2" addBoardButton="true" addItemButton="true" removeBoardButton="true" removeBoardItem="true"}} 3 3 {{/kanban}}
- XWiki.JavaScriptExtension[0]
-
- Code
-
... ... @@ -1,0 +1,103 @@ 1 +window.onload = function() { 2 + const titleElements = document.getElementsByClassName('kanban-item-title'); 3 + const headerElements = document.getElementsByClassName('kanban-board-header'); 4 + const titleContainers = document.getElementsByClassName('kanban-item'); 5 + 6 + for (let i = 0; i < titleElements.length; i++) { 7 + const titleElement = titleElements[i]; 8 + titleElement.style.padding = "2px 4px"; 9 + titleElement.style.borderRadius = "4px"; 10 + 11 + if (titleElement.textContent.includes('LHCB')) { 12 + titleElement.style.color = 'white'; 13 + titleElement.style.backgroundColor = 'red'; 14 + const parentElement = titleElement.closest('.kanban-item'); 15 + if (parentElement) { 16 + parentElement.style.backgroundColor = 'yellow'; 17 + } 18 + } 19 + if (titleElement.textContent.includes('STRI')) { 20 + titleElement.style.color = 'white'; 21 + titleElement.style.backgroundColor = 'navy'; 22 + const parentElement = titleElement.closest('.kanban-item'); 23 + if (parentElement) { 24 + parentElement.style.backgroundColor = '#FFDB58'; 25 + } 26 + } 27 + if (titleElement.textContent.includes('AUGE')) { 28 + titleElement.style.color = 'white'; 29 + titleElement.style.backgroundColor = '#FF7F50'; 30 + const parentElement = titleElement.closest('.kanban-item'); 31 + if (parentElement) { 32 + parentElement.style.backgroundColor = '#008080'; 33 + } 34 + } 35 + if (titleElement.textContent.includes('HQCD')) { 36 + titleElement.style.color = 'white'; 37 + titleElement.style.backgroundColor = '#E6E6FA'; 38 + const parentElement = titleElement.closest('.kanban-item'); 39 + if (parentElement) { 40 + parentElement.style.backgroundColor = '#808000'; 41 + } 42 + } 43 + if (titleElement.textContent.includes('NUCL')) { 44 + titleElement.style.color = 'white'; 45 + titleElement.style.backgroundColor = '#E2725B'; 46 + const parentElement = titleElement.closest('.kanban-item'); 47 + if (parentElement) { 48 + parentElement.style.backgroundColor = '#708090'; 49 + } 50 + } 51 + if (titleElement.textContent.includes('GRWA')) { 52 + titleElement.style.color = 'white'; 53 + titleElement.style.backgroundColor = '#FF00FF'; 54 + const parentElement = titleElement.closest('.kanban-item'); 55 + if (parentElement) { 56 + parentElement.style.backgroundColor = '#F4C430'; 57 + } 58 + } 59 + if (titleElement.textContent.includes('NEXT')) { 60 + titleElement.style.color = 'white'; 61 + titleElement.style.backgroundColor = '#4B0082'; 62 + const parentElement = titleElement.closest('.kanban-item'); 63 + if (parentElement) { 64 + parentElement.style.backgroundColor = '#E0115F'; 65 + } 66 + } 67 + if (titleElement.textContent.includes('LACC')) { 68 + titleElement.style.color = 'white'; 69 + titleElement.style.backgroundColor = '#87CEEB'; 70 + const parentElement = titleElement.closest('.kanban-item'); 71 + if (parentElement) { 72 + parentElement.style.backgroundColor = '#98FF98'; 73 + } 74 + } 75 + } 76 + 77 + for (let i = 0; i < headerElements.length; i++) { 78 + const element = headerElements[i]; 79 + if (element.innerHTML.includes('Floor#: 2')) { 80 + for (let j = 0; j < element.classList.length; j++) { 81 + if (/kanban-header-\w+/.test(element.classList[j])) { 82 + element.classList.remove(element.classList[j]); 83 + element.style.backgroundColor = '#98FF98'; 84 + break; 85 + } 86 + } 87 + } 88 + } 89 + 90 + for (let i = 0; i < headerElements.length; i++) { 91 + const element = headerElements[i]; 92 + if (element.innerHTML.includes('Floor#: 1')) { 93 + for (let j = 0; j < element.classList.length; j++) { 94 + if (/kanban-header-\w+/.test(element.classList[j])) { 95 + element.classList.remove(element.classList[j]); 96 + element.style.backgroundColor = '#FF7F50'; 97 + break; 98 + } 99 + } 100 + } 101 + } 102 +}; 103 + - Name
-
... ... @@ -1,0 +1,1 @@ 1 +Change background Color - Parse content
-
... ... @@ -1,0 +1,1 @@ 1 +No - Use this extension
-
... ... @@ -1,0 +1,1 @@ 1 +currentPage