summaryrefslogtreecommitdiffstats
path: root/library/vendor/lessphp/lib/Less/Visitor/joinSelector.php
blob: bb08eceff351ba3ff71f8f08d03bd569e78f474b (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
68
<?php

/**
 * Join Selector Visitor
 *
 * @package Less
 * @subpackage visitor
 */
class Less_Visitor_joinSelector extends Less_Visitor {

	public $contexts = array( array() );

	/**
	 * @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 ) {
		$paths = array();

		if ( !$rulesetNode->root ) {
			$selectors = array();

			if ( $rulesetNode->selectors && $rulesetNode->selectors ) {
				foreach ( $rulesetNode->selectors as $selector ) {
					if ( $selector->getIsOutput() ) {
						$selectors[] = $selector;
					}
				}
			}

			if ( !$selectors ) {
				$rulesetNode->selectors = null;
				$rulesetNode->rules = null;
			} else {
				$context = end( $this->contexts ); // $context = $this->contexts[ count($this->contexts) - 1];
				$paths = $rulesetNode->joinSelectors( $context, $selectors );
			}

			$rulesetNode->paths = $paths;
		}

		$this->contexts[] = $paths; // different from less.js. Placed after joinSelectors() so that $this->contexts will get correct $paths
	}

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

	public function visitMedia( $mediaNode ) {
		$context = end( $this->contexts ); // $context = $this->contexts[ count($this->contexts) - 1];

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

}