Plugin Tabs noticias
This commit is contained in:
@@ -0,0 +1,366 @@
|
||||
if( typeof jQuery!=='undefined' ) {
|
||||
jQuery(function($){
|
||||
|
||||
$( document ).ready( function() {
|
||||
|
||||
var api_url = typeof window.wpApiSettings.root != 'undefined' ? window.wpApiSettings.root : '/wp-json/';
|
||||
|
||||
if ( typeof wp !== 'undefined' && typeof wp.data !== 'undefined' ) {
|
||||
let previousBlocks = [];
|
||||
|
||||
let insertedBlock = null;
|
||||
|
||||
function flattenBlocks(blocks) {
|
||||
let flatBlocks = [];
|
||||
|
||||
blocks.forEach(block => {
|
||||
flatBlocks.push(block);
|
||||
if (block.innerBlocks && block.innerBlocks.length > 0) {
|
||||
flatBlocks = flatBlocks.concat(flattenBlocks(block.innerBlocks));
|
||||
}
|
||||
});
|
||||
|
||||
return flatBlocks;
|
||||
}
|
||||
|
||||
wp.data.subscribe(() => {
|
||||
if ( !wp.data.select('core/block-editor') ) {
|
||||
return;
|
||||
}
|
||||
const currentBlocks = wp.data.select('core/block-editor').getBlocks();
|
||||
const flatCurrentBlocks = flattenBlocks(currentBlocks);
|
||||
|
||||
if (flatCurrentBlocks.length > previousBlocks.length && previousBlocks.length > 0) {
|
||||
|
||||
const newBlock = flatCurrentBlocks.find(block => {
|
||||
return !previousBlocks.some(prevBlock => prevBlock.clientId === block.clientId);
|
||||
});
|
||||
|
||||
if ( newBlock && ( !insertedBlock || newBlock.attributes.block_id != insertedBlock.attributes.block_id ) ) {
|
||||
insertedBlock = newBlock;
|
||||
wp.data.dispatch( 'core/block-editor' ).updateBlockAttributes( newBlock.clientId, { block_id: null });
|
||||
|
||||
if ( newBlock.innerBlocks.length ) {
|
||||
newBlock.innerBlocks.forEach(( block ) => {
|
||||
wp.data.dispatch( 'core/block-editor' ).updateBlockAttributes( block.clientId, { block_id: null, parent_id: null });
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
previousBlocks = flatCurrentBlocks;
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Admin Fields
|
||||
*
|
||||
* Manage the maipulation of field options
|
||||
* within the admin area
|
||||
*
|
||||
*/
|
||||
$( document ).on( 'click', '.areoi-toggle-field', function(e) {
|
||||
e.preventDefault();
|
||||
var row = $( this ).parents( '.areoi-variable-row' );
|
||||
row.toggleClass( 'areoi-is-variable' );
|
||||
} );
|
||||
|
||||
$( document ).on( 'change', '.areoi-select-variable', function(e) {
|
||||
e.preventDefault();
|
||||
var input = $( this ).parent( '.areoi-field' ).find( '.areoi-input-text' ),
|
||||
value = $( this ).val();
|
||||
input.val( value );
|
||||
input.trigger( 'change' );
|
||||
$( this ).val( '' )
|
||||
} );
|
||||
|
||||
$( document ).on( 'change', '.areoi-select-theme-json', function(e) {
|
||||
e.preventDefault();
|
||||
var input = $( this ).parent( '.areoi-field' ).find( '.areoi-input-text' ),
|
||||
value = $( this ).val();
|
||||
input.val( 'theme-json-' + value );
|
||||
input.trigger( 'change' );
|
||||
$( this ).val( '' )
|
||||
} );
|
||||
|
||||
$( document ).on( 'change', '.areoi-select-bootstrap-class', function(e) {
|
||||
e.preventDefault();
|
||||
var container = $( this ).parents( '.components-base-control__field' ),
|
||||
input = container.find( 'input' ),
|
||||
value = input.val() + ' ' + $( this ).val();
|
||||
|
||||
const wp = window.wp;
|
||||
const data = wp.data.select( 'core/block-editor' );
|
||||
const selected = data.getSelectedBlock();
|
||||
|
||||
wp.data.dispatch( 'core/block-editor' ).updateBlockAttributes( selected.clientId, { className: value });
|
||||
|
||||
$( this ).val( '' )
|
||||
} );
|
||||
|
||||
$( document ).on( 'change', '.areoi-form-table input', function(e) {
|
||||
e.preventDefault();
|
||||
var row = $( this ).parents( '.areoi-row-input' ),
|
||||
color = $( this ).val(),
|
||||
cp = row.find( '.areoi-colour-picker' ),
|
||||
cp_container = row.find( '.wp-picker-container' );
|
||||
|
||||
if ( cp.length ) {
|
||||
if ( !CheckValidColor( color ) ) {
|
||||
cp.iris( 'color', '' );
|
||||
cp.val( '' );
|
||||
cp_container.find( '.wp-color-result' ).css( 'background-color', '' );
|
||||
cp_container.find( '.color-alpha' ).css( 'background-color', '' );
|
||||
} else {
|
||||
cp.iris( 'color', color );
|
||||
}
|
||||
}
|
||||
} );
|
||||
|
||||
$( document ).on( 'change', '.areoi-form-table .areoi-font-picker', function(e) {
|
||||
e.preventDefault();
|
||||
var row = $( this ).parents( '.areoi-row-input' ),
|
||||
font = $( this ).val(),
|
||||
input = row.find( '.areoi-input-text' );
|
||||
|
||||
input.val( font );
|
||||
} );
|
||||
|
||||
$( document ).on( 'change', '.areoi-form-table .areoi-google-font-picker', function(e) {
|
||||
e.preventDefault();
|
||||
var row = $( this ).parents( '.areoi-row-input' ),
|
||||
font = $( this ).val(),
|
||||
input = row.find( '.areoi-input-text' );
|
||||
|
||||
input.val( font );
|
||||
} );
|
||||
|
||||
function CheckValidColor(color) {
|
||||
var e = document.getElementById('divValidColor');
|
||||
if (!e) {
|
||||
e = document.createElement('div');
|
||||
e.id = 'divValidColor';
|
||||
}
|
||||
e.style.borderColor = '';
|
||||
e.style.borderColor = color;
|
||||
var tmpcolor = e.style.borderColor;
|
||||
if (tmpcolor.length == 0) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
$('.areoi-colour-picker').wpColorPicker({
|
||||
change: function( event, ui ) {
|
||||
var element = event.target;
|
||||
var row = $( element ).parents( '.areoi-row-input' )
|
||||
var color = ui.color.to_s();
|
||||
var input = row.find( '.areoi-input-text' );
|
||||
input.val( color );
|
||||
}
|
||||
});
|
||||
|
||||
$( document ).on( 'click', '.areoi-reset', function(e) {
|
||||
e.preventDefault();
|
||||
var id = $( this ).data( 'id' ),
|
||||
input = $( '#' + id ),
|
||||
row = $( this ).parents( '.areoi-row-input' ),
|
||||
default_value = input.data( 'default' ),
|
||||
cp = row.find( '.areoi-colour-picker' ),
|
||||
cp_container = row.find( '.wp-picker-container' ),
|
||||
fp = row.find( '.areoi-font-picker' );
|
||||
|
||||
if ( cp.length ) {
|
||||
if ( !CheckValidColor( default_value ) ) {
|
||||
cp.iris( 'color', '' );
|
||||
cp.val( '' );
|
||||
cp_container.find( '.wp-color-result' ).css( 'background-color', '' );
|
||||
cp_container.find( '.color-alpha' ).css( 'background-color', '' );
|
||||
} else {
|
||||
cp.iris( 'color', default_value );
|
||||
}
|
||||
}
|
||||
if ( fp.length ) {
|
||||
fp.val( default_value );
|
||||
}
|
||||
if ( input.attr( 'type' ) == 'checkbox' ) {
|
||||
if ( default_value == 1 ) {
|
||||
input.prop( 'checked', 'checked' );
|
||||
} else {
|
||||
input.prop( 'checked', false );
|
||||
}
|
||||
} else {
|
||||
if ( typeof default_value !== 'undefined' ) {
|
||||
input.val( default_value );
|
||||
}
|
||||
}
|
||||
} );
|
||||
|
||||
$( '.areoi-font-picker' ).select2();
|
||||
$( '.areoi-font-picker' ).on('select2:open', function (e) {
|
||||
setTimeout( function() {
|
||||
var items = $( '.select2-results__option' );
|
||||
items.each( function() {
|
||||
$( this ).css( {
|
||||
'font-family': $( this ).text(),
|
||||
'font-size': '22px'
|
||||
});
|
||||
});
|
||||
}, 500);
|
||||
});
|
||||
|
||||
$( '.areoi-select-variable' ).select2({
|
||||
ajax: {
|
||||
url: api_url + 'areoi/variables',
|
||||
dataType: 'json',
|
||||
delay: 500
|
||||
}
|
||||
});
|
||||
$( '.areoi-select-variable' ).on( 'select2:select', function (e) {
|
||||
$( this ).val( null ).trigger( 'change.select2' );
|
||||
});
|
||||
|
||||
$( '.areoi-select-theme-json' ).select2({
|
||||
ajax: {
|
||||
url: api_url + 'areoi/theme-json',
|
||||
dataType: 'json',
|
||||
delay: 500,
|
||||
}
|
||||
});
|
||||
$( '.areoi-select-theme-json' ).on( 'select2:select', function (e) {
|
||||
$( this ).val( null ).trigger( 'change.select2' );
|
||||
});
|
||||
|
||||
$( document ).on( 'click', '.areoi-form-button button', function(e) {
|
||||
e.preventDefault();
|
||||
var type = $( this ).data( 'type' ),
|
||||
refer = $( '[name="_wp_http_referer"]' ),
|
||||
_wp_http_referer = refer.val();
|
||||
|
||||
var url = new URL( window.location );
|
||||
|
||||
var search_params = url.searchParams;
|
||||
|
||||
search_params.set( 'save_type', type );
|
||||
|
||||
url.search = search_params.toString();
|
||||
|
||||
refer.val( url.toString() );
|
||||
|
||||
$( '.areoi-form' ).trigger( 'submit' );
|
||||
});
|
||||
$( document ).on( 'submit', '.areoi-form', function(e) {
|
||||
e.preventDefault();
|
||||
|
||||
var container = $( '.areoi-form-button' ),
|
||||
spinner = container.find( '.spinner' ),
|
||||
submit = container.find( '.areoi-form-button__group' );
|
||||
|
||||
submit.hide();
|
||||
spinner.addClass( 'is-active' );
|
||||
|
||||
var data = $( this ).serializeArray(),
|
||||
url = $( this ).attr( 'action' ),
|
||||
type = $( this ).attr( 'method' );
|
||||
|
||||
$.ajax({
|
||||
type: type,
|
||||
url: url,
|
||||
data: data
|
||||
}).done(function (data) {
|
||||
location.reload();
|
||||
}).fail(function (data) {
|
||||
$( '.areoi-form-button__alert' ).addClass( 'active' ).text( data.responseText );
|
||||
submit.show();
|
||||
spinner.removeClass( 'is-active' );
|
||||
|
||||
setTimeout( function() {
|
||||
$( '.areoi-form-button__alert' ).removeClass( 'active' );
|
||||
}, 5000);
|
||||
});
|
||||
} );
|
||||
|
||||
|
||||
// Media upload functionality
|
||||
$('body').on( 'click', '.areoi-upl', function(e) {
|
||||
e.preventDefault();
|
||||
|
||||
var button = $(this),
|
||||
container = button.parents( '.areoi-variable-row' ),
|
||||
custom_uploader = wp.media({
|
||||
title: 'Insert image',
|
||||
library : {
|
||||
type : 'image'
|
||||
},
|
||||
button: {
|
||||
text: 'Use this image'
|
||||
},
|
||||
multiple: false
|
||||
}).on('select', function() {
|
||||
var attachment = custom_uploader.state().get('selection').first().toJSON();
|
||||
button.html('<img src="' + attachment.url + '" class="areoi-image-w-border" style="width: 100%; height: auto;">');
|
||||
container.find( 'input' ).val( attachment.url );
|
||||
container.addClass( 'with-image' );
|
||||
}).open();
|
||||
});
|
||||
|
||||
// on remove button click
|
||||
$('body').on('click', '.areoi-rmv', function(e) {
|
||||
e.preventDefault();
|
||||
|
||||
var button = $(this),
|
||||
container = button.parents( '.areoi-row-input' );
|
||||
|
||||
container.find( 'input' ).val( '' );
|
||||
container.find( '.areoi-upl-container' ).removeClass( 'with-image' );
|
||||
});
|
||||
|
||||
var interval = setInterval( function() {
|
||||
var label = $( 'label:contains(Additional CSS class(es))' );
|
||||
|
||||
if ( label.length ) {
|
||||
var container = label.parent(),
|
||||
input = container.find( 'input' ),
|
||||
select = container.find( 'select' );
|
||||
|
||||
if ( !select.length ) {
|
||||
|
||||
var html = `
|
||||
<div style="margin: 10px 0; position: relative;">
|
||||
<select class="areoi-select-bootstrap-class" name="areoi-select-bootstrap-class">
|
||||
<option value="">Add Bootstrap class</option>
|
||||
</select>
|
||||
</div>
|
||||
`;
|
||||
$( html ).insertBefore( input );
|
||||
|
||||
$( '.areoi-select-bootstrap-class' ).select2({
|
||||
ajax: {
|
||||
url: api_url + 'areoi/bootstrap-classes',
|
||||
dataType: 'json',
|
||||
delay: 500
|
||||
}
|
||||
});
|
||||
$( '.areoi-select-bootstrap-class' ).on( 'select2:select', function (e) {
|
||||
$( this ).val( null ).trigger( 'change.select2' );
|
||||
});
|
||||
}
|
||||
}
|
||||
}, 10);
|
||||
|
||||
/**
|
||||
* Admin Layout
|
||||
*
|
||||
* Manage the maipulation of layout elements
|
||||
* within the admin area
|
||||
*
|
||||
*/
|
||||
// Toggle accordion headers
|
||||
$( document ).on( 'click', '.areoi-card-header', function(e) {
|
||||
e.preventDefault();
|
||||
var card = $( this ).parents( '.areoi-card' );
|
||||
card.toggleClass( 'active' );
|
||||
} );
|
||||
});
|
||||
});
|
||||
}
|
||||
149
Wordpress/wordpress/wp-content/plugins/all-bootstrap-blocks/assets/js/bootstrap-extra.js
vendored
Normal file
149
Wordpress/wordpress/wp-content/plugins/all-bootstrap-blocks/assets/js/bootstrap-extra.js
vendored
Normal file
@@ -0,0 +1,149 @@
|
||||
var popoverTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]'));
|
||||
var popoverList = popoverTriggerList.map(function (popoverTriggerEl) {
|
||||
return new bootstrap.Popover(popoverTriggerEl);
|
||||
});
|
||||
|
||||
var tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]'));
|
||||
var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) {
|
||||
return new bootstrap.Tooltip(tooltipTriggerEl);
|
||||
});
|
||||
|
||||
var modals = document.getElementsByClassName("modal");
|
||||
var modal_links = [];
|
||||
for (var i = 0; i < modals.length; i++) {
|
||||
var modal = modals.item(i);
|
||||
var links = document.querySelectorAll("[href=\'#" + modal.id + "\']");
|
||||
if ( !links.length ) {
|
||||
continue;
|
||||
}
|
||||
for (var modal_i = 0; modal_i < links.length; modal_i++) {
|
||||
modal_links.push( links.item(modal_i) );
|
||||
}
|
||||
}
|
||||
if ( modal_links.length ) {
|
||||
modal_links.forEach( function( link ) {
|
||||
link.addEventListener("click", function(event) {
|
||||
event.preventDefault();
|
||||
var id = link.href.split("#");
|
||||
var modal = new bootstrap.Modal(document.getElementById(id[1]), {
|
||||
keyboard: true
|
||||
});
|
||||
modal.show();
|
||||
}, false );
|
||||
});
|
||||
}
|
||||
|
||||
var collapses = document.getElementsByClassName("collapse");
|
||||
var collapse_links = [];
|
||||
for (var i = 0; i < collapses.length; i++) {
|
||||
var collapse = collapses.item(i);
|
||||
var links = document.querySelectorAll("[href=\'#" + collapse.id + "\']");
|
||||
|
||||
if ( !links.length ) {
|
||||
continue;
|
||||
}
|
||||
for (var link_i = 0; link_i < links.length; link_i++) {
|
||||
collapse_links.push( links.item(link_i) );
|
||||
}
|
||||
}
|
||||
if ( collapse_links.length ) {
|
||||
collapse_links.forEach( function( link ) {
|
||||
link.addEventListener("click", function(event) {
|
||||
event.preventDefault();
|
||||
var id = link.href.split("#");
|
||||
var collapse = new bootstrap.Collapse(document.getElementById(id[1]), {
|
||||
keyboard: false
|
||||
});
|
||||
collapse.toggle();
|
||||
}, false );
|
||||
});
|
||||
}
|
||||
|
||||
var offcanvass = document.getElementsByClassName("offcanvas");
|
||||
var offcanvas_links = [];
|
||||
for (var i = 0; i < offcanvass.length; i++) {
|
||||
var offcanvas = offcanvass.item(i);
|
||||
var links = document.querySelectorAll("[href=\'#" + offcanvas.id + "\']");
|
||||
|
||||
if ( !links.length ) {
|
||||
continue;
|
||||
}
|
||||
for (var link_i = 0; link_i < links.length; link_i++) {
|
||||
offcanvas_links.push( links.item(link_i) );
|
||||
}
|
||||
}
|
||||
if ( offcanvas_links.length ) {
|
||||
offcanvas_links.forEach( function( link ) {
|
||||
link.addEventListener("click", function(event) {
|
||||
event.preventDefault();
|
||||
var id = link.href.split("#");
|
||||
var offcanvas = new bootstrap.Offcanvas(document.getElementById(id[1]), {
|
||||
keyboard: false
|
||||
});
|
||||
offcanvas.show();
|
||||
}, false );
|
||||
});
|
||||
}
|
||||
|
||||
var toasts = document.getElementsByClassName("toast");
|
||||
var toast_links = [];
|
||||
for (var i = 0; i < toasts.length; i++) {
|
||||
var toast = toasts.item(i);
|
||||
var links = document.querySelectorAll("[href=\'#" + toast.id + "\']");
|
||||
|
||||
if ( !links.length ) {
|
||||
continue;
|
||||
}
|
||||
for (var link_i = 0; link_i < links.length; link_i++) {
|
||||
toast_links.push( links.item(link_i) );
|
||||
}
|
||||
}
|
||||
if ( toast_links.length ) {
|
||||
toast_links.forEach( function( link ) {
|
||||
link.addEventListener("click", function(event) {
|
||||
event.preventDefault();
|
||||
var id = link.href.split("#");
|
||||
var toast = new bootstrap.Toast(document.getElementById(id[1]), {
|
||||
keyboard: false,
|
||||
});
|
||||
toast.show();
|
||||
}, false );
|
||||
});
|
||||
}
|
||||
|
||||
jQuery(document).ready(function($){
|
||||
|
||||
$( '.areoi-tabs' ).each( function() {
|
||||
|
||||
var active = $( this ).find( '.nav a.active:first-of-type' );
|
||||
|
||||
$( this ).find( '.nav a.active:not(:first-of-type)' ).removeClass( 'active' );
|
||||
|
||||
$( this ).find( '> div' ).addClass( 'tab-pane d-none' );
|
||||
|
||||
var active_tab = $( this ).find( active.attr( 'href' ) );
|
||||
|
||||
if ( active_tab ) {
|
||||
active_tab.removeClass( 'd-none' );
|
||||
}
|
||||
});
|
||||
|
||||
$( document ).on( 'click', '.areoi-tabs .nav a', function( e ) {
|
||||
var href = $(this).attr('href');
|
||||
if (href && href.startsWith('#')) {
|
||||
e.preventDefault();
|
||||
|
||||
var container = $( this ).parents( '.areoi-tabs' );
|
||||
var active_tab = container.find( $( this ).attr( 'href' ) );
|
||||
|
||||
container.find( '.nav a' ).removeClass( 'active' );
|
||||
$( this ).addClass( 'active' );
|
||||
|
||||
if ( active_tab ) {
|
||||
container.find( '> div' ).addClass( 'd-none' );
|
||||
active_tab.removeClass( 'd-none' );
|
||||
}
|
||||
}
|
||||
} );
|
||||
|
||||
});
|
||||
6
Wordpress/wordpress/wp-content/plugins/all-bootstrap-blocks/assets/js/bootstrap.min.js
vendored
Normal file
6
Wordpress/wordpress/wp-content/plugins/all-bootstrap-blocks/assets/js/bootstrap.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
2
Wordpress/wordpress/wp-content/plugins/all-bootstrap-blocks/assets/js/select2.min.js
vendored
Normal file
2
Wordpress/wordpress/wp-content/plugins/all-bootstrap-blocks/assets/js/select2.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user