Commit inicial - WordPress Análisis de Precios Unitarios

- WordPress core y plugins
- Tema Twenty Twenty-Four configurado
- Plugin allow-unfiltered-html.php simplificado
- .gitignore configurado para excluir wp-config.php y uploads

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-11-03 21:04:30 -06:00
commit a22573bf0b
24068 changed files with 4993111 additions and 0 deletions

View File

@@ -0,0 +1,83 @@
import { __ } from '@wordpress/i18n';
import { registerBlockType } from '@wordpress/blocks';
import { withSelect } from '@wordpress/data';
import tarLogo from './logo';
import previewBlock from './block-preview';
import renderAddBlock from './add-block';
import { maxNrOfPosts } from './utils';
/* global TCB_Post_Edit_Data */
/* global TAR_Block */
registerBlockType( 'thrive/architect-block', {
title: __( 'Thrive Architect Block', 'thrive-cb' ),
icon: tarLogo,
description: __(
'Add Thrive templates, symbols and blocks to your content!',
'thrive-cb'
),
category: 'thrive',
attributes: {
selectedBlock: {
type: 'number',
default: 0,
},
blockTitle: {
type: 'string',
default: '',
},
searchText: {
type: 'string',
default: '',
},
searchBlockSel: {
type: 'string',
default: '',
},
previewImage: {
type: 'boolean',
default: false,
},
},
example: {
attributes: {
previewImage: true,
},
},
edit: withSelect( function( select, props ) {
const searchTextSel = props.attributes.searchBlockSel,
query = {
per_page: maxNrOfPosts(),
search: searchTextSel,
tcb_symbols_tax_exclude: TCB_Post_Edit_Data.sections_tax_terms.map(
( term ) => term.term_id
),
};
return {
posts: select( 'core' ).getEntityRecords(
'postType',
'tcb_symbol',
query
),
};
} )( function( props ) {
if ( props.attributes.previewImage ) {
return [
wp.element.createElement( 'img', {
src: TAR_Block.block_preview,
} ),
];
}
if ( props.attributes.selectedBlock ) {
return previewBlock( props );
}
return renderAddBlock( props );
} ),
// How our block renders on the frontend
save: () => {
return null;
},
} );