Merge pull request #128 from torleif/patch-2

This commit is contained in:
Daniel Hensby 2016-07-14 00:24:26 +01:00
commit 36ccdf2ebc
No known key found for this signature in database
GPG Key ID: E38EC566FE29EB66
2 changed files with 39 additions and 55 deletions

View File

@ -1,13 +1,13 @@
<?php <?php
/** /**
* Widgets let CMS authors drag and drop small pieces of functionality into * Widgets let CMS authors drag and drop small pieces of functionality into
* defined areas of their websites. * defined areas of their websites.
* *
* You can use forms in widgets by implementing a {@link WidgetController}. * You can use forms in widgets by implementing a {@link WidgetController}.
* *
* See {@link Widget_Controller} for more information. * See {@link Widget_Controller} for more information.
* *
* @package widgets * @package widgets
*/ */
class Widget extends DataObject class Widget extends DataObject
@ -16,6 +16,7 @@ class Widget extends DataObject
* @var array * @var array
*/ */
private static $db = array( private static $db = array(
"Title" => "Varchar(255)",
"Title" => "Varchar(255)", "Title" => "Varchar(255)",
"Sort" => "Int", "Sort" => "Int",
"Enabled" => "Boolean", "Enabled" => "Boolean",
@ -35,7 +36,7 @@ class Widget extends DataObject
'CMSTitle' => 'Text', 'CMSTitle' => 'Text',
'Description' => 'Text', 'Description' => 'Text',
); );
private static $only_available_in = array(); private static $only_available_in = array();
/** /**
@ -82,10 +83,10 @@ class Widget extends DataObject
parent::populateDefaults(); parent::populateDefaults();
$this->setField('Title', $this->getTitle()); $this->setField('Title', $this->getTitle());
} }
/** /**
* Note: Overloaded in {@link WidgetController}. * Note: Overloaded in {@link WidgetController}.
* *
* @return string HTML * @return string HTML
*/ */
public function WidgetHolder() public function WidgetHolder()
@ -102,18 +103,19 @@ class Widget extends DataObject
if ($holder) { if ($holder) {
return $this->WidgetHolder(); return $this->WidgetHolder();
} }
return $this->Content(); return $this->Content();
} }
/** /**
* Renders the widget content in a custom template with the same name as the * Renders the widget content in a custom template with the same name as the
* current class. This should be the main point of output customization. * current class. This should be the main point of output customization.
* *
* Invoked from within WidgetHolder.ss, which contains the "framing" around * Invoked from within WidgetHolder.ss, which contains the "framing" around
* the custom content, like a title. * the custom content, like a title.
* *
* Note: Overloaded in {@link WidgetController}. * Note: Overloaded in {@link WidgetController}.
* *
* @return string HTML * @return string HTML
*/ */
public function Content() public function Content()
@ -138,7 +140,7 @@ class Widget extends DataObject
public function getTitle() public function getTitle()
{ {
return $this->getField('Title') return $this->getField('Title')
?: _t($this->class.'.TITLE', $this->config()->title); ?: _t($this->class . '.TITLE', $this->config()->title);
} }
/** /**
@ -155,7 +157,7 @@ class Widget extends DataObject
*/ */
public function getCMSTitle() public function getCMSTitle()
{ {
return _t($this->class.'.CMSTITLE', $this->config()->cmsTitle); return _t($this->class . '.CMSTITLE', $this->config()->cmsTitle);
} }
/** /**
@ -172,7 +174,7 @@ class Widget extends DataObject
*/ */
public function getDescription() public function getDescription()
{ {
return _t($this->class.'.DESCRIPTION', $this->config()->description); return _t($this->class . '.DESCRIPTION', $this->config()->description);
} }
/** /**
@ -182,7 +184,7 @@ class Widget extends DataObject
{ {
return $this->renderWith('WidgetDescription'); return $this->renderWith('WidgetDescription');
} }
/** /**
* @see WidgetController::editablesegment() * @see WidgetController::editablesegment()
* *
@ -203,9 +205,10 @@ class Widget extends DataObject
new CheckboxField('Enabled', $this->fieldLabel('Enabled')) new CheckboxField('Enabled', $this->fieldLabel('Enabled'))
); );
$this->extend('updateCMSFields', $fields); $this->extend('updateCMSFields', $fields);
return $fields; return $fields;
} }
/** /**
* @return FieldList * @return FieldList
*/ */
@ -214,14 +217,19 @@ class Widget extends DataObject
$fields = $this->getCMSFields(); $fields = $this->getCMSFields();
$outputFields = new FieldList(); $outputFields = new FieldList();
$this->FormID = $this->FormID ?: uniqid();
$outputFields->push(HiddenField::create('Widget[' . $this->FormID . '][FormID]', 'FormID',
$this->FormID)->addExtraClass('formid'));
foreach ($fields as $field) { foreach ($fields as $field) {
$name = $field->getName(); $name = $field->getName();
$value = $this->getField($name); $value = $this->getField($name);
if ($value) { if ($value) {
$field->setValue($value); $field->setValue($value);
} }
$name = preg_replace("/([A-Za-z0-9\-_]+)/", "Widget[" . $this->ID . "][\\1]", $name); $namefiltered = preg_replace("/([A-Za-z0-9\-_]+)/", "Widget[" . $this->FormID . "][\\1]", $name);
$field->setName($name);
$field->setName($namefiltered);
$outputFields->push($field); $outputFields->push($field);
} }
@ -241,7 +249,7 @@ class Widget extends DataObject
*/ */
public function Name() public function Name()
{ {
return "Widget[".$this->ID."]"; return "Widget[" . $this->ID . "]";
} }
/** /**
@ -257,13 +265,13 @@ class Widget extends DataObject
foreach (array_reverse(ClassInfo::ancestry($this->class)) as $widgetClass) { foreach (array_reverse(ClassInfo::ancestry($this->class)) as $widgetClass) {
$controllerClass = "{$widgetClass}_Controller"; $controllerClass = "{$widgetClass}_Controller";
if (class_exists($controllerClass)) { if (class_exists($controllerClass)) {
break; break;
} }
$controllerClass = "{$widgetClass}Controller"; $controllerClass = "{$widgetClass}Controller";
if (class_exists($controllerClass)) { if (class_exists($controllerClass)) {
break; break;
} }
@ -277,7 +285,7 @@ class Widget extends DataObject
return $this->controller; return $this->controller;
} }
/** /**
* @param array $data * @param array $data
*/ */
@ -294,7 +302,7 @@ class Widget extends DataObject
} }
} }
} }
//Look for checkbox fields not present in the data //Look for checkbox fields not present in the data
foreach ($fields as $field) { foreach ($fields as $field) {
if ($field instanceof CheckboxField && !array_key_exists($field->getName(), $data)) { if ($field instanceof CheckboxField && !array_key_exists($field->getName(), $data)) {
@ -302,11 +310,11 @@ class Widget extends DataObject
$field->saveInto($this); $field->saveInto($this);
} }
} }
$this->write(); $this->write();
// The field must be written to ensure a unique ID. // The field must be written to ensure a unique ID.
$this->Name = $this->class.$this->ID; $this->Name = $this->class . $this->ID;
$this->write(); $this->write();
} }
} }

