끌어서 놓기 후 위젯 양식 업데이트 (WP 저장 버그)


15

몇 달 전에 ( WordPress trac (Widget Instance Form Update Bug) ) 에 대한 버그 보고서를 게시 했으며 여기에 대해 작성하려고 생각했습니다. 어쩌면 누군가 나 보다이 문제에 대한 더 나은 해결책이있을 수 있습니다.

기본적으로 문제는 위젯을 사이드 바에 놓으면 저장을 수동으로 누르거나 페이지를 다시로드 할 때까지 위젯 양식이 업데이트되지 않는다는 것입니다.

이것은 form()(저장 버튼을 누를 때까지) 위젯 인스턴스 ID에 의존 하는 함수의 모든 코드를 사용할 수 없게 만듭니다 . ajax 요청, 색상 선택기와 같은 jQuery 등의 모든 기능은 위젯 인스턴스가 아직 초기화되지 않은 것처럼 보이기 때문에 즉시 작동하지 않습니다.

더러운 문제는 livequery 와 같은 것을 사용하여 저장 버튼을 자동으로 트리거하는 것 입니다 .

$("#widgets-right .needfix").livequery(function(){
  var widget = $(this).closest('div.widget');
  wpWidgets.save(widget, 0, 1, 0);
  return false;
});

위젯 인스턴스가 초기화되지 않은 경우 .needfix클래스를 추가하십시오 form().

 <div <?php if(!is_numeric($this->number)): ?>class="needfix"<?php endif; ?>
   ...
 </div>

이 솔루션의 한 가지 단점은 등록 된 위젯이 많을 경우 라이브 쿼리가 초당 DOM 변경 사항을 확인하기 때문에 브라우저가 많은 CPU를 소비한다는 것입니다 (특별히 테스트하지 않았으므로 내 가정 일뿐입니다).

버그를 해결하는 더 좋은 방법에 대한 제안 사항이 있습니까?


전체 저장 제출을 트리거하는 대신, 저장 단추를 누르면 필요한 ID를 제공하기 위해 트리거하는 내부를 살펴보고 해당 코드를 분리하고 대신 삭제 조작의 끝에서 호출하는 것이 더 합리적이지 않습니까?
hakre

답변:


5

나는 최근에 비슷한 상황으로 싸웠다. 위젯의 Ajax는 농담이 아닙니다! 여러 인스턴스에서 작업을 수행하려면 꽤 미친 코드를 작성해야합니다. 라이브 쿼리에 익숙하지 않지만 매초 DOM을 검사한다고 말하면 덜 강렬한 해결책이있을 수 있습니다.

var get_widget_id = function ( selector ) {
    var selector, widget_id = false;
    var id_attr = $( selector ).closest( 'form' ).find( 'input[name="widget-id"]' ).val();
    if ( typeof( id_attr ) != 'undefined' ) {
        var parts = id_attr.split( '-' );
        widget_id = parts[parts.length-1];
    }
    return parseInt( widget_id );
};

이 함수에 선택기 또는 jQuery 객체를 전달하면 현재 인스턴스의 인스턴스 ID를 반환합니다. 이 문제와 관련하여 다른 방법을 찾을 수 없었습니다. 내가 유일하지 않다는게 다행이다 :)


7

나는 내 자신의 질문에 대답하는 것을 좋아하지 않지만 이것이 지금까지 가장 좋은 해결책이라고 생각합니다.

$('#widgets-right').ajaxComplete(function(event, XMLHttpRequest, ajaxOptions){

  // determine which ajax request is this (we're after "save-widget")
  var request = {}, pairs = ajaxOptions.data.split('&'), i, split, widget;

  for(i in pairs){
    split = pairs[i].split('=');
    request[decodeURIComponent(split[0])] = decodeURIComponent(split[1]);
  }

  // only proceed if this was a widget-save request
  if(request.action && (request.action === 'save-widget')){

    // locate the widget block
    widget = $('input.widget-id[value="' + request['widget-id'] + '"]').parents('.widget');

    // trigger manual save, if this was the save request 
    // and if we didn't get the form html response (the wp bug)
    if(!XMLHttpRequest.responseText)
      wpWidgets.save(widget, 0, 1, 0);

    // we got an response, this could be either our request above,
    // or a correct widget-save call, so fire an event on which we can hook our js
    else
      $(document).trigger('saved_widget', widget);

  }

});

