forked from adamkiss/InputfieldAceEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInputfieldAceEditor.module
147 lines (128 loc) · 4.3 KB
/
InputfieldAceEditor.module
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<?php
/**
* Better ProcessWire text editor for developers and at least 'a little' tech savvy clients
*/
class InputfieldAceEditor extends InputfieldTextarea {
private $path = false;
protected $modes = array(
'html'=>'HTML',
'textile'=>'Textile',
'markdown'=>'Markdown'
);
protected $defaults = array(
'force_mode'=>false,
'feature_focus_mode'=>false,
'feature_invisible_characters'=>false
);
public static function getModuleInfo() {
return array(
'title' => 'ACE Editor',
'version' => 100,
'summary' => 'Better ProcessWire text editor for developers and at least ‘a little’ tech savvy clients'
);
}
public function init() {
// set path
$this->path = $this->config->urls->InputfieldAceEditor.'ace/';
// set config from defaults
foreach($this->defaults as $key => $value) $this->set($key, $value);
parent::init();
}
public function ___render() {
$this->config->scripts->add($this->path . "ace.js");
// add this field array of fields using ace
$ace_fields = $this->config->js($this->className());
if (!is_null($ace_fields)){
$ace_fields[] = $this->attr('id');
}else{
$ace_fields = array($this->attr('id'));
}
$this->config->js($this->className(), $ace_fields);
// set options of this field
$field_config = array(
'id' => $this->attr('id'),
'mode' => $this->find_mode(),
'rows' => $this->get('rows'),
'f_focus_mode' => $this->get('feature_focus_mode'),
'f_invisible_characters' => $this->get('feature_invisible_characters')
);
$this->config->js($this->attr('id'), $field_config);
return $this->return_html(parent::___render());
}
public function setAttribute($key, $value) {
if($key != 'value') return parent::setAttribute($key, $value);
return parent::setAttribute($key, $value);
}
public function ___getConfigInputfields() {
$inputfields = parent::___getConfigInputfields();
//
// Visual features
//
$wrapper = $this->modules->get('InputfieldFieldset');
$wrapper->label = $this->_('ACE Editor: Visual features');
$wrapper->description = $this->_('Visual features of ACE Editor, such as invisible characters or focus mode');
$wrapper->collapsed = Inputfield::collapsedNo;
// focus mode?
$value = $this->get('feature_focus_mode');
$field = $this->modules->get('InputfieldCheckbox');
$field->attr('name', 'feature_focus_mode');
$field->label='Use focus mode';
$field->description=$this->_('Dims all but currently active line');
$field->attr('checked',$value);
$wrapper->append($field); unset($field);
// invisible characters
$value = $this->get('feature_invisible_characters');
$field = $this->modules->get('InputfieldCheckbox');
$field->attr('name', 'feature_invisible_characters');
$field->label='Show invisible characters';
$field->description=$this->_('Show non-printable characters like tabs or new line characters');
$field->attr('checked',$value);
$wrapper->append($field); unset($field);
$inputfields->append($wrapper);
//
// Functional features (force mode)
//
// implement later
//
// mode (for versions < 3)
// $value = $this->get('mode');
// $field = $this->modules->get('InputfieldSelect');
// $field->attr('name', 'mode');
// $field->label='ACE Editor Mode';
// $field->description=_('This is the syntax mode you use in this field.');
// foreach($this->modes as $mode=>$label){
// $selected = ($value===$mode) ? array('selected'=>'selected') : null;
// $field->addOption($mode, $label, $selected);
// }
// $wrapper->append($field); unset($field);
return $inputfields;
}
public function ___install() {
if(ProcessWire::versionMajor == 2 && ProcessWire::versionMinor < 2) {
throw new WireException("This module requires ProcessWire 2.2 or newer");
}
}
private function find_mode() {
$field = wire('fields')->get($this->attr('name'));
$mode = 'html';
if($field->textformatters)
foreach($field->textformatters as $class_name) {
if ((preg_match('/textile|markdown/i', $class_name, $matches)) === 1) {
$mode = strtolower($matches[0]);
continue;
}
}
return $mode;
}
private function return_html($textarea) {
return <<<HTML
<div class="ace-editor-position-wrapper light">
<div class="ace-editor-design-wrapper">
{$textarea}
<div class="ace-editor-tools"></div>
<!-- ace editor append here -->
</div>
</div>
HTML;
}
}