-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from rualark/deepsource-transform-58df5437
style: format code with StandardJS
- Loading branch information
Showing
1 changed file
with
55 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,90 +1,89 @@ | ||
export function generateColumnsForGroup(group, clickBlock, clickCell) { | ||
export function generateColumnsForGroup (group, clickBlock, clickCell) { | ||
// Clear the main container before generating new content | ||
const mainContainer = document.getElementById('main-container'); | ||
mainContainer.innerHTML = ''; | ||
const mainContainer = document.getElementById('main-container') | ||
mainContainer.innerHTML = '' | ||
|
||
// Create the first (left) column | ||
const column1 = document.createElement('div'); | ||
column1.className = 'column1'; | ||
const column1 = document.createElement('div') | ||
column1.className = 'column1' | ||
|
||
// Create the second (right) column | ||
const column2 = document.createElement('div'); | ||
column2.className = 'column2'; | ||
const column2 = document.createElement('div') | ||
column2.className = 'column2' | ||
|
||
group.forEach((pair) => { | ||
// Create an question cell in the zero column | ||
const pairCell = document.createElement('div'); | ||
pairCell.className = 'pair'; | ||
pairCell.style.display = 'flex'; // Use flexbox for layout | ||
pairCell.style.justifyContent = 'space-between'; // Spread them to opposite sides | ||
const questionCell = document.createElement('div'); | ||
questionCell.className = 'question'; | ||
questionCell.textContent = pair[1]; | ||
const pairCell = document.createElement('div') | ||
pairCell.className = 'pair' | ||
pairCell.style.display = 'flex' // Use flexbox for layout | ||
pairCell.style.justifyContent = 'space-between' // Spread them to opposite sides | ||
|
||
const questionCell = document.createElement('div') | ||
questionCell.className = 'question' | ||
questionCell.textContent = pair[1] | ||
|
||
// Create an empty cell in the first column | ||
const emptyCell = document.createElement('div'); | ||
emptyCell.className = 'cell'; | ||
emptyCell.onclick = clickCell; | ||
const emptyCell = document.createElement('div') | ||
emptyCell.className = 'cell' | ||
emptyCell.onclick = clickCell | ||
|
||
pairCell.appendChild(questionCell); | ||
pairCell.appendChild(emptyCell); | ||
pairCell.appendChild(questionCell) | ||
pairCell.appendChild(emptyCell) | ||
|
||
// Create a cell with text block in the second column | ||
const textCell = document.createElement('div'); | ||
textCell.className = 'cell'; | ||
textCell.onclick = clickCell; | ||
const textCell = document.createElement('div') | ||
textCell.className = 'cell' | ||
textCell.onclick = clickCell | ||
|
||
const block = document.createElement('div'); | ||
block.className = 'block'; | ||
block.draggable = true; | ||
block.textContent = pair[0]; | ||
block.onclick = clickBlock; | ||
const block = document.createElement('div') | ||
block.className = 'block' | ||
block.draggable = true | ||
block.textContent = pair[0] | ||
block.onclick = clickBlock | ||
|
||
textCell.appendChild(block); | ||
column1.appendChild(pairCell); | ||
column2.appendChild(textCell); | ||
}); | ||
textCell.appendChild(block) | ||
column1.appendChild(pairCell) | ||
column2.appendChild(textCell) | ||
}) | ||
|
||
document.getElementById('main-container').appendChild(column1); | ||
document.getElementById('main-container').appendChild(column2); | ||
document.getElementById('main-container').appendChild(column1) | ||
document.getElementById('main-container').appendChild(column2) | ||
} | ||
|
||
// Updates the colors of the blocks based on their usage. | ||
export function updateUsage(answers) { | ||
const blocks = new Set(answers.flat()); | ||
export function updateUsage (answers) { | ||
const blocks = new Set(answers.flat()) | ||
|
||
const secondColumnCells = document.querySelectorAll('.column2 .block'); | ||
const secondColumnCells = document.querySelectorAll('.column2 .block') | ||
secondColumnCells.forEach(block => { | ||
if (blocks.has(block.textContent)) { | ||
block.style.backgroundColor = '#e0e0e0'; | ||
block.style.color = '#909090'; | ||
block.style.border = '1px solid #909090'; | ||
block.style.backgroundColor = '#e0e0e0' | ||
block.style.color = '#909090' | ||
block.style.border = '1px solid #909090' | ||
} else { | ||
block.style.backgroundColor = '#d0d0d0'; | ||
block.style.color = '#000'; | ||
block.style.border = '1px solid #000'; | ||
block.style.backgroundColor = '#d0d0d0' | ||
block.style.color = '#000' | ||
block.style.border = '1px solid #000' | ||
} | ||
}); | ||
}) | ||
} | ||
|
||
export function cloneBlock(block, clickBlock) { | ||
const clone = block.cloneNode(true); | ||
clone.onclick = clickBlock; | ||
return clone; | ||
export function cloneBlock (block, clickBlock) { | ||
const clone = block.cloneNode(true) | ||
clone.onclick = clickBlock | ||
return clone | ||
} | ||
|
||
export function getFirstColumnTexts() { | ||
const firstColumnCells = document.querySelectorAll('.column1 .cell'); | ||
const texts = []; | ||
export function getFirstColumnTexts () { | ||
const firstColumnCells = document.querySelectorAll('.column1 .cell') | ||
const texts = [] | ||
|
||
firstColumnCells.forEach(cell => { | ||
const blocks = [] | ||
for (const child of cell.children) { | ||
blocks.push(child.textContent) | ||
} | ||
texts.push(blocks); | ||
}); | ||
return texts; | ||
texts.push(blocks) | ||
}) | ||
return texts | ||
} | ||
|