위젯 저장 요청이 완료된 직후 (html 형식의 응답이없는 경우) 위젯 저장 아약스 요청이 실행됩니다.

jQuery(document).ready()함수에 추가해야 합니다.

이제 위젯 양식 함수로 추가 된 새 DOM 요소에 자바 스크립트 함수를 쉽게 다시 첨부하려면 "saved_widget"이벤트에 바인딩하십시오.

$(document).bind('saved_widget', function(event, widget){
  // For example: $(widget).colorpicker() ....
});

3
jQuery 1.8부터 .ajaxComplete () 메소드는 문서에만 첨부해야합니다. - api.jquery.com/ajaxComplete은 따라서 당신의 조각의 첫 번째 줄 읽어야합니다 : $ (문서) .ajaxComplete (함수 (이벤트, XMLHttpRequest의, ajaxOptions를) {적어도 3.6 WP를위한
데이빗 레잉

3

최근에이 문제에 부딪 쳤고 기존의 "widgets.php"인터페이스에서 모든 자바 스크립트 초기화는 기존 위젯 ( #widgets-rightdiv 에있는 위젯)에 대해 직접 실행 widget-added되고 새로 추가 된 위젯에 대한 이벤트를 통해 간접적으로 실행되어야합니다 . 반면 커 스터 마이저 "customize.php"인터페이스에서 모든 위젯 (기존 및 새로운)이 widget-added이벤트 로 전송 되므로 여기서 초기화 할 수 있습니다. 이를 기반으로 다음은 WP_Widget하나의 함수를 재정 의하여 위젯 양식에 자바 스크립트 초기화를 쉽게 추가 할 수 있는 클래스 확장입니다 form_javascript_init().

class WPSE_JS_Widget extends WP_Widget { // For widgets using javascript in form().
    var $js_ns = 'wpse'; // Javscript namespace.
    var $js_init_func = ''; // Name of javascript init function to call. Initialized in constructor.
    var $is_customizer = false; // Whether in customizer or not. Set on 'load-customize.php' action (if any).

    public function __construct( $id_base, $name, $widget_options = array(), $control_options = array(), $js_ns = '' ) {
        parent::__construct( $id_base, $name, $widget_options, $control_options );
        if ( $js_ns ) {
            $this->js_ns = $js_ns;
        }
        $this->js_init_func = $this->js_ns . '.' . $this->id_base . '_init';
        add_action( 'load-widgets.php', array( $this, 'load_widgets_php' ) );
        add_action( 'load-customize.php', array( $this, 'load_customize_php' ) );
    }

    // Called on 'load-widgets.php' action added in constructor.
    public function load_widgets_php() {
        add_action( 'in_widget_form', array( $this, 'form_maybe_call_javascript_init' ) );
        add_action( 'admin_print_scripts', array( $this, 'admin_print_scripts' ), PHP_INT_MAX );
    }

    // Called on 'load-customize.php' action added in constructor.
    public function load_customize_php() {
        $this->is_customizer = true;
        // Don't add 'in_widget_form' action as customizer sends 'widget-added' event to existing widgets too.
        add_action( 'admin_print_scripts', array( $this, 'admin_print_scripts' ), PHP_INT_MAX );
    }

    // Form javascript initialization code here. "widget" and "widget_id" available.
    public function form_javascript_init() {
    }

    // Called on 'in_widget_form' action (ie directly after form()) when in traditional widgets interface.
    // Run init directly unless we're newly added.
    public function form_maybe_call_javascript_init( $callee_this ) {
        if ( $this === $callee_this && '__i__' !== $this->number ) {
            ?>
            <script type="text/javascript">
            jQuery(function ($) {
                <?php echo $this->js_init_func; ?>(null, $('#widgets-right [id$="<?php echo $this->id; ?>"]'));
            });
            </script>
            <?php
        }
    }

    // Called on 'admin_print_scripts' action added in constructor.
    public function admin_print_scripts() {
        ?>
        <script type="text/javascript">
        var <?php echo $this->js_ns; ?> = <?php echo $this->js_ns; ?> || {}; // Our namespace.
        jQuery(function ($) {
            <?php echo $this->js_init_func; ?> = function (e, widget) {
                var widget_id = widget.attr('id');
                if (widget_id.search(/^widget-[0-9]+_<?php echo $this->id_base; ?>-[0-9]+$/) === -1) { // Check it's our widget.
                    return;
                }
                <?php $this->form_javascript_init(); ?>
            };
            $(document).on('widget-added', <?php echo $this->js_init_func; ?>); // Call init on widget add.
        });
        </script>
        <?php
    }
}

이것을 사용하는 예제 테스트 위젯 :

class WPSE_Test_Widget extends WPSE_JS_Widget {
    var $defaults; // Form defaults. Initialized in constructor.

    function __construct() {
        parent::__construct( 'wpse_test_widget', __( 'WPSE: Test Widget' ), array( 'description' => __( 'Test init of javascript.' ) ) );
        $this->defaults = array(
            'one' => false,
            'two' => false,
            'color' => '#123456',
        );
        add_action( 'admin_enqueue_scripts', function ( $hook_suffix ) {
            if ( ! in_array( $hook_suffix, array( 'widgets.php', 'customize.php' ) ) ) return;
            wp_enqueue_script( 'wp-color-picker' ); wp_enqueue_style( 'wp-color-picker' );
        } );
    }

    function widget( $args, $instance ) {
        extract( $args );
        extract( wp_parse_args( $instance, $this->defaults ) );

        echo $before_widget, '<p style="color:', $color, ';">', $two ? 'Two' : ( $one ? 'One' : 'None' ), '</p>', $after_widget;
    }

    function update( $new_instance, $old_instance ) {
        $new_instance['one'] = isset( $new_instance['one'] ) ? 1 : 0;
        $new_instance['two'] = isset( $new_instance['two'] ) ? 1 : 0;
        return $new_instance;
    }

    function form( $instance ) {
        extract( wp_parse_args( $instance, $this->defaults ) );
        ?>
        <div class="wpse_test">
            <p class="one">
                <input class="checkbox" type="checkbox" <?php checked( $one ); disabled( $two ); ?> id="<?php echo $this->get_field_id( 'one' ); ?>" name="<?php echo $this->get_field_name( 'one' ); ?>" />
                <label for="<?php echo $this->get_field_id( 'one' ); ?>"><?php _e( 'One?' ); ?></label>
            </p>
            <p class="two">
                <input class="checkbox" type="checkbox" <?php checked( $two ); disabled( $one ); ?> id="<?php echo $this->get_field_id( 'two' ); ?>" name="<?php echo $this->get_field_name( 'two' ); ?>" />
                <label for="<?php echo $this->get_field_id( 'two' ); ?>"><?php _e( 'Two?' ); ?></label>
            </p>
            <p class="color">
                <input type="text" value="<?php echo htmlspecialchars( $color ); ?>" id="<?php echo $this->get_field_id( 'color' ); ?>" name="<?php echo $this->get_field_name( 'color' ); ?>" />
            </p>
        </div>
        <?php
    }

    // Form javascript initialization code here. "widget" and "widget_id" available.
    function form_javascript_init() {
        ?>
            $('.one input', widget).change(function (event) { $('.two input', widget).prop('disabled', this.checked); });
            $('.two input', widget).change(function (event) { $('.one input', widget).prop('disabled', this.checked); });
            $('.color input', widget).wpColorPicker({
                <?php if ( $this->is_customizer ) ?> change: _.throttle( function () { $(this).trigger('change'); }, 1000, {leading: false} )
            });
        <?php
    }
}

add_action( 'widgets_init', function () {
    register_widget( 'WPSE_Test_Widget' );
} );

2

Wordpress 3.9에 도움이 될만한 것이 있다고 생각합니다. 그것은이다 위젯 업데이트 콜백. 다음과 같이 사용하십시오 (커피 스크립트).

$(document).on 'widget-updated', (event, widget) ->
    doWhatINeed() if widget[0].id.match(/my_widget_name/)
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.