Added the modal sub subform for the view builder in the Assistant.
This commit is contained in:
@ -591,3 +591,406 @@ function getKeyID(key) {
|
||||
// return the id build
|
||||
return keyID;
|
||||
}
|
||||
|
||||
jQuery.string_replace = function (search, replace, subject, countObj) {
|
||||
// discuss at: https://locutus.io/php/str_replace/
|
||||
// original by: Kevin van Zonneveld (https://kvz.io)
|
||||
// improved by: Gabriel Paderni
|
||||
// improved by: Philip Peterson
|
||||
// improved by: Simon Willison (https://simonwillison.net)
|
||||
// improved by: Kevin van Zonneveld (https://kvz.io)
|
||||
// improved by: Onno Marsman (https://twitter.com/onnomarsman)
|
||||
// improved by: Brett Zamir (https://brett-zamir.me)
|
||||
// revised by: Jonas Raoni Soares Silva (https://www.jsfromhell.com)
|
||||
// bugfixed by: Anton Ongson
|
||||
// bugfixed by: Kevin van Zonneveld (https://kvz.io)
|
||||
// bugfixed by: Oleg Eremeev
|
||||
// bugfixed by: Glen Arason (https://CanadianDomainRegistry.ca)
|
||||
// bugfixed by: Glen Arason (https://CanadianDomainRegistry.ca)
|
||||
// input by: Onno Marsman (https://twitter.com/onnomarsman)
|
||||
// input by: Brett Zamir (https://brett-zamir.me)
|
||||
// input by: Oleg Eremeev
|
||||
// note 1: The countObj parameter (optional) if used must be passed in as a
|
||||
// note 1: object. The count will then be written by reference into it's `value` property
|
||||
// example 1: str_replace(' ', '.', 'Kevin van Zonneveld')
|
||||
// returns 1: 'Kevin.van.Zonneveld'
|
||||
// example 2: str_replace(['{name}', 'l'], ['hello', 'm'], '{name}, lars')
|
||||
// returns 2: 'hemmo, mars'
|
||||
// example 3: str_replace(Array('S','F'),'x','ASDFASDF')
|
||||
// returns 3: 'AxDxAxDx'
|
||||
// example 4: var countObj = {}
|
||||
// example 4: str_replace(['A','D'], ['x','y'] , 'ASDFASDF' , countObj)
|
||||
// example 4: var $result = countObj.value
|
||||
// returns 4: 4
|
||||
var i = 0
|
||||
var j = 0
|
||||
var temp = ''
|
||||
var repl = ''
|
||||
var sl = 0
|
||||
var fl = 0
|
||||
var f = [].concat(search)
|
||||
var r = [].concat(replace)
|
||||
var s = subject
|
||||
var ra = Object.prototype.toString.call(r) === '[object Array]'
|
||||
var sa = Object.prototype.toString.call(s) === '[object Array]'
|
||||
s = [].concat(s)
|
||||
|
||||
var $global = (typeof window !== 'undefined' ? window : global)
|
||||
$global.$locutus = $global.$locutus || {}
|
||||
var $locutus = $global.$locutus
|
||||
$locutus.php = $locutus.php || {}
|
||||
|
||||
if (typeof (search) === 'object' && typeof (replace) === 'string') {
|
||||
temp = replace
|
||||
replace = []
|
||||
for (i = 0; i < search.length; i += 1) {
|
||||
replace[i] = temp
|
||||
}
|
||||
temp = ''
|
||||
r = [].concat(replace)
|
||||
ra = Object.prototype.toString.call(r) === '[object Array]'
|
||||
}
|
||||
|
||||
if (typeof countObj !== 'undefined') {
|
||||
countObj.value = 0
|
||||
}
|
||||
|
||||
for (i = 0, sl = s.length; i < sl; i++) {
|
||||
if (s[i] === '') {
|
||||
continue
|
||||
}
|
||||
for (j = 0, fl = f.length; j < fl; j++) {
|
||||
temp = s[i] + ''
|
||||
repl = ra ? (r[j] !== undefined ? r[j] : '') : r[0]
|
||||
s[i] = (temp).split(f[j]).join(repl)
|
||||
if (typeof countObj !== 'undefined') {
|
||||
countObj.value += ((temp.split(f[j])).length - 1)
|
||||
}
|
||||
}
|
||||
}
|
||||
return sa ? s : s[0]
|
||||
}
|
||||
|
||||
/**
|
||||
* @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
;(function($){
|
||||
"use strict";
|
||||
$.subformRepeatableVDM = function(container, options){
|
||||
this.$container = $(container);
|
||||
|
||||
// check if already exist
|
||||
if(this.$container.data("subformRepeatableVDM")){
|
||||
return self;
|
||||
}
|
||||
|
||||
// Add a reverse reference to the DOM object
|
||||
this.$container.data("subformRepeatableVDM", self);
|
||||
|
||||
// merge options
|
||||
this.options = $.extend({}, $.subformRepeatableVDM.defaults, options);
|
||||
|
||||
// template for the repeating group
|
||||
this.template = '';
|
||||
|
||||
// prepare a row template, and find available field names
|
||||
this.prepareTemplate();
|
||||
|
||||
// check rows container
|
||||
this.$containerRows = this.options.rowsContainer ? this.$container.find(this.options.rowsContainer) : this.$container;
|
||||
|
||||
// To avoid scope issues,
|
||||
var self = this;
|
||||
|
||||
// bind add button
|
||||
this.$container.on('click', this.options.btAdd, function (e) {
|
||||
e.preventDefault();
|
||||
var after = $(this).parents(self.options.repeatableElement);
|
||||
if(!after.length){
|
||||
after = null;
|
||||
}
|
||||
self.addRow(after);
|
||||
});
|
||||
|
||||
// bind remove button
|
||||
this.$container.on('click', this.options.btRemove, function (e) {
|
||||
e.preventDefault();
|
||||
var $row = $(this).parents(self.options.repeatableElement);
|
||||
self.removeRow($row);
|
||||
});
|
||||
|
||||
// bind move button
|
||||
if(this.options.btMove){
|
||||
this.$containerRows.sortable({
|
||||
items: this.options.repeatableElement,
|
||||
handle: this.options.btMove,
|
||||
tolerance: 'pointer'
|
||||
});
|
||||
}
|
||||
|
||||
// tell all that we a ready
|
||||
this.$container.trigger('subform-ready');
|
||||
};
|
||||
|
||||
// prepare a template that we will use repeating
|
||||
$.subformRepeatableVDM.prototype.prepareTemplate = function(){
|
||||
// create from template
|
||||
if (this.options.rowTemplateSelector) {
|
||||
// Find the template element and get its HTML content, this is our template.
|
||||
var $tmplElement = this.$container.find(this.options.rowTemplateSelector).last();
|
||||
|
||||
this.template = $.trim($tmplElement.html()) || '';
|
||||
|
||||
// This is IE fix for <template>
|
||||
$tmplElement.css('display', 'none'); // Make sure it not visible
|
||||
var map = {'SUBFORMLT': '<', 'SUBFORMGT': '>'};
|
||||
this.template = this.template.replace(/(SUBFORMLT)|(SUBFORMGT)/g, function(match){
|
||||
return map[match];
|
||||
});
|
||||
}
|
||||
// create from existing rows
|
||||
else {
|
||||
//find first available
|
||||
var row = this.$container.find(this.options.repeatableElement).get(0),
|
||||
$row = $(row).clone();
|
||||
|
||||
// clear scripts that can be attached to the fields
|
||||
try {
|
||||
this.clearScripts($row);
|
||||
} catch (e) {
|
||||
if(window.console){
|
||||
console.log(e);
|
||||
}
|
||||
}
|
||||
|
||||
this.template = $row.prop('outerHTML');
|
||||
}
|
||||
};
|
||||
|
||||
// add new row
|
||||
$.subformRepeatableVDM.prototype.addRow = function(after){
|
||||
// count how much we already have
|
||||
var count = this.$containerRows.find(this.options.repeatableElement).length;
|
||||
if(count >= this.options.maximum){
|
||||
return null;
|
||||
}
|
||||
|
||||
// make new from template
|
||||
var row = $.parseHTML(this.template);
|
||||
|
||||
// add to container
|
||||
if(after){
|
||||
$(after).after(row);
|
||||
} else {
|
||||
this.$containerRows.append(row);
|
||||
}
|
||||
|
||||
var $row = $(row);
|
||||
|
||||
//add marker that it is new
|
||||
$row.attr('data-new', 'true');
|
||||
// fix names and id`s, and reset values
|
||||
this.fixUniqueAttributes($row, count);
|
||||
|
||||
// fix VDM dynamic values (real pain, could they not have made this easier!!!)
|
||||
var _vdm_counter = $row.attr('data-group');
|
||||
_vdm_counter = _vdm_counter.replace ( /[^\d.]/g, '' );
|
||||
$row[0].innerHTML = $.string_replace("VDM-XX", _vdm_counter, $row[0].innerHTML);
|
||||
|
||||
// try find out with related scripts,
|
||||
// tricky thing, so be careful
|
||||
try {
|
||||
this.fixScripts($row);
|
||||
} catch (e) {
|
||||
if(window.console){
|
||||
console.log(e);
|
||||
}
|
||||
}
|
||||
|
||||
// tell everyone about the new row
|
||||
this.$container.trigger('subform-row-add', $row);
|
||||
return $row;
|
||||
};
|
||||
|
||||
// remove row
|
||||
$.subformRepeatableVDM.prototype.removeRow = function($row){
|
||||
// count how much we have
|
||||
var count = this.$containerRows.find(this.options.repeatableElement).length;
|
||||
if(count <= this.options.minimum){
|
||||
return;
|
||||
}
|
||||
|
||||
// tell everyoune about the row will be removed
|
||||
this.$container.trigger('subform-row-remove', $row);
|
||||
$row.remove();
|
||||
};
|
||||
|
||||
// fix names and id`s for fields in $row
|
||||
$.subformRepeatableVDM.prototype.fixUniqueAttributes = function(
|
||||
$row, // the jQuery object to do fixes in
|
||||
_count, // existing count of rows
|
||||
_group, // current group name, e.g. 'optionsX'
|
||||
_basename // group base name, without count, e.g. 'options'
|
||||
) {
|
||||
var group = (typeof _group === 'undefined' ? $row.attr('data-group') : _group),
|
||||
basename = (typeof _basename === 'undefined' ? $row.attr('data-base-name') : _basename),
|
||||
count = (typeof _count === 'undefined' ? 0 : _count),
|
||||
groupnew = basename + count;
|
||||
|
||||
$row.attr('data-group', groupnew);
|
||||
|
||||
// Fix inputs that have a "name" attribute
|
||||
var haveName = $row.find('[name]'),
|
||||
ids = {}; // Collect id for fix checkboxes and radio
|
||||
|
||||
for (var i = 0, l = haveName.length; i < l; i++) {
|
||||
var $el = $(haveName[i]),
|
||||
name = $el.attr('name'),
|
||||
id = name.replace(/(\[\]$)/g, '').replace(/(\]\[)/g, '__').replace(/\[/g, '_').replace(/\]/g, ''), // id from name
|
||||
nameNew = name.replace('[' + group + '][', '['+ groupnew +']['), // New name
|
||||
idNew = id.replace(group, groupnew).replace(/\W/g, '_'), // Count new id
|
||||
countMulti = 0, // count for multiple radio/checkboxes
|
||||
forOldAttr = id; // Fix "for" in the labels
|
||||
|
||||
if ($el.prop('type') === 'checkbox' && name.match(/\[\]$/)) { // <input type="checkbox" name="name[]"> fix
|
||||
// Recount id
|
||||
countMulti = ids[id] ? ids[id].length : 0;
|
||||
if (!countMulti) {
|
||||
// Set the id for fieldset and group label
|
||||
$el.closest('fieldset.checkboxes').attr('id', idNew);
|
||||
$row.find('label[for="' + id + '"]').attr('for', idNew).attr('id', idNew + '-lbl');
|
||||
}
|
||||
forOldAttr = forOldAttr + countMulti;
|
||||
idNew = idNew + countMulti;
|
||||
}
|
||||
else if ($el.prop('type') === 'radio') { // <input type="radio"> fix
|
||||
// Recount id
|
||||
countMulti = ids[id] ? ids[id].length : 0;
|
||||
if (!countMulti) {
|
||||
// Set the id for fieldset and group label
|
||||
$el.closest('fieldset.radio').attr('id', idNew);
|
||||
$row.find('label[for="' + id + '"]').attr('for', idNew).attr('id', idNew + '-lbl');
|
||||
}
|
||||
forOldAttr = forOldAttr + countMulti;
|
||||
idNew = idNew + countMulti;
|
||||
}
|
||||
|
||||
// Cache already used id
|
||||
if (ids[id]) {
|
||||
ids[id].push(true);
|
||||
} else {
|
||||
ids[id] = [true];
|
||||
}
|
||||
|
||||
// Replace the name to new one
|
||||
$el.attr('name', nameNew);
|
||||
// Set new id
|
||||
$el.attr('id', idNew);
|
||||
// Guess there a label for this input
|
||||
$row.find('label[for="' + forOldAttr + '"]').attr('for', idNew).attr('id', idNew + '-lbl');
|
||||
}
|
||||
|
||||
/**
|
||||
* Recursively replace our basename + old group with basename + new group
|
||||
* inside of nested subform template elements. First we try to find such
|
||||
* template elements, then we iterate through them and do the same replacements
|
||||
* that we have made here inside of them.
|
||||
*/
|
||||
var nestedTemplates = $row.find(this.options.rowTemplateSelector);
|
||||
// If we found it, iterate over the found ones (might be more than one!)
|
||||
for (var j = 0; j < nestedTemplates.length; j++) {
|
||||
// Get the nested templates content (as DocumentFragment) and cast it
|
||||
// to a jQuery object
|
||||
var nestedTemplate = $($(nestedTemplates[j]).prop('content'));
|
||||
// Fix the attributes for this nested template.
|
||||
this.fixUniqueAttributes(nestedTemplate, count, group, basename);
|
||||
}
|
||||
};
|
||||
|
||||
// remove scripts attached to fields
|
||||
// @TODO: make thing better when something like that will be accepted https://github.com/joomla/joomla-cms/pull/6357
|
||||
$.subformRepeatableVDM.prototype.clearScripts = function($row){
|
||||
// destroy chosen if any
|
||||
if($.fn.chosen){
|
||||
$row.find('select.chzn-done').each(function(){
|
||||
var $el = $(this);
|
||||
$el.next('.chzn-container').remove();
|
||||
$el.show().addClass('fix-chosen');
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
// method for hack the scripts that can be related
|
||||
// to the one of field that in given $row
|
||||
// @TODO Stop using this function. Elements within subforms should initialize themselves
|
||||
$.subformRepeatableVDM.prototype.fixScripts = function($row){
|
||||
// fix media field
|
||||
$row.find('a[onclick*="jInsertFieldValue"]').each(function(){
|
||||
var $el = $(this),
|
||||
inputId = $el.siblings('input[type="text"]').attr('id'),
|
||||
$select = $el.prev(),
|
||||
oldHref = $select.attr('href');
|
||||
// update the clear button
|
||||
$el.attr('onclick', "jInsertFieldValue('', '" + inputId + "');return false;")
|
||||
// update select button
|
||||
$select.attr('href', oldHref.replace(/&fieldid=(.+)&/, '&fieldid=' + inputId + '&'));
|
||||
});
|
||||
};
|
||||
|
||||
// defaults
|
||||
$.subformRepeatableVDM.defaults = {
|
||||
// button selector for "add" action, must be unique per nested subform!
|
||||
btAdd: ".group-add",
|
||||
// button selector for "remove" action, must be unique per nested subform!
|
||||
btRemove: ".group-remove",
|
||||
// button selector for "move" action, must be unique per nested subform!
|
||||
btMove: ".group-move",
|
||||
// minimum repeating
|
||||
minimum: 0,
|
||||
// maximum repeating
|
||||
maximum: 10,
|
||||
// selector for the repeatable element inside the main container,
|
||||
// must be unique per nested subform!
|
||||
repeatableElement: ".subform-repeatable-group",
|
||||
// selector for the row template element with URL-encoded template inside it,
|
||||
// must *NOT* be unique per nested subform!
|
||||
rowTemplateSelector: 'template.subform-repeatable-template-section',
|
||||
// container for rows, same as main container by default
|
||||
rowsContainer: null
|
||||
};
|
||||
|
||||
$.fn.subformRepeatableVDM = function(options){
|
||||
return this.each(function(){
|
||||
var options = options || {},
|
||||
data = $(this).data();
|
||||
|
||||
if(data.subformRepeatableVDM){
|
||||
// Alredy initialized, nothing to do here
|
||||
return;
|
||||
}
|
||||
|
||||
for (var p in data) {
|
||||
// check options in the element
|
||||
if (data.hasOwnProperty(p)) {
|
||||
options[p] = data[p];
|
||||
}
|
||||
}
|
||||
|
||||
var inst = new $.subformRepeatableVDM(this, options);
|
||||
$(this).data('subformRepeatableVDM', inst);
|
||||
});
|
||||
};
|
||||
|
||||
// initialise all available on load and again within any added row
|
||||
$(function ($) {
|
||||
initSubform();
|
||||
$(document).on('subform-row-add', initSubform);
|
||||
|
||||
function initSubform (event, container) {
|
||||
$(container || document).find('div.subform-repeatable-vdm').subformRepeatableVDM();
|
||||
}
|
||||
});
|
||||
|
||||
})(jQuery);
|
||||
|
Reference in New Issue
Block a user