Web Component: j-InfoWindows


  • Info
  • HTML
  • JS
  • CSS
  • Meta

j-InfoWindows

  • Works only with +v18
  • Supports mobile devices
  • Supports touches
  • Movable
  • Resizable

Configuration:

  • reoffsetresize {Boolean} all windows will be re-offset according to main window dimension (default: true)

The InfoWindows component expects Array of objects.

// Component declaration
var win = {

    // Component ID
    id: 'WINDOW_ID',

    // NEW: cachekey for similar windows
    // Optional, default: window ID
    cachekey: 'WINDOW_ID',

    // Positioning
    // You can define specific display size and if the display size is not specified then the window tries to find a size for larger display
    html: 'THE CONTENT OF WINDOW', // or can be raw HTMLElement

    offset: { x: 200, y: 100, width: 600, height: 400, minwidth: 200, minheight: 200, maxwidth: 1000, maxheight: 1000 }, // minwidth, maxwidth, maxheight, minheight are optional

    // Default settings
    actions: { move: true, close: true, hide: true, resize: true, minimize: true, maximize: true, autosave: false },
    // GOOD TO KNOW:
    // "undefined" close or "close:false" and "hide:true" doesn't destroy the instance of window (it will be hidden only)

    // A window title
    title: 'Title for the window',

    // Handlers (optional):
    destroy: function() {
        // @el {jQuery} a content of the window
        // @this {Instance}

        // is executed when the window is destroyed
    },

    make: function(el) {

        // @el {jQuery} a content of the window
        // @this {Instance}

        // this.meta {Object} a reference to window object
        // this.element {jQuery} a content element of the window
        // this.container {jQuery} a main content element of the window
        // this.main {Object} a reference to "Windows" component
        // this.width {Number} a width of window
        // this.height {Number} a height of the content of the window
        // this.x {Number} offset X
        // this.y {Number} offset Y

        // Methods:
        // this.setsize(width, height);
        // this.setcommand(cmd); Allowed commands: "close", "maximize", "resetmaximize", "togglemaximize", "minimize", "resetminimize", "toggleminimize", "resize", "move", "focus"
        // this.setoffset(x, y);

        // is executed when the window is making
    },

    data: function(type, data, el) {

        // @type {String}
        // @data {Object}
        // @el {jQuery} a content element of the window
        // @this {Instance}

        // is executed when data are sent via SETTER('windows', 'send', 'TYPE', 'DATA')
    },

    resize: function(width, height, el, x, y) {

        // @width {Number}
        // @height {Number}
        // @el {jQuery} a content of the window
        // @this {Instance}

        // is executed when the window is resized
    },

    move: function(x, y, el) {

        // @x {Number}
        // @y {Number}
        // @el {jQuery} a content of the window
        // @this {Instance}

        // is executed when the window is moved
    },

    service: function(counter, el) {

        // @counter {Number} count of calls
        // @el {jQuery} a content of the window
        // @this {Instance}

        // the component will execute this handler each 5 seconds
    }
};

PUSH('infowindows', win);

Methods:

  • component.finditem(window_id) finds the specific window according to ID
  • component.show(window_id) shows a window
  • component.hide(window_id) hides a window
  • component.toggle(window_id) toggles a window
  • component.focus(window_id) focuses a window
  • component.close(window_id) closes a window

Author