[062892]: / ForgeBlog / forgeblog / widgets.py  Maximize  Restore  History

Download this file

107 lines (86 with data), 3.9 kB

  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
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
import ew as ew_core
import ew.jinja2_ew as ew
from formencode import validators as fev
from allura.lib.widgets import form_fields as ffw
from allura.lib.widgets import forms
from allura import model as M
from allura.lib import validators as v
class BlogPager(ffw.PageList):
template = 'jinja:forgeblog:templates/blog_widgets/page_list.html'
class BlogPostForm(forms.ForgeForm):
template = 'jinja:forgeblog:templates/blog_widgets/post_form.html'
enctype = 'multipart/form-data'
@property
def fields(self):
return ew_core.NameList([
ew.TextField(name='title',
validator=v.UnicodeString(not_empty=True,
messages={'empty': "You must provide a Title"}),
attrs=dict(placeholder='Enter your title here',
title='Enter your title here',
style='width: 425px')),
ffw.MarkdownEdit(name='text',
show_label=False,
attrs=dict(
placeholder='Enter your content here',
title='Enter your content here')),
ew.SingleSelectField(name='state',
options=[
ew.Option(py_value='draft', label='Draft'),
ew.Option(py_value='published', label='Published')]),
ffw.LabelEdit(name='labels',
placeholder='Add labels here',
title='Add labels here'),
ew.InputField(name='attachment',
label='Attachment', field_type='file', attrs={'multiple': 'True'},
validator=fev.FieldStorageUploadConverter(if_missing=None)),
])
def resources(self):
yield from super().resources()
yield ew.JSScript('''
$(function() {
$('input[name="title"]').focus();
});
''')
class NewPostForm(BlogPostForm):
@property
def fields(self):
fields = super().fields
fields.append(ew.Checkbox(name='subscribe'))
return fields
class EditPostForm(BlogPostForm):
class buttons(ew_core.NameList):
delete = ew.SubmitButton(label='Delete')
class ViewPostForm(ew_core.Widget):
template = 'jinja:forgeblog:templates/blog_widgets/view_post.html'
defaults = dict(
ew_core.Widget.defaults,
value=None,
subscribed=None,
base_post=None)
def __call__(self, **kw):
kw = super().__call__(**kw)
kw['subscribed'] = \
M.Mailbox.subscribed(artifact=kw.get('value'))
return kw
class PreviewPostForm(ew_core.Widget):
template = 'jinja:forgeblog:templates/blog_widgets/preview_post.html'
defaults = dict(
ew_core.Widget.defaults,
value=None)