javascript 디자인 모드 - 관찰자 모드(observer pattern)

2103 단어
구독 발표 모델이라고도 하는데 다음은pubsubz가 실현하고 어떠한 라이브러리에도 의존하지 않습니다.
(function ( window, doc, undef ) {
    // topics datastructure: 
    // {
    //   topic1: [
    //      subscribe1:
    //      {
    //          token: subUid1, callbackfunction: func1
    //      },
    //      subscribeN:
    //      {
    //          token: subUidN, callbackfunction: funcN
    //      }],
    //   topicN: []
    // }
    var topics = {},
        subUid = -1,
        pubsubz ={};

    // publish or broadcast events of interest
    // with  a specific topic name and arguments
    // such as the data to pass along
    pubsubz.publish = function ( topic, args ) {
        if (!topics[topic]) {
            return false;
        }
        setTimeout(function () {
            var subscribers = topics[topic],
                len = subscribers ? subscribers.length : 0;

            while (len--) {
                subscribers[len].func(topic, args);
            }
        }, 0);
        return true;

    };

    // Subscribe to events of interest
    // with a specific topic name and a
    // callback function, to be executed
    // when the topic/event is observed
    pubsubz.subscribe = function ( topic, func ) {
        if (!topics[topic]) {
            topics[topic] = [];
        }
        var token = (++subUid).toString();
        topics[topic].push({
            token: token,
            func: func
        });
        return token;
    };

    // Unsubscribe from a specific
    // topic, based on a tokenized reference
    // to the subscription
    pubsubz.unsubscribe = function ( token ) {
        for (var m in topics) {
            if (topics[m]) {
                for (var i = 0, j = topics[m].length; i < j; i++) {
                    if (topics[m][i].token === token) {
                        topics[m].splice(i, 1);
                        return token;
                    }
                }
            }
        }
        return false;
    };

    getPubSubz = function(){
        return pubsubz;
    };

    window.pubsubz = getPubSubz();

}( this, this.document ));

좋은 웹페이지 즐겨찾기