diff --git a/src/view/sorting-view.js b/src/view/sorting-view.js index 7d93a1b..507b123 100644 --- a/src/view/sorting-view.js +++ b/src/view/sorting-view.js @@ -1,5 +1,4 @@ -import { SORTING_COLUMNS } from '../const.js'; -import RadiosListView from './radios-list-view.js'; +import AbstractView from '../framework/view/abstract-view.js'; function createSortingItemTemplate(column) { const { type, label, active, defaultSelected } = column; @@ -10,18 +9,33 @@ function createSortingItemTemplate(column) { `; } -function createSortingTemplate() { +function createSortingTemplate(items) { return `
`; } -export default class SortingView extends RadiosListView { - constructor() { - super({ items: SORTING_COLUMNS }); +export default class SortingView extends AbstractView { + #items = []; + #onSortChange = null; + + constructor({ + items, + onSortChange + }) { + super(); + + this.#items = items; + this.#onSortChange = onSortChange; + this.element.addEventListener('change', this.#sortingChangeHandler); } get template() { - return createSortingTemplate(); + return createSortingTemplate(this.#items); } + + #sortingChangeHandler = (evt) => { + evt.preventDefault(); + this.#onSortChange(evt.target.value); + }; }