summaryrefslogtreecommitdiffstats
path: root/vendor/wikimedia/less.php/lib/Less/Visitor/joinSelector.php
blob: a106830482e428cade6f9d2e262a456f80104c27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
/**
 * @private
 */
class Less_Visitor_joinSelector extends Less_Visitor {

	public $contexts = [ [] ];

	/**
	 * @param Less_Tree_Ruleset $root
	 */
	public function run( $root ) {
		return $this->visitObj( $root );
	}

	public function visitRule( $ruleNode, &$visitDeeper ) {
		$visitDeeper = false;
	}

	public function visitMixinDefinition( $mixinDefinitionNode, &$visitDeeper ) {
		$visitDeeper = false;
	}

	public function visitRuleset( $rulesetNode ) {
		$context = end( $this->contexts );
		$paths = [];

		if ( !$rulesetNode->root ) {
			$selectors = $rulesetNode->selectors;
			if ( $selectors !== null ) {
				$filtered = [];
				foreach ( $selectors as $selector ) {
					if ( $selector->getIsOutput() ) {
						$filtered[] = $selector;
					}
				}
				$selectors = $rulesetNode->selectors = $filtered ?: null;
				if ( $selectors ) {
					$paths = $rulesetNode->joinSelectors( $context, $selectors );
				}
			}

			if ( $selectors === null ) {
				$rulesetNode->rules = null;
			}

			$rulesetNode->paths = $paths;
		}

		// NOTE: Assigned here instead of at the start like less.js,
		// because PHP arrays aren't by-ref
		$this->contexts[] = $paths;
	}

	public function visitRulesetOut() {
		array_pop( $this->contexts );
	}

	public function visitMedia( $mediaNode ) {
		$context = end( $this->contexts );

		if ( count( $context ) === 0 || ( is_object( $context[0] ) && $context[0]->multiMedia ) ) {
			$mediaNode->rules[0]->root = true;
		}
	}

}