|
|
|
|
|
|
|
|
|
|
|
|
|
window.wp = window.wp || {}; |
|
window.communityEventsData = window.communityEventsData || {}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
jQuery( function($) { |
|
var welcomePanel = $( '#welcome-panel' ), |
|
welcomePanelHide = $('#wp_welcome_panel-hide'), |
|
updateWelcomePanel; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
updateWelcomePanel = function( visible ) { |
|
$.post( ajaxurl, { |
|
action: 'update-welcome-panel', |
|
visible: visible, |
|
welcomepanelnonce: $( '#welcomepanelnonce' ).val() |
|
}); |
|
}; |
|
|
|
|
|
if ( welcomePanel.hasClass('hidden') && welcomePanelHide.prop('checked') ) { |
|
welcomePanel.removeClass('hidden'); |
|
} |
|
|
|
|
|
$('.welcome-panel-close, .welcome-panel-dismiss a', welcomePanel).on( 'click', function(e) { |
|
e.preventDefault(); |
|
welcomePanel.addClass('hidden'); |
|
updateWelcomePanel( 0 ); |
|
$('#wp_welcome_panel-hide').prop('checked', false); |
|
}); |
|
|
|
|
|
welcomePanelHide.on( 'click', function() { |
|
welcomePanel.toggleClass('hidden', ! this.checked ); |
|
updateWelcomePanel( this.checked ? 1 : 0 ); |
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
window.ajaxWidgets = ['dashboard_primary']; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
window.ajaxPopulateWidgets = function(el) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function show(i, id) { |
|
var p, e = $('#' + id + ' div.inside:visible').find('.widget-loading'); |
|
|
|
if ( e.length ) { |
|
p = e.parent(); |
|
setTimeout( function(){ |
|
|
|
p.load( ajaxurl + '?action=dashboard-widgets&widget=' + id + '&pagenow=' + pagenow, '', function() { |
|
|
|
p.hide().slideDown('normal', function(){ |
|
$(this).css('display', ''); |
|
}); |
|
}); |
|
}, i * 500 ); |
|
} |
|
} |
|
|
|
|
|
if ( el ) { |
|
el = el.toString(); |
|
|
|
if ( $.inArray(el, ajaxWidgets) !== -1 ) { |
|
|
|
show(0, el); |
|
} |
|
} else { |
|
|
|
$.each( ajaxWidgets, show ); |
|
} |
|
}; |
|
|
|
|
|
ajaxPopulateWidgets(); |
|
|
|
|
|
postboxes.add_postbox_toggles(pagenow, { pbshow: ajaxPopulateWidgets } ); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
window.quickPressLoad = function() { |
|
var act = $('#quickpost-action'), t; |
|
|
|
|
|
$( '#quick-press .submit input[type="submit"], #quick-press .submit input[type="reset"]' ).prop( 'disabled' , false ); |
|
|
|
t = $('#quick-press').on( 'submit', function( e ) { |
|
e.preventDefault(); |
|
|
|
|
|
$('#dashboard_quick_press #publishing-action .spinner').show(); |
|
|
|
|
|
$('#quick-press .submit input[type="submit"], #quick-press .submit input[type="reset"]').prop('disabled', true); |
|
|
|
|
|
$.post( t.attr( 'action' ), t.serializeArray(), function( data ) { |
|
|
|
$('#dashboard_quick_press .inside').html( data ); |
|
$('#quick-press').removeClass('initial-form'); |
|
quickPressLoad(); |
|
highlightLatestPost(); |
|
|
|
|
|
$('#title').trigger( 'focus' ); |
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
function highlightLatestPost () { |
|
var latestPost = $('.drafts ul li').first(); |
|
latestPost.css('background', '#fffbe5'); |
|
setTimeout(function () { |
|
latestPost.css('background', 'none'); |
|
}, 1000); |
|
} |
|
} ); |
|
|
|
|
|
$('#publish').on( 'click', function() { act.val( 'post-quickpress-publish' ); } ); |
|
|
|
$('#quick-press').on( 'click focusin', function() { |
|
wpActiveEditor = 'content'; |
|
}); |
|
|
|
autoResizeTextarea(); |
|
}; |
|
window.quickPressLoad(); |
|
|
|
|
|
$( '.meta-box-sortables' ).sortable( 'option', 'containment', '#wpwrap' ); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function autoResizeTextarea() { |
|
|
|
if ( document.documentMode && document.documentMode < 9 ) { |
|
return; |
|
} |
|
|
|
|
|
$('body').append( '<div class="quick-draft-textarea-clone" style="display: none;"></div>' ); |
|
|
|
var clone = $('.quick-draft-textarea-clone'), |
|
editor = $('#content'), |
|
editorHeight = editor.height(), |
|
|
|
|
|
|
|
|
|
editorMaxHeight = $(window).height() - 100; |
|
|
|
|
|
|
|
|
|
|
|
clone.css({ |
|
'font-family': editor.css('font-family'), |
|
'font-size': editor.css('font-size'), |
|
'line-height': editor.css('line-height'), |
|
'padding-bottom': editor.css('paddingBottom'), |
|
'padding-left': editor.css('paddingLeft'), |
|
'padding-right': editor.css('paddingRight'), |
|
'padding-top': editor.css('paddingTop'), |
|
'white-space': 'pre-wrap', |
|
'word-wrap': 'break-word', |
|
'display': 'none' |
|
}); |
|
|
|
|
|
editor.on('focus input propertychange', function() { |
|
var $this = $(this), |
|
|
|
|
|
textareaContent = $this.val() + ' ', |
|
|
|
cloneHeight = clone.css('width', $this.css('width')).text(textareaContent).outerHeight() + 2; |
|
|
|
|
|
editor.css('overflow-y', 'auto'); |
|
|
|
|
|
if ( cloneHeight === editorHeight || ( cloneHeight >= editorMaxHeight && editorHeight >= editorMaxHeight ) ) { |
|
return; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
if ( cloneHeight > editorMaxHeight ) { |
|
editorHeight = editorMaxHeight; |
|
} else { |
|
editorHeight = cloneHeight; |
|
} |
|
|
|
|
|
editor.css('overflow', 'hidden'); |
|
|
|
$this.css('height', editorHeight + 'px'); |
|
}); |
|
} |
|
|
|
} ); |
|
|
|
jQuery( function( $ ) { |
|
'use strict'; |
|
|
|
var communityEventsData = window.communityEventsData, |
|
dateI18n = wp.date.dateI18n, |
|
format = wp.date.format, |
|
sprintf = wp.i18n.sprintf, |
|
__ = wp.i18n.__, |
|
_x = wp.i18n._x, |
|
app; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app = window.wp.communityEvents = { |
|
initialized: false, |
|
model: null, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
init: function() { |
|
if ( app.initialized ) { |
|
return; |
|
} |
|
|
|
var $container = $( '#community-events' ); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$( '.community-events-errors' ) |
|
.attr( 'aria-hidden', 'true' ) |
|
.removeClass( 'hide-if-js' ); |
|
|
|
$container.on( 'click', '.community-events-toggle-location, .community-events-cancel', app.toggleLocationForm ); |
|
|
|
|
|
|
|
|
|
|
|
|
|
$container.on( 'submit', '.community-events-form', function( event ) { |
|
var location = $( '#community-events-location' ).val().trim(); |
|
|
|
event.preventDefault(); |
|
|
|
|
|
|
|
|
|
|
|
if ( ! location ) { |
|
return; |
|
} |
|
|
|
app.getEvents({ |
|
location: location |
|
}); |
|
}); |
|
|
|
if ( communityEventsData && communityEventsData.cache && communityEventsData.cache.location && communityEventsData.cache.events ) { |
|
app.renderEventsTemplate( communityEventsData.cache, 'app' ); |
|
} else { |
|
app.getEvents(); |
|
} |
|
|
|
app.initialized = true; |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
toggleLocationForm: function( action ) { |
|
var $toggleButton = $( '.community-events-toggle-location' ), |
|
$cancelButton = $( '.community-events-cancel' ), |
|
$form = $( '.community-events-form' ), |
|
$target = $(); |
|
|
|
if ( 'object' === typeof action ) { |
|
|
|
$target = $( action.target ); |
|
|
|
|
|
|
|
|
|
|
|
action = 'true' == $toggleButton.attr( 'aria-expanded' ) ? 'hide' : 'show'; |
|
} |
|
|
|
if ( 'hide' === action ) { |
|
$toggleButton.attr( 'aria-expanded', 'false' ); |
|
$cancelButton.attr( 'aria-expanded', 'false' ); |
|
$form.attr( 'aria-hidden', 'true' ); |
|
|
|
|
|
|
|
|
|
|
|
if ( $target.hasClass( 'community-events-cancel' ) ) { |
|
$toggleButton.trigger( 'focus' ); |
|
} |
|
} else { |
|
$toggleButton.attr( 'aria-expanded', 'true' ); |
|
$cancelButton.attr( 'aria-expanded', 'true' ); |
|
$form.attr( 'aria-hidden', 'false' ); |
|
} |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getEvents: function( requestParams ) { |
|
var initiatedBy, |
|
app = this, |
|
$spinner = $( '.community-events-form' ).children( '.spinner' ); |
|
|
|
requestParams = requestParams || {}; |
|
requestParams._wpnonce = communityEventsData.nonce; |
|
requestParams.timezone = window.Intl ? window.Intl.DateTimeFormat().resolvedOptions().timeZone : ''; |
|
|
|
initiatedBy = requestParams.location ? 'user' : 'app'; |
|
|
|
$spinner.addClass( 'is-active' ); |
|
|
|
wp.ajax.post( 'get-community-events', requestParams ) |
|
.always( function() { |
|
$spinner.removeClass( 'is-active' ); |
|
}) |
|
|
|
.done( function( response ) { |
|
if ( 'no_location_available' === response.error ) { |
|
if ( requestParams.location ) { |
|
response.unknownCity = requestParams.location; |
|
} else { |
|
|
|
|
|
|
|
|
|
|
|
|
|
delete response.error; |
|
} |
|
} |
|
app.renderEventsTemplate( response, initiatedBy ); |
|
}) |
|
|
|
.fail( function() { |
|
app.renderEventsTemplate({ |
|
'location' : false, |
|
'events' : [], |
|
'error' : true |
|
}, initiatedBy ); |
|
}); |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
renderEventsTemplate: function( templateParams, initiatedBy ) { |
|
var template, |
|
elementVisibility, |
|
$toggleButton = $( '.community-events-toggle-location' ), |
|
$locationMessage = $( '#community-events-location-message' ), |
|
$results = $( '.community-events-results' ); |
|
|
|
templateParams.events = app.populateDynamicEventFields( |
|
templateParams.events, |
|
communityEventsData.time_format |
|
); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
elementVisibility = { |
|
'.community-events' : true, |
|
'.community-events-loading' : false, |
|
'.community-events-errors' : false, |
|
'.community-events-error-occurred' : false, |
|
'.community-events-could-not-locate' : false, |
|
'#community-events-location-message' : false, |
|
'.community-events-toggle-location' : false, |
|
'.community-events-results' : false |
|
}; |
|
|
|
|
|
|
|
|
|
|
|
if ( templateParams.location.ip ) { |
|
|
|
|
|
|
|
|
|
$locationMessage.text( __( 'Attend an upcoming event near you.' ) ); |
|
|
|
if ( templateParams.events.length ) { |
|
template = wp.template( 'community-events-event-list' ); |
|
$results.html( template( templateParams ) ); |
|
} else { |
|
template = wp.template( 'community-events-no-upcoming-events' ); |
|
$results.html( template( templateParams ) ); |
|
} |
|
|
|
elementVisibility['#community-events-location-message'] = true; |
|
elementVisibility['.community-events-toggle-location'] = true; |
|
elementVisibility['.community-events-results'] = true; |
|
|
|
} else if ( templateParams.location.description ) { |
|
template = wp.template( 'community-events-attend-event-near' ); |
|
$locationMessage.html( template( templateParams ) ); |
|
|
|
if ( templateParams.events.length ) { |
|
template = wp.template( 'community-events-event-list' ); |
|
$results.html( template( templateParams ) ); |
|
} else { |
|
template = wp.template( 'community-events-no-upcoming-events' ); |
|
$results.html( template( templateParams ) ); |
|
} |
|
|
|
if ( 'user' === initiatedBy ) { |
|
wp.a11y.speak( |
|
sprintf( |
|
|
|
__( 'City updated. Listing events near %s.' ), |
|
templateParams.location.description |
|
), |
|
'assertive' |
|
); |
|
} |
|
|
|
elementVisibility['#community-events-location-message'] = true; |
|
elementVisibility['.community-events-toggle-location'] = true; |
|
elementVisibility['.community-events-results'] = true; |
|
|
|
} else if ( templateParams.unknownCity ) { |
|
template = wp.template( 'community-events-could-not-locate' ); |
|
$( '.community-events-could-not-locate' ).html( template( templateParams ) ); |
|
wp.a11y.speak( |
|
sprintf( |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
__( 'We couldn’t locate %s. Please try another nearby city. For example: Kansas City; Springfield; Portland.' ), |
|
templateParams.unknownCity |
|
) |
|
); |
|
|
|
elementVisibility['.community-events-errors'] = true; |
|
elementVisibility['.community-events-could-not-locate'] = true; |
|
|
|
} else if ( templateParams.error && 'user' === initiatedBy ) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
wp.a11y.speak( __( 'An error occurred. Please try again.' ) ); |
|
|
|
elementVisibility['.community-events-errors'] = true; |
|
elementVisibility['.community-events-error-occurred'] = true; |
|
} else { |
|
$locationMessage.text( __( 'Enter your closest city to find nearby events.' ) ); |
|
|
|
elementVisibility['#community-events-location-message'] = true; |
|
elementVisibility['.community-events-toggle-location'] = true; |
|
} |
|
|
|
|
|
_.each( elementVisibility, function( isVisible, element ) { |
|
$( element ).attr( 'aria-hidden', ! isVisible ); |
|
}); |
|
|
|
$toggleButton.attr( 'aria-expanded', elementVisibility['.community-events-toggle-location'] ); |
|
|
|
if ( templateParams.location && ( templateParams.location.ip || templateParams.location.latitude ) ) { |
|
|
|
app.toggleLocationForm( 'hide' ); |
|
|
|
if ( 'user' === initiatedBy ) { |
|
|
|
|
|
|
|
|
|
|
|
$toggleButton.trigger( 'focus' ); |
|
} |
|
} else { |
|
app.toggleLocationForm( 'show' ); |
|
} |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
populateDynamicEventFields: function( rawEvents, timeFormat ) { |
|
|
|
var populatedEvents = JSON.parse( JSON.stringify( rawEvents ) ); |
|
|
|
$.each( populatedEvents, function( index, event ) { |
|
var timeZone = app.getTimeZone( event.start_unix_timestamp * 1000 ); |
|
|
|
event.user_formatted_date = app.getFormattedDate( |
|
event.start_unix_timestamp * 1000, |
|
event.end_unix_timestamp * 1000, |
|
timeZone |
|
); |
|
|
|
event.user_formatted_time = dateI18n( |
|
timeFormat, |
|
event.start_unix_timestamp * 1000, |
|
timeZone |
|
); |
|
|
|
event.timeZoneAbbreviation = app.getTimeZoneAbbreviation( event.start_unix_timestamp * 1000 ); |
|
} ); |
|
|
|
return populatedEvents; |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getTimeZone: function( startTimestamp ) { |
|
|
|
|
|
|
|
|
|
var timeZone = Intl.DateTimeFormat().resolvedOptions().timeZone; |
|
|
|
|
|
|
|
|
|
if ( 'undefined' === typeof timeZone ) { |
|
|
|
|
|
|
|
|
|
timeZone = app.getFlippedTimeZoneOffset( startTimestamp ); |
|
} |
|
|
|
return timeZone; |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getFlippedTimeZoneOffset: function( startTimestamp ) { |
|
return new Date( startTimestamp ).getTimezoneOffset() * -1; |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getTimeZoneAbbreviation: function( startTimestamp ) { |
|
var timeZoneAbbreviation, |
|
eventDateTime = new Date( startTimestamp ); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var shortTimeStringParts = eventDateTime.toLocaleTimeString( undefined, { timeZoneName : 'short' } ).split( ' ' ); |
|
|
|
if ( 3 === shortTimeStringParts.length ) { |
|
timeZoneAbbreviation = shortTimeStringParts[2]; |
|
} |
|
|
|
if ( 'undefined' === typeof timeZoneAbbreviation ) { |
|
|
|
|
|
|
|
|
|
var timeZoneOffset = app.getFlippedTimeZoneOffset( startTimestamp ), |
|
sign = -1 === Math.sign( timeZoneOffset ) ? '' : '+'; |
|
|
|
|
|
timeZoneAbbreviation = _x( 'GMT', 'Events widget offset prefix' ) + sign + ( timeZoneOffset / 60 ); |
|
} |
|
|
|
return timeZoneAbbreviation; |
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getFormattedDate: function( startDate, endDate, timeZone ) { |
|
var formattedDate; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var singleDayEvent = __( 'l, M j, Y' ), |
|
|
|
multipleDayEvent = __( '%1$s %2$d–%3$d, %4$d' ), |
|
|
|
multipleMonthEvent = __( '%1$s %2$d – %3$s %4$d, %5$d' ); |
|
|
|
|
|
if ( ! endDate || format( 'Y-m-d', startDate ) === format( 'Y-m-d', endDate ) ) { |
|
formattedDate = dateI18n( singleDayEvent, startDate, timeZone ); |
|
|
|
|
|
} else if ( format( 'Y-m', startDate ) === format( 'Y-m', endDate ) ) { |
|
formattedDate = sprintf( |
|
multipleDayEvent, |
|
dateI18n( _x( 'F', 'upcoming events month format' ), startDate, timeZone ), |
|
dateI18n( _x( 'j', 'upcoming events day format' ), startDate, timeZone ), |
|
dateI18n( _x( 'j', 'upcoming events day format' ), endDate, timeZone ), |
|
dateI18n( _x( 'Y', 'upcoming events year format' ), endDate, timeZone ) |
|
); |
|
|
|
|
|
} else { |
|
formattedDate = sprintf( |
|
multipleMonthEvent, |
|
dateI18n( _x( 'F', 'upcoming events month format' ), startDate, timeZone ), |
|
dateI18n( _x( 'j', 'upcoming events day format' ), startDate, timeZone ), |
|
dateI18n( _x( 'F', 'upcoming events month format' ), endDate, timeZone ), |
|
dateI18n( _x( 'j', 'upcoming events day format' ), endDate, timeZone ), |
|
dateI18n( _x( 'Y', 'upcoming events year format' ), endDate, timeZone ) |
|
); |
|
} |
|
|
|
return formattedDate; |
|
} |
|
}; |
|
|
|
if ( $( '#dashboard_primary' ).is( ':visible' ) ) { |
|
app.init(); |
|
} else { |
|
$( document ).on( 'postbox-toggled', function( event, postbox ) { |
|
var $postbox = $( postbox ); |
|
|
|
if ( 'dashboard_primary' === $postbox.attr( 'id' ) && $postbox.is( ':visible' ) ) { |
|
app.init(); |
|
} |
|
}); |
|
} |
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
window.communityEventsData.l10n = window.communityEventsData.l10n || { |
|
enter_closest_city: '', |
|
error_occurred_please_try_again: '', |
|
attend_event_near_generic: '', |
|
could_not_locate_city: '', |
|
city_updated: '' |
|
}; |
|
|
|
window.communityEventsData.l10n = window.wp.deprecateL10nObject( 'communityEventsData.l10n', window.communityEventsData.l10n, '5.6.0' ); |
|
|