/* eslint-disable no-underscore-dangle */ ( function () { 'use strict'; /** * Renders a Card model and updates when it does. * * @class mw.cards.CardView * @param {mw.cards.CardModel} model */ function CardView( model ) { /** * @property {mw.cards.CardModel} */ this.model = model; // listen to model changes and re-render the view this.model.on( 'change', this.render.bind( this ) ); /** * @property {jQuery} */ this.$el = $( this._render() ); } OO.initClass( CardView ); /** * Replace the html of this.$el with a newly rendered html using the model * attributes. */ CardView.prototype.render = function () { this.$el.replaceWith( this._render() ); }; /** * Renders the template using the model attributes. * * @ignore * @return {string} */ CardView.prototype._render = function () { var $listItem = $( '
  • ' ), attributes = $.extend( {}, this.model.attributes ); attributes.thumbnailUrl = CSS.escape( attributes.thumbnailUrl ); $listItem.attr( { title: attributes.title, class: 'ext-related-articles-card' } ); $listItem.append( $( '
    ' ) .addClass( 'ext-related-articles-card-thumb' ) .css( 'background-image', attributes.hasThumbnail ? 'url(' + attributes.thumbnailUrl + ')' : null ), $( '' ) .attr( { href: attributes.url, 'aria-hidden': 'true', tabindex: -1 } ), $( '
    ' ) .attr( { class: 'ext-related-articles-card-detail' } ) .append( $( '

    ' ).append( $( '' ) .attr( { href: attributes.url } ) .text( attributes.title ) ), $( '

    ' ) .attr( { class: 'ext-related-articles-card-extract' } ) .text( attributes.extract ) ) ); return $listItem; }; mw.cards.CardView = CardView; }() );