Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 | 1x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 34x 32x 34x 3x 34x 2x 34x 2x 34x 30x 34x 3x 34x 34x 1x 1x 4x 4x 1x 4x 1x 4x 2x 4x 2x 4x 1x 116x 106x 10x 1x 4x 4x 4x 4x 4x 4x 4x 3x 4x 1x 4x 1x 4x 1x 4x 1x 4x 1x 62x 61x 62x 1x 43x 37x 37x 32x 37x 37x 1x 30x 29x 29x 28x 29x 29x 1x 3x 2x 2x 2x 1x 2x 1x 1x 1x 1x 2x 1x 1x 1x 1x 7x 4x 7x 6x 6x 4x 6x 1x 31x 30x 30x 30x 1x 4x 3x 3x 3x 1x 2x 1x 1x 1x 1x 2x 1x 1x 1x 1x 153x 1x 146x 1x 17x 1x 28x 1x 67x 1x 34x 1x 16x 1x 16x 1x 34x 34x 1x 34x 34x 1x 20x 1x 17x 1x 4x 1x 3x 1x 5x 1x 5x 1x 9x 9x 9x 9x 7x 7x 9x 6x 6x 9x 6x 6x 4x 2x 9x 4x 4x 4x 4x 4x 2x 2x 2x 2x 2x 9x 1x 3x 3x 3x 3x 3x | /*! * VisualEditor DataModel Scalable class. * * @copyright See AUTHORS.txt */ /** * Scalable object. * * @class * @mixes OO.EventEmitter * * @constructor * @param {Object} [config] Configuration options * @param {boolean} [config.fixedRatio=true] Object has a fixed aspect ratio * @param {Object} [config.currentDimensions] Current dimensions, width & height * @param {Object} [config.originalDimensions] Original dimensions, width & height * @param {Object} [config.defaultDimensions] Default dimensions, width & height * @param {boolean} [config.isDefault] Object is using its default dimensions * @param {Object} [config.minDimensions] Minimum dimensions, width & height * @param {Object} [config.maxDimensions] Maximum dimensions, width & height * @param {boolean} [config.enforceMin=true] Enforce the minimum dimensions * @param {boolean} [config.enforceMax=true] Enforce the maximum dimensions */ ve.dm.Scalable = function VeDmScalable( config ) { config = ve.extendObject( { fixedRatio: true, enforceMin: true, enforceMax: true }, config ); // Mixin constructors OO.EventEmitter.call( this ); // Computed properties this.ratio = null; this.valid = null; this.defaultSize = false; // Initialize this.currentDimensions = null; this.defaultDimensions = null; this.originalDimensions = null; this.minDimensions = null; this.maxDimensions = null; // Properties this.fixedRatio = config.fixedRatio; if ( config.currentDimensions ) { this.setCurrentDimensions( config.currentDimensions ); } if ( config.originalDimensions ) { this.setOriginalDimensions( config.originalDimensions ); } if ( config.defaultDimensions ) { this.setDefaultDimensions( config.defaultDimensions ); } if ( config.isDefault ) { this.toggleDefault( !!config.isDefault ); } if ( config.minDimensions ) { this.setMinDimensions( config.minDimensions ); } if ( config.maxDimensions ) { this.setMaxDimensions( config.maxDimensions ); } this.setEnforcedMin( config.enforceMin ); this.setEnforcedMax( config.enforceMax ); }; /* Inheritance */ OO.mixinClass( ve.dm.Scalable, OO.EventEmitter ); /* Events */ /** * Current changed * * @event ve.dm.Scalable#currentSizeChange * @param {Object} currentDimensions Current dimensions width and height */ /** * Default size or state changed * * @event ve.dm.Scalable#defaultSizeChange * @param {boolean} isDefault The size is default */ /** * Original size changed * * @event ve.dm.Scalable#originalSizeChange * @param {Object} originalDimensions Original dimensions width and height */ /** * Min size changed * * @event ve.dm.Scalable#minSizeChange * @param {Object} minDimensions Min dimensions width and height */ /** * Max size changed * * @event ve.dm.Scalable#maxSizeChange * @param {Object} maxDimensions Max dimensions width and height */ /** * Calculate the dimensions from a given value of either width or height. * This method doesn't take into account any restrictions of minimum or maximum, * it simply calculates the new dimensions according to the aspect ratio in case * it exists. * * If aspect ratio does not exist, or if the original object is empty, or if the * original object is fully specified, the object is returned as-is without * calculations. * * @param {Object} dimensions Dimensions object with either width or height * if both are given, the object will be returned as-is. * @param {number} [dimensions.width] The width of the image * @param {number} [dimensions.height] The height of the image * @param {number} [ratio] The image width/height ratio, if it exists * @return {Object} Dimensions object with width and height */ ve.dm.Scalable.static.getDimensionsFromValue = function ( dimensions, ratio ) { dimensions = ve.copy( dimensions ); // Normalize for 'empty' values that are specifically given // so if '' is explicitly given, it should be translated to 0 if ( dimensions.width === '' ) { dimensions.width = 0; } if ( dimensions.height === '' ) { dimensions.height = 0; } // Calculate the opposite size if needed if ( !dimensions.height && ratio !== null && +dimensions.width ) { dimensions.height = Math.round( dimensions.width / ratio ); } if ( !dimensions.width && ratio !== null && +dimensions.height ) { dimensions.width = Math.round( dimensions.height * ratio ); } return dimensions; }; /** * Check if an object is a dimensions object. * Make sure that if width or height are set, they are not 'undefined'. * * @param {Object} dimensions A dimensions object to test * @return {boolean} Valid or invalid dimensions object */ ve.dm.Scalable.static.isDimensionsObjectValid = function ( dimensions ) { if ( dimensions && !ve.isEmptyObject( dimensions ) && ( dimensions.width !== undefined || dimensions.height !== undefined ) ) { return true; } return false; }; /* Methods */ /** * Clone the current scalable object * * @return {ve.dm.Scalable} Cloned scalable object */ ve.dm.Scalable.prototype.clone = function () { const currentDimensions = this.getCurrentDimensions(), originalDimensions = this.getOriginalDimensions(), defaultDimensions = this.getDefaultDimensions(), minDimensions = this.getMinDimensions(), maxDimensions = this.getMaxDimensions(), config = { isDefault: !!this.isDefault(), enforceMin: !!this.isEnforcedMin(), enforceMax: !!this.isEnforcedMax() }; if ( currentDimensions ) { config.currentDimensions = ve.copy( currentDimensions ); } if ( originalDimensions ) { config.originalDimensions = ve.copy( originalDimensions ); } if ( defaultDimensions ) { config.defaultDimensions = ve.copy( defaultDimensions ); } if ( minDimensions ) { config.minDimensions = ve.copy( minDimensions ); } if ( maxDimensions ) { config.maxDimensions = ve.copy( maxDimensions ); } return new this.constructor( config ); }; /** * Set the fixed aspect ratio from specified dimensions. * * @param {Object} dimensions Dimensions object with width & height */ ve.dm.Scalable.prototype.setRatioFromDimensions = function ( dimensions ) { if ( dimensions && dimensions.width && dimensions.height ) { this.ratio = dimensions.width / dimensions.height; } this.valid = null; }; /** * Set the current dimensions * * Also sets the aspect ratio if not set and in fixed ratio mode. * * @param {Object} dimensions Dimensions object with width & height * @fires ve.dm.Scalable#currentSizeChange */ ve.dm.Scalable.prototype.setCurrentDimensions = function ( dimensions ) { if ( this.constructor.static.isDimensionsObjectValid( dimensions ) && !ve.compare( dimensions, this.getCurrentDimensions() ) ) { this.currentDimensions = ve.copy( dimensions ); // Only use current dimensions for ratio if it isn't set if ( this.fixedRatio && !this.ratio ) { this.setRatioFromDimensions( this.getCurrentDimensions() ); } this.valid = null; this.emit( 'currentSizeChange', this.getCurrentDimensions() ); } }; /** * Set the original dimensions * * Also resets the aspect ratio if in fixed ratio mode. * * @param {Object} dimensions Dimensions object with width & height * @fires ve.dm.Scalable#originalSizeChange */ ve.dm.Scalable.prototype.setOriginalDimensions = function ( dimensions ) { if ( this.constructor.static.isDimensionsObjectValid( dimensions ) && !ve.compare( dimensions, this.getOriginalDimensions() ) ) { this.originalDimensions = ve.copy( dimensions ); // Always overwrite ratio if ( this.fixedRatio ) { this.setRatioFromDimensions( this.getOriginalDimensions() ); } this.valid = null; this.emit( 'originalSizeChange', this.getOriginalDimensions() ); } }; /** * Set the default dimensions * * @param {Object} dimensions Dimensions object with width & height * @fires ve.dm.Scalable#defaultSizeChange */ ve.dm.Scalable.prototype.setDefaultDimensions = function ( dimensions ) { if ( this.constructor.static.isDimensionsObjectValid( dimensions ) && !ve.compare( dimensions, this.getDefaultDimensions() ) ) { this.defaultDimensions = ve.copy( dimensions ); this.valid = null; this.emit( 'defaultSizeChange', this.isDefault() ); } }; /** * Reset and remove the default dimensions * * @fires ve.dm.Scalable#defaultSizeChange */ ve.dm.Scalable.prototype.clearDefaultDimensions = function () { if ( this.defaultDimensions !== null ) { this.defaultDimensions = null; this.valid = null; this.emit( 'defaultSizeChange', this.isDefault() ); } }; /** * Reset and remove the default dimensions * * @fires ve.dm.Scalable#originalSizeChange */ ve.dm.Scalable.prototype.clearOriginalDimensions = function () { if ( this.originalDimensions !== null ) { this.originalDimensions = null; this.valid = null; this.emit( 'originalSizeChange', this.isDefault() ); } }; /** * Toggle the default size setting, or set it to particular value * * @param {boolean} [isDefault] Default or not, toggles if unset * @fires ve.dm.Scalable#defaultSizeChange */ ve.dm.Scalable.prototype.toggleDefault = function ( isDefault ) { if ( isDefault === undefined ) { isDefault = !this.isDefault(); } if ( this.isDefault() !== isDefault ) { this.defaultSize = isDefault; if ( isDefault ) { this.setCurrentDimensions( this.getDefaultDimensions() ); } this.emit( 'defaultSizeChange', this.isDefault() ); } }; /** * Set the minimum dimensions * * @param {Object} dimensions Dimensions object with width & height * @fires ve.dm.Scalable#minSizeChange */ ve.dm.Scalable.prototype.setMinDimensions = function ( dimensions ) { if ( this.constructor.static.isDimensionsObjectValid( dimensions ) && !ve.compare( dimensions, this.getMinDimensions() ) ) { this.minDimensions = ve.copy( dimensions ); this.valid = null; this.emit( 'minSizeChange', dimensions ); } }; /** * Set the maximum dimensions * * @param {Object} dimensions Dimensions object with width & height * @fires ve.dm.Scalable#maxSizeChange */ ve.dm.Scalable.prototype.setMaxDimensions = function ( dimensions ) { if ( this.constructor.static.isDimensionsObjectValid( dimensions ) && !ve.compare( dimensions, this.getMaxDimensions() ) ) { this.maxDimensions = ve.copy( dimensions ); this.emit( 'maxSizeChange', dimensions ); this.valid = null; } }; /** * Clear the minimum dimensions * * @fires ve.dm.Scalable#minSizeChange */ ve.dm.Scalable.prototype.clearMinDimensions = function () { if ( this.minDimensions !== null ) { this.minDimensions = null; this.valid = null; this.emit( 'minSizeChange', this.minDimensions ); } }; /** * Clear the maximum dimensions * * @fires ve.dm.Scalable#maxSizeChange */ ve.dm.Scalable.prototype.clearMaxDimensions = function () { if ( this.maxDimensions !== null ) { this.maxDimensions = null; this.valid = null; this.emit( 'maxSizeChange', this.maxDimensions ); } }; /** * Get the original dimensions * * @return {Object} Dimensions object with width & height */ ve.dm.Scalable.prototype.getCurrentDimensions = function () { return this.currentDimensions; }; /** * Get the original dimensions * * @return {Object} Dimensions object with width & height */ ve.dm.Scalable.prototype.getOriginalDimensions = function () { return this.originalDimensions; }; /** * Get the default dimensions * * @return {Object} Dimensions object with width & height */ ve.dm.Scalable.prototype.getDefaultDimensions = function () { return this.defaultDimensions; }; /** * Get the default state of the scalable object * * @return {boolean} Default size or custom */ ve.dm.Scalable.prototype.isDefault = function () { return this.defaultSize; }; /** * Get the minimum dimensions * * @return {Object} Dimensions object with width & height */ ve.dm.Scalable.prototype.getMinDimensions = function () { return this.minDimensions; }; /** * Get the maximum dimensions * * @return {Object} Dimensions object with width & height */ ve.dm.Scalable.prototype.getMaxDimensions = function () { return this.maxDimensions; }; /** * The object enforces the minimum dimensions when scaling * * @return {boolean} Enforces the minimum dimensions */ ve.dm.Scalable.prototype.isEnforcedMin = function () { return this.enforceMin; }; /** * The object enforces the maximum dimensions when scaling * * @return {boolean} Enforces the maximum dimensions */ ve.dm.Scalable.prototype.isEnforcedMax = function () { return this.enforceMax; }; /** * Set enforcement of minimum dimensions * * @param {boolean} enforceMin Enforces the minimum dimensions */ ve.dm.Scalable.prototype.setEnforcedMin = function ( enforceMin ) { this.valid = null; this.enforceMin = !!enforceMin; }; /** * Set enforcement of maximum dimensions * * @param {boolean} enforceMax Enforces the maximum dimensions */ ve.dm.Scalable.prototype.setEnforcedMax = function ( enforceMax ) { this.valid = null; this.enforceMax = !!enforceMax; }; /** * Get the fixed aspect ratio (width/height) * * @return {number} Aspect ratio */ ve.dm.Scalable.prototype.getRatio = function () { return this.ratio; }; /** * Check if the object has a fixed ratio * * @return {boolean} The object has a fixed ratio */ ve.dm.Scalable.prototype.isFixedRatio = function () { return this.fixedRatio; }; /** * Get the current scale of the object * * @return {number|null} A scale (1=100%), or null if not applicable */ ve.dm.Scalable.prototype.getCurrentScale = function () { if ( !this.isFixedRatio() || !this.getCurrentDimensions() || !this.getOriginalDimensions() ) { return null; } return this.getCurrentDimensions().width / this.getOriginalDimensions().width; }; /** * Check if current dimensions are smaller than minimum dimensions in either direction * * Only possible if enforceMin is false. * * @return {boolean} Current dimensions are greater than maximum dimensions */ ve.dm.Scalable.prototype.isTooSmall = function () { return !!( this.getCurrentDimensions() && this.getMinDimensions() && ( this.getCurrentDimensions().width < this.getMinDimensions().width || this.getCurrentDimensions().height < this.getMinDimensions().height ) ); }; /** * Check if current dimensions are greater than maximum dimensions in either direction * * Only possible if enforceMax is false. * * @return {boolean} Current dimensions are greater than maximum dimensions */ ve.dm.Scalable.prototype.isTooLarge = function () { return !!( this.getCurrentDimensions() && this.getMaxDimensions() && ( this.getCurrentDimensions().width > this.getMaxDimensions().width || this.getCurrentDimensions().height > this.getMaxDimensions().height ) ); }; /** * Get a set of dimensions bounded by current restrictions, from specified dimensions * * @param {Object} dimensions Dimensions object with width & height * @param {number} [grid] Optional grid size to snap to * @return {Object} Dimensions object with width & height */ ve.dm.Scalable.prototype.getBoundedDimensions = function ( dimensions, grid ) { const minDimensions = this.isEnforcedMin() && this.getMinDimensions(), maxDimensions = this.isEnforcedMax() && this.getMaxDimensions(); dimensions = ve.copy( dimensions ); // Bound to min/max if ( minDimensions ) { dimensions.width = Math.max( dimensions.width, this.minDimensions.width ); dimensions.height = Math.max( dimensions.height, this.minDimensions.height ); } if ( maxDimensions ) { dimensions.width = Math.min( dimensions.width, this.maxDimensions.width ); dimensions.height = Math.min( dimensions.height, this.maxDimensions.height ); } // Bound to ratio if ( this.isFixedRatio() ) { const ratio = dimensions.width / dimensions.height; if ( ratio < this.getRatio() ) { dimensions.height = Math.round( dimensions.width / this.getRatio() ); } else { dimensions.width = Math.round( dimensions.height * this.getRatio() ); } } // Snap to grid if ( grid ) { let snapMin = minDimensions ? Math.ceil( minDimensions.width / grid ) : -Infinity; let snapMax = maxDimensions ? Math.floor( maxDimensions.width / grid ) : Infinity; let snap = Math.round( dimensions.width / grid ); dimensions.width = Math.max( Math.min( snap, snapMax ), snapMin ) * grid; if ( this.isFixedRatio() ) { // If the ratio is fixed we can't snap both to the grid, so just snap the width dimensions.height = Math.round( dimensions.width / this.getRatio() ); } else { snapMin = minDimensions ? Math.ceil( minDimensions.height / grid ) : -Infinity; snapMax = maxDimensions ? Math.floor( maxDimensions.height / grid ) : Infinity; snap = Math.round( dimensions.height / grid ); dimensions.height = Math.max( Math.min( snap, snapMax ), snapMin ) * grid; } } return dimensions; }; /** * Checks whether the current dimensions are numeric and within range * * @return {boolean} Current dimensions are valid */ ve.dm.Scalable.prototype.isCurrentDimensionsValid = function () { const dimensions = this.getCurrentDimensions(), minDimensions = this.isEnforcedMin() && !ve.isEmptyObject( this.getMinDimensions() ) && this.getMinDimensions(), maxDimensions = this.isEnforcedMax() && !ve.isEmptyObject( this.getMaxDimensions() ) && this.getMaxDimensions(); this.valid = ( !!dimensions && // Dimensions must be non-zero +dimensions.width && +dimensions.height && ( !minDimensions || ( dimensions.width >= minDimensions.width && dimensions.height >= minDimensions.height ) ) && ( !maxDimensions || ( dimensions.width <= maxDimensions.width && dimensions.height <= maxDimensions.height ) ) ); return this.valid; }; |