Adrià Vilanova MartÃnez | 58cc67c | 2024-04-21 16:43:01 +0200 | [diff] [blame^] | 1 | import CssSelectorNodeWatcherScriptHandler from '../../../common/architecture/scripts/nodeWatcher/handlers/CssSelectorNodeWatcherScriptHandler'; |
| 2 | import { NodeMutation } from '../../../common/nodeWatcher/NodeWatcherHandler'; |
| 3 | import { AutoRefreshNodeWatcherDependencies } from '../scripts/nodeWatcher.script'; |
| 4 | |
| 5 | /** |
| 6 | * Sets up the autorefresh list feature. |
| 7 | */ |
| 8 | export default class AutoRefreshThreadListSetUpHandler extends CssSelectorNodeWatcherScriptHandler<AutoRefreshNodeWatcherDependencies> { |
| 9 | cssSelector = 'ec-thread-list'; |
| 10 | |
| 11 | onMutatedNode(_: NodeMutation) { |
| 12 | this.options.autoRefresh.setUp(); |
| 13 | } |
| 14 | } |