View File

@ -38,22 +38,7 @@
}) })
} }
}); });
// Figure out maxid, this is used when creating new widgets
$(this).data('maxid', 0);
var usedWidgets = $(this).find('.usedWidgets .Widget');
usedWidgets.each(function() {
var widget = $(this)[0];
if(widget.id) {
widgetid = widget.id.match(/Widget\[(.+?)\]\[([0-9]+)\]/i);
if(widgetid && parseInt(widgetid[2]) > parseInt(parentRef.data('maxid'))) {
parentRef.data('maxid', parseInt(widgetid[2]));
}
}
});
// Ensure correct sort values are written when page is saved // Ensure correct sort values are written when page is saved
// TODO Adjust to new event listeners // TODO Adjust to new event listeners
$('.cms-container').bind('submitform', function(e) {parentRef.beforeSave(e)}); $('.cms-container').bind('submitform', function(e) {parentRef.beforeSave(e)});
@ -72,17 +57,13 @@
if (!widget.rewritten && (widget.id || widget.name)) { if (!widget.rewritten && (widget.id || widget.name)) {
if (widget.id && widget.id.indexOf('Widget[') === 0) { if (widget.id && widget.id.indexOf('Widget[') === 0) {
var newValue = widget.id.replace(/Widget\[/, 'Widget['+name+']['); var newValue = widget.id.replace(/Widget\[/, 'Widget['+name+'][');
//console.log('Renaming '+widget.tagName+' ID '+widget.id+' to '+newValue);
widget.id = newValue; widget.id = newValue;
} }
if (widget.name && widget.name.indexOf('Widget[') === 0) { if (widget.name && widget.name.indexOf('Widget[') === 0) {
var newValue = widget.name.replace(/Widget\[/, 'Widget['+name+']['); var newValue = widget.name.replace(/Widget\[/, 'Widget['+name+'][');
//console.log('Renaming '+widget.tagName+' Name '+widget.name+' to '+newValue);
widget.name=newValue; widget.name=newValue;
} }
widget.rewritten='yes'; widget.rewritten='yes';
}else {
//console.log('Skipping '+(widget.id ? widget.id : (widget.name ? widget.name : 'unknown '+widget.tagName)));
} }
}); });
} }
@ -144,13 +125,8 @@
}, },
insertWidgetEditor: function(response) { insertWidgetEditor: function(response) {
var usedWidgets = $('#usedWidgets-'+$(this).attr('name')).children(); var newID = $(response).find('.formid').val();
var widgetContent = response.replace(/Widget\[0\]/gi, "Widget[" + (newID) + "]");
// Give the widget a unique id
var newID=parseInt($(this).data('maxid'))+1;
$(this).data('maxid', newID);
var widgetContent = response.replace(/Widget\[0\]/gi, "Widget[new-" + (newID) + "]");
$('#usedWidgets-'+$(this).attr('name')).append(widgetContent); $('#usedWidgets-'+$(this).attr('name')).append(widgetContent);
this.rewriteWidgetAreaAttributes(); this.rewriteWidgetAreaAttributes();