mirror of
https://github.com/silverstripe/silverstripe-widgets
synced 2024-10-22 17:05:54 +02:00
Merge pull request #128 from torleif/patch-2
This commit is contained in:
commit
36ccdf2ebc
@ -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",
|
||||||
@ -102,6 +103,7 @@ class Widget extends DataObject
|
|||||||
if ($holder) {
|
if ($holder) {
|
||||||
return $this->WidgetHolder();
|
return $this->WidgetHolder();
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->Content();
|
return $this->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);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -203,6 +205,7 @@ 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;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -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 . "]";
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -306,7 +314,7 @@ class Widget extends DataObject
|
|||||||
$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();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -39,21 +39,6 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// 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();
|
||||||
|
Loading…
Reference in New Issue
Block a user