wip-feat: pre-selects option for each episode
This commit is contained in:
@@ -148,7 +148,7 @@ export default class extends Controller {
|
|||||||
} else if (true === firstIncluded) {
|
} else if (true === firstIncluded) {
|
||||||
count = 1;
|
count = 1;
|
||||||
selectedCount = selectedCount + 1;
|
selectedCount = selectedCount + 1;
|
||||||
// option.selectInput.checked = true;
|
option.querySelector('input[type="checkbox"]').checked = true;
|
||||||
firstIncluded = false;
|
firstIncluded = false;
|
||||||
} else {
|
} else {
|
||||||
count = count + 1;
|
count = count + 1;
|
||||||
@@ -158,6 +158,7 @@ export default class extends Controller {
|
|||||||
resultList.countTarget.innerText = count;
|
resultList.countTarget.innerText = count;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
await results.forEach((list) => filterOperation(list, currentSeason));
|
await results.forEach((list) => filterOperation(list, currentSeason));
|
||||||
|
|||||||
@@ -32,7 +32,10 @@ export default class extends Controller {
|
|||||||
.then(response => {
|
.then(response => {
|
||||||
this.element.innerHTML = response;
|
this.element.innerHTML = response;
|
||||||
this.options = this.element.querySelectorAll('tbody tr');
|
this.options = this.element.querySelectorAll('tbody tr');
|
||||||
this.options.forEach((option) => option.querySelector('.download-btn').dataset['title'] = this.titleValue);
|
if (this.options.length > 0) {
|
||||||
|
this.options.forEach((option) => option.querySelector('.download-btn').dataset['title'] = this.titleValue);
|
||||||
|
this.options[0].querySelector('input[type="checkbox"]').checked = true;
|
||||||
|
}
|
||||||
this.optionsLoaded = true;
|
this.optionsLoaded = true;
|
||||||
this.loadingIconOutlet.increaseCount();
|
this.loadingIconOutlet.increaseCount();
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user