Files
root b6df4dbb92 Snapshot: MLS sync fixes, image refresh, plugin/theme updates
MLS plugin fixes from this session:
- Fix silent insert failures: location column NOT NULL was rejecting wpdb->insert calls,
  causing ~18k new properties since Dec 2025 to be lost. Inserts now build raw SQL
  with ST_PointFromText so the spatial column is populated atomically.
- Auto-refresh expired media URLs in MLS_Media_Handler::fetch_and_cache(), guarded by
  a property-level GET_LOCK so concurrent fetches share one API refresh.
- Normalize WP_Error to null in mls_get_property_image() so callers can rely on the
  documented string|null contract.
- Support comma-separated property_type filters in MLS_Query and MLS_Cluster so the
  homepage "View All Commercial" link (?property_type=Commercial+Sale,Land,Farm)
  actually filters correctly.
- Incremental sync now looks back 10 minutes past the latest modification timestamp
  as a safety margin against missed records.
- Smart sync exits silently (info-level, not warning) when a full sync is in progress.

Operational:
- New cron: weekly full sync Sundays at 3 AM (/usr/local/bin/mls-full-sync).
- New cron: hourly 2GB cap on mls-thumbnails/ and cache/transformed-images/
  (/usr/local/bin/mls-image-cache-cap).
- Logrotate config for wp-content/debug.log (2-day retention, daily rotation,
  delaycompress).

Repo policy:
- CLAUDE.md updated with explicit "commit everything except build artifacts" policy.
- .gitignore: untrack runtime image caches and debug.log rotations.

Other modifications in this snapshot are pre-existing in-flight theme/plugin/db_content_updates work.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-29 15:32:23 +00:00

82 lines
2.3 KiB
JavaScript
Executable File

/**
* Chocolate choices' functionality.
*
* @since 1.9.6.1
*/
// eslint-disable-next-line no-unused-vars
const WPFormsChocolateChoices = {
/**
* Initializes the chocolate choices component.
*
* @since 1.9.6.1
*
* @param {Object} $grid The grid container for the choices.
* @param {Object} options Object with name and choices properties.
* @param {string} options.name The name attribute for the checkbox inputs.
* @param {Array} options.choices Array of choice objects with label and value properties.
* @param {Array} options.selected Array of selected choice values.
*/
init( $grid, options ) {
const selected = options.selected?.map?.( String ) ?? [];
const $ = jQuery;
/**
* Generate a random ID string.
* The ID is based on current timestamp and converted to a base-16 string.
*
* @since 1.9.6.1
*
* @return {string} A hexadecimal string representation of the current timestamp.
*/
const getRandomId = () => new Date().getTime().toString( 16 );
/**
* Creates a single choice item.
*
* @since 1.9.6.1
*
* @param {Object|string|number} itemData The choice data object with label and value.
* @param {number} index The index of the choice item.
*
* @return {jQuery} The created choice item element.
*/
const createChoiceItem = ( itemData, index ) => {
const id = `choice-${ index }-${ getRandomId() }`;
const itemValue = String( typeof itemData === 'object' ? itemData.value : itemData );
// Create the container div.
const $itemDiv = $( '<div>', {
class: 'choice-item',
} );
// Create the checkbox input.
const $checkbox = $( '<input>', {
type: 'checkbox',
id,
value: itemValue,
checked: selected.includes( itemValue ),
name: options.name.replace( '{index}', index ),
} );
// Create the label.
const $label = $( '<label>', { for: id } );
$label.text( itemData.label ?? itemData );
// Append elements.
$itemDiv.append( $checkbox, $label );
return $itemDiv;
};
// Clear existing content.
$grid.html( '' );
const choices = [];
// Populate the grid with items.
$.each( options.choices, function( index, choiceData ) {
choices.push( createChoiceItem( choiceData, index ) );
} );
$grid.append( choices );
},
};