blob: 0d1677200ee61e48cf271868eabd11cb08c38e0c [file] [log] [blame]
Adrià Vilanova Martínez66836fd2024-05-04 22:43:06 +02001import CssSelectorNodeWatcherScriptHandler from '../../../../common/architecture/scripts/nodeWatcher/handlers/CssSelectorNodeWatcherScriptHandler';
2import { NodeMutation } from '../../../../common/nodeWatcher/NodeWatcherHandler';
3import { CCExtraInfoMainOptions } from '../../scripts/ccExtraInfoMain.script';
4
5/**
6 * Inject extra info to threads in the thread list.
7 */
8export default class CCExtraInfoThreadQuestionHandler extends CssSelectorNodeWatcherScriptHandler<CCExtraInfoMainOptions> {
9 cssSelector = 'sc-tailwind-thread-question-question-card sc-tailwind-thread-question-state-chips';
10
11 onMutatedNode({ node }: NodeMutation) {
12 this.options.extraInfo.injectAtQuestionIfEnabled(node);
13 }
14}