Created
April 25, 2017 23:11
-
-
Save jstacoder/bffb4c2f8310129b5acd39c88f51bc04 to your computer and use it in GitHub Desktop.
ace editor field and widget class to use ace editor inside projects using wtforms
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from wtforms import fields | |
class AceEditorWidget(object): | |
def __init__(self,mode='python',theme='twilight'): | |
self.theme = theme | |
self.mode = mode | |
self.custom_css = '<style>#editor { width: 100%; }</style>' | |
self.theme_js = 'editor.setTheme("ace/theme/{theme}");'.format(theme=self.theme) | |
self.mode_js = 'editor.setOption("mode","ace/mode/{mode}");'.format(mode=self.mode) | |
self.js = ''' | |
<script src="http://ajaxorg.github.io/ace-builds/src-min-noconflict/ace.js" type="text/javascript" charset="utf-8"></script> | |
<script src="http://code.jquery.com/jquery.js"></script> | |
<script type="text/javascript"> | |
$(function(){{ | |
var editor = ace.edit('editor'); | |
{mode_js} | |
{theme_js} | |
}}); | |
</script> | |
'''.format(mode_js=self.mode_js,theme_js=self.theme_js) | |
def __call__(self,field,**kwargs): | |
if 'value' not in kwargs: | |
kwargs['value'] = field._value() | |
html = '{css}<div id="editor">{value}</div>\n {js}'.format(css=self.custom_css,value=kwargs['value'], js=self.js) | |
return widgets.HTMLString(html) | |
class AceEditorField(fields.Field): | |
widget = AceEditorWidget() | |
def __init__(self,label=None,validators=None,mode='ace/modes/python',theme='twilight',**kwargs): | |
super(AceEditorField,self).__init__(label,validators,**kwargs) | |
def process_formdata(self,valuelist): | |
if valuelist: | |
self.data = valuelist[0] | |
else: | |
self.data = '' | |
def _value(self): | |
return text_type(self.data) if self.data is not None else '' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment