Added CodeMirror to code areas all accross JCB #308

Merged
Llewellyn merged 19 commits from staging into master 2018-07-07 10:03:42 +00:00
6 changed files with 145 additions and 166 deletions
Showing only changes of commit ffbd380b10 - Show all commits

View File

@ -125,7 +125,7 @@ Watch the [proposed development workflow](https://vdm.bz/proposed-development-wo
+ *Author*: [Llewellyn van der Merwe](mailto:llewellyn@joomlacomponentbuilder.com) + *Author*: [Llewellyn van der Merwe](mailto:llewellyn@joomlacomponentbuilder.com)
+ *Name*: [Component Builder](https://github.com/vdm-io/Joomla-Component-Builder) + *Name*: [Component Builder](https://github.com/vdm-io/Joomla-Component-Builder)
+ *First Build*: 30th April, 2015 + *First Build*: 30th April, 2015
+ *Last Build*: 31st May, 2018 + *Last Build*: 9th June, 2018
+ *Version*: 2.8.0 + *Version*: 2.8.0
+ *Copyright*: Copyright (C) 2015 - 2018 Vast Development Method. All rights reserved. + *Copyright*: Copyright (C) 2015 - 2018 Vast Development Method. All rights reserved.
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt + *License*: GNU General Public License version 2 or later; see LICENSE.txt

View File

@ -125,7 +125,7 @@ Watch the [proposed development workflow](https://vdm.bz/proposed-development-wo
+ *Author*: [Llewellyn van der Merwe](mailto:llewellyn@joomlacomponentbuilder.com) + *Author*: [Llewellyn van der Merwe](mailto:llewellyn@joomlacomponentbuilder.com)
+ *Name*: [Component Builder](https://github.com/vdm-io/Joomla-Component-Builder) + *Name*: [Component Builder](https://github.com/vdm-io/Joomla-Component-Builder)
+ *First Build*: 30th April, 2015 + *First Build*: 30th April, 2015
+ *Last Build*: 31st May, 2018 + *Last Build*: 9th June, 2018
+ *Version*: 2.8.0 + *Version*: 2.8.0
+ *Copyright*: Copyright (C) 2015 - 2018 Vast Development Method. All rights reserved. + *Copyright*: Copyright (C) 2015 - 2018 Vast Development Method. All rights reserved.
+ *License*: GNU General Public License version 2 or later; see LICENSE.txt + *License*: GNU General Public License version 2 or later; see LICENSE.txt

View File

@ -55,7 +55,7 @@ class Mapping
/** /**
* The needed set of keys needed to set * The needed set of keys needed to set
*/ */
protected $setting = array('id' => 'default', 'buildcompsql' => 'base64', 'addadmin_views' => 'json', 'name_code' => 'safeString'); protected $setting = array('id' => 'default', 'buildcompsql' => 'base64', 'name_code' => 'safeString');
/** /**
* The needed set of keys needed to set * The needed set of keys needed to set
@ -79,7 +79,8 @@ class Mapping
/** /**
* The datasize identifiers * The datasize identifiers
*/ */
protected $dataSize = array( 'CHAR', 'VARCHAR', 'INT', 'TINYINT', protected $dataSize = array(
'CHAR', 'VARCHAR', 'INT', 'TINYINT',
'BIGINT', 'FLOAT', 'DECIMAL', 'DOUBLE'); 'BIGINT', 'FLOAT', 'DECIMAL', 'DOUBLE');
/** /**
@ -101,7 +102,7 @@ class Mapping
// set the app to insure messages can be set // set the app to insure messages can be set
$this->app = JFactory::getApplication(); $this->app = JFactory::getApplication();
if ($data) if (ComponentbuilderHelper::checkArray($data))
{ {
if (isset($data['buildcomp']) && 1 == $data['buildcomp'] && isset($data['buildcompsql'])) if (isset($data['buildcomp']) && 1 == $data['buildcomp'] && isset($data['buildcompsql']))
{ {
@ -129,6 +130,12 @@ class Mapping
} }
} }
} }
// get linked admin views
$addadmin_views = ComponentbuilderHelper::getVar('component_admin_views', $data['id'], 'joomla_component', 'addadmin_views');
if (ComponentbuilderHelper::checkJson($addadmin_views))
{
$this->addadmin_views = json_decode($addadmin_views, true);
}
// set the map of the views needed // set the map of the views needed
if ($this->setMap()) if ($this->setMap())
{ {

View File

@ -38,6 +38,7 @@ class Builder extends Mapping
public $today; public $today;
public $db; public $db;
public $views = array(); public $views = array();
public $admin_fields = array();
protected $fields = array(); protected $fields = array();
protected $title = array(); protected $title = array();
protected $description = array(); protected $description = array();
@ -112,7 +113,6 @@ class Builder extends Mapping
$object->source = (isset($this->source[$name])) ? $this->source[$name]: 0; $object->source = (isset($this->source[$name])) ? $this->source[$name]: 0;
$object->sql = (isset($this->sql[$name])) ? base64_encode($this->sql[$name]): ''; $object->sql = (isset($this->sql[$name])) ? base64_encode($this->sql[$name]): '';
$object->addpermissions = '{"action":["view.edit","view.edit.own","view.edit.state","view.create","view.delete","view.access"],"implementation":["3","3","3","3","3","3"]}'; $object->addpermissions = '{"action":["view.edit","view.edit.own","view.edit.state","view.create","view.delete","view.access"],"implementation":["3","3","3","3","3","3"]}';
$object->addfields = $this->addFields($name);
$object->created = $this->today; $object->created = $this->today;
$object->created_by = $this->user->id; $object->created_by = $this->user->id;
$object->published = 1; $object->published = 1;
@ -124,7 +124,8 @@ class Builder extends Mapping
ComponentbuilderHelper::setAsset($id, 'admin_view'); ComponentbuilderHelper::setAsset($id, 'admin_view');
// load the views // load the views
$this->views[] = $id; $this->views[] = $id;
return true; // load the admin view fields
return $this->addFields($name, $id);
} }
return false; return false;
} }
@ -132,26 +133,12 @@ class Builder extends Mapping
/** /**
* Add the fields to the view * Add the fields to the view
*/ */
protected function addFields(&$view) protected function addFields(&$view, &$view_id)
{ {
if (isset($this->fields[$view])) if (isset($this->fields[$view]))
{ {
// set some defaults // set some defaults
$addField = array ( $addField = array ();
'field' => array(),
'list' => array(),
'order_list' => array(),
'title' => array(),
'alias' => array(),
'sort' => array(),
'search' => array(),
'filter' => array(),
'link' => array(),
'tab' => array(),
'alignment' => array(),
'order_edit' => array(),
'permission' => array()
);
$fixLink = (isset($this->title[$view])) ? 0 : 1; $fixLink = (isset($this->title[$view])) ? 0 : 1;
// build the field data... hmmm // build the field data... hmmm
foreach ($this->fields[$view] as $nr => $id) foreach ($this->fields[$view] as $nr => $id)
@ -171,23 +158,32 @@ class Builder extends Mapping
$fixLink = 0; $fixLink = 0;
} }
// load the field values // load the field values
$addField['field'][] = $id; $addField['addfields'.$nr]['field'] = $id;
$addField['list'][] = $isList; $addField['addfields'.$nr]['list'] = $isList;
$addField['order_list'][] = ($key) ? $key : 0; $addField['addfields'.$nr]['order_list'] = ($key) ? $key : 0;
$addField['title'][] = $isTitle; $addField['addfields'.$nr]['title'] = $isTitle;
$addField['alias'][] = $isAlias; $addField['addfields'.$nr]['alias'] = $isAlias;
$addField['sort'][] = $isList; $addField['addfields'.$nr]['sort'] = $isList;
$addField['search'][] = $isList; $addField['addfields'.$nr]['search'] = $isList;
$addField['filter'][] = $isList; $addField['addfields'.$nr]['filter'] = $isList;
$addField['link'][] = $isLink; $addField['addfields'.$nr]['link'] = $isLink;
$addField['tab'][] = 1; $addField['addfields'.$nr]['tab'] = 1;
$addField['alignment'][] = ($isTitle || $isAlias) ? 4 : $alignment; $addField['addfields'.$nr]['alignment'] = ($isTitle || $isAlias) ? 4 : $alignment;
$addField['order_edit'][] = $nr; $addField['addfields'.$nr]['order_edit'] = $nr;
$addField['permission'][] = 0; $addField['addfields'.$nr]['permission'] = 0;
} }
return json_encode($addField);
// set the field object
$object = new stdClass();
$object->admin_view = $view_id;
$object->addfields = json_encode($addField, JSON_FORCE_OBJECT);
$object->created = $this->today;
$object->created_by = $this->user->id;
$object->published = 1;
// add to data base
return $this->db->insertObject('#__componentbuilder_admin_fields', $object);
} }
return ''; return false;
} }
/** /**

View File

@ -35,13 +35,15 @@ class Extrusion extends Builder
* Constructor * Constructor
*/ */
public function __construct(&$data) public function __construct(&$data)
{
// make sure we have an id
if (isset($data['id']) && $data['id'] > 0)
{ {
// first we run the perent constructor // first we run the perent constructor
if (parent::__construct($data)) if (parent::__construct($data))
{ {
// link the view data to the component // link the view data to the component
$data['addadmin_views'] = $this->linkAdminViews(); if ($this->setAdminViews($data['id']))
if (ComponentbuilderHelper::checkJson($data['addadmin_views']))
{ {
$this->app->enqueueMessage( $this->app->enqueueMessage(
JText::_('All the fields and views from your sql dump has been created and linked to this component.'), JText::_('All the fields and views from your sql dump has been created and linked to this component.'),
@ -52,90 +54,64 @@ class Extrusion extends Builder
} }
return false; return false;
} }
$this->app->enqueueMessage(
JText::_('Please try again, this error usualy happens if it is a new component, beacues we need a component ID to do this build with your sql dump.'),
'Error'
);
return false;
}
/** /**
* link the build views to the component * link the build views to the component
*/ */
protected function linkAdminViews() protected function setAdminViews(&$component_id)
{ {
// check if views were set // check if views were set
if (ComponentbuilderHelper::checkArray($this->views)) if (ComponentbuilderHelper::checkArray($this->views))
{ {
// insure arrays are set $count = 0;
if (!isset($this->addadmin_views['adminview'])) if (ComponentbuilderHelper::checkArray($this->addadmin_views))
{ {
$this->addadmin_views['adminview'] = array(); $count = (int) count((array)$this->addadmin_views) + 3;
}
if (!isset($this->addadmin_views['icomoon']))
{
$this->addadmin_views['icomoon'] = array();
}
if (!isset($this->addadmin_views['mainmenu']))
{
$this->addadmin_views['mainmenu'] = array();
}
if (!isset($this->addadmin_views['dashboard_add']))
{
$this->addadmin_views['dashboard_add'] = array();
}
if (!isset($this->addadmin_views['dashboard_list']))
{
$this->addadmin_views['dashboard_list'] = array();
}
if (!isset($this->addadmin_views['submenu']))
{
$this->addadmin_views['submenu'] = array();
}
if (!isset($this->addadmin_views['checkin']))
{
$this->addadmin_views['checkin'] = array();
}
if (!isset($this->addadmin_views['history']))
{
$this->addadmin_views['history'] = array();
}
if (!isset($this->addadmin_views['metadata']))
{
$this->addadmin_views['metadata'] = array();
}
if (!isset($this->addadmin_views['access']))
{
$this->addadmin_views['access'] = array();
}
if (!isset($this->addadmin_views['port']))
{
$this->addadmin_views['port'] = array();
}
if (!isset($this->addadmin_views['edit_create_site_view']))
{
$this->addadmin_views['edit_create_site_view'] = array();
}
if (!isset($this->addadmin_views['order']))
{
$this->addadmin_views['order'] = array();
} }
// set the admin view data linking // set the admin view data linking
foreach ($this->views as $id) foreach ($this->views as $nr => $id)
{ {
$this->addadmin_views['adminview'][] = $id; $pointer = $count + $nr;
$this->addadmin_views['icomoon'][] = 'joomla'; $this->addadmin_views['addadmin_views'.$pointer]['adminview'] = $id;
$this->addadmin_views['mainmenu'][] = 1; $this->addadmin_views['addadmin_views'.$pointer]['icomoon'] = 'joomla';
$this->addadmin_views['dashboard_add'][] = 1; $this->addadmin_views['addadmin_views'.$pointer]['mainmenu'] = 1;
$this->addadmin_views['dashboard_list'][] = 1; $this->addadmin_views['addadmin_views'.$pointer]['dashboard_add'] = 1;
$this->addadmin_views['submenu'][] = 1; $this->addadmin_views['addadmin_views'.$pointer]['dashboard_list'] = 1;
$this->addadmin_views['checkin'][] = 1; $this->addadmin_views['addadmin_views'.$pointer]['submenu'] = 1;
$this->addadmin_views['history'][] = 1; $this->addadmin_views['addadmin_views'.$pointer]['checkin'] = 1;
$this->addadmin_views['metadata'][] = 1; $this->addadmin_views['addadmin_views'.$pointer]['history'] = 1;
$this->addadmin_views['access'][] = 1; $this->addadmin_views['addadmin_views'.$pointer]['metadata'] = 1;
$this->addadmin_views['port'][] = 1; $this->addadmin_views['addadmin_views'.$pointer]['access'] = 1;
$this->addadmin_views['edit_create_site_view'][] = 0; $this->addadmin_views['addadmin_views'.$pointer]['port'] = 1;
$this->addadmin_views['order'][] = count($this->addadmin_views['order']) + 1; $this->addadmin_views['addadmin_views'.$pointer]['edit_create_site_view'] = 0;
$this->addadmin_views['addadmin_views'.$pointer]['order'] = $pointer + 1;
} }
} }
if (isset($this->addadmin_views) && ComponentbuilderHelper::checkArray($this->addadmin_views)) if (isset($this->addadmin_views) && ComponentbuilderHelper::checkArray($this->addadmin_views))
{ {
return json_encode($this->addadmin_views); // set the field object
$object = new stdClass();
$object->joomla_component = $component_id;
$object->addadmin_views = json_encode($this->addadmin_views, JSON_FORCE_OBJECT);
$object->created = $this->today;
$object->created_by = $this->user->id;
$object->published = 1;
// check if it is already set
if ($item_id = ComponentbuilderHelper::getVar('component_admin_views', $component_id, 'joomla_component', 'id'))
{
// set ID
$object->id = (int) $item_id;
return $this->db->updateObject('#__componentbuilder_component_admin_views', $object, 'id');
} }
return ''; // add to data base
return $this->db->insertObject('#__componentbuilder_component_admin_views', $object);
}
return false;
} }
} }

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<extension type="component" version="3.2" method="upgrade"> <extension type="component" version="3.2" method="upgrade">
<name>COM_COMPONENTBUILDER</name> <name>COM_COMPONENTBUILDER</name>
<creationDate>31st May, 2018</creationDate> <creationDate>9th June, 2018</creationDate>
<author>Llewellyn van der Merwe</author> <author>Llewellyn van der Merwe</author>
<authorEmail>llewellyn@joomlacomponentbuilder.com</authorEmail> <authorEmail>llewellyn@joomlacomponentbuilder.com</authorEmail>
<authorUrl>http://www.joomlacomponentbuilder.com</authorUrl> <authorUrl>http://www.joomlacomponentbuilder.com</authorUrl>