forked from pattern-lab/patternlab-php-core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDocumentationRule.php
130 lines (101 loc) · 4.08 KB
/
DocumentationRule.php
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<?php
/*!
* Pattern Data Documentation Rule Class
*
* Copyright (c) 2014 Dave Olsen, http://dmolsen.com
* Licensed under the MIT license
*
* If a documentation file (.md) it is parsed and the info added to PatternData::$store
*
*/
namespace PatternLab\PatternData\Rules;
use \PatternLab\Config;
use \PatternLab\PatternData;
use \PatternLab\Parsers\Documentation;
use \PatternLab\Timer;
use \PatternLab\Data;
use \PatternLab\PatternData\Exporters\PatternPathSrcExporter;
use \PatternLab\PatternEngine;
class DocumentationRule extends \PatternLab\PatternData\Rule {
public function __construct($options) {
parent::__construct($options);
$this->depthProp = 3; // 3 means that depth won't be checked
$this->extProp = "md";
$this->isDirProp = false;
$this->isFileProp = true;
$this->searchProp = "";
$this->ignoreProp = "";
}
public function run($depth, $ext, $path, $pathName, $name) {
// load default vars
$patternType = PatternData::getPatternType();
$patternTypeDash = PatternData::getPatternTypeDash();
$dirSep = PatternData::getDirSep();
// set-up the names, $name == 00-colors.md
$doc = str_replace(".".$this->extProp,"",$name); // 00-colors
$docDash = $this->getPatternName(str_replace("_","",$doc),false); // colors
$docPartial = $patternTypeDash."-".$docDash;
// default vars
$patternSourceDir = Config::getOption("patternSourceDir");
// parse data
$text = file_get_contents($patternSourceDir.DIRECTORY_SEPARATOR.$pathName);
// grab the title and unset it from the yaml so it doesn't get duped in the meta
if (isset($yaml["title"])) {
$title = $yaml["title"];
unset($yaml["title"]);
}
// figure out if this is a pattern subtype
$patternSubtypeDoc = false;
if ($depth == 1) {
// go through all of the directories to see if this one matches our doc
foreach (glob($patternSourceDir.DIRECTORY_SEPARATOR.$patternType.DIRECTORY_SEPARATOR."*",GLOB_ONLYDIR) as $dir) {
$dir = str_replace($patternSourceDir.DIRECTORY_SEPARATOR.$patternType.DIRECTORY_SEPARATOR,"",$dir);
if ($dir == $doc) {
$patternSubtypeDoc = true;
break;
}
}
}
$category = ($patternSubtypeDoc) ? "patternSubtype" : "pattern";
$patternStoreKey = ($patternSubtypeDoc) ? $docPartial."-plsubtype" : $docPartial;
/**
* Setup the Pattern Loader so we can pre-render template markup used
* in our markdown files, prior to any markup getting parsed.
* Taken from Builder.php
*/
$ppdExporter = new PatternPathSrcExporter();
$patternPathSrc = $ppdExporter->run();
$options = array();
$options["patternPaths"] = $patternPathSrc;
$patternEngineBasePath = PatternEngine::getInstance()->getBasePath();
$patternLoaderClass = $patternEngineBasePath . "\Loaders\PatternLoader";
$patternLoader = new $patternLoaderClass($options);
// Combine local + global pattern data.
$data = array();
$globalData = Data::getPatternSpecificData($docPartial);
$localData = PatternData::getOption($docPartial)["data"];
if ($localData){
$data = array_replace_recursive($globalData, $localData);
} else {
$data = $globalData;
}
// Render the markdown content as a pattern, piping in the pattern-specific data from above.
$text = $patternLoader->render(array(
"pattern" => $text,
"data" => $data
));
// Finally parse the resulting content as normal markup; continue as usual.
list($yaml,$markdown) = Documentation::parse($text);
$patternStoreData = array("category" => $category,
"desc" => trim($markdown),
"descExists" => true,
"meta" => $yaml,
"full" => $doc);
if (isset($title)) {
$patternStoreData["nameClean"] = $title;
}
// if the pattern data store already exists make sure this data overwrites it
$patternStoreData = (PatternData::checkOption($patternStoreKey)) ? array_replace_recursive(PatternData::getOption($patternStoreKey),$patternStoreData) : $patternStoreData;
PatternData::setOption($patternStoreKey, $patternStoreData);
}
}