| // Copyright 2017 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| import 'chrome://resources/cr_elements/cr_input/cr_input.js'; |
| import 'chrome://resources/cr_elements/md_select.css.js'; |
| import 'chrome://resources/polymer/v3_0/iron-collapse/iron-collapse.js'; |
| import './print_preview_shared.css.js'; |
| import './settings_section.js'; |
| import '../strings.m.js'; |
| |
| import {CrInputElement} from 'chrome://resources/cr_elements/cr_input/cr_input.js'; |
| import {assert} from 'chrome://resources/js/assert_ts.js'; |
| import {loadTimeData} from 'chrome://resources/js/load_time_data.js'; |
| import {WebUiListenerMixin} from 'chrome://resources/cr_elements/web_ui_listener_mixin.js'; |
| import {PolymerElement} from 'chrome://resources/polymer/v3_0/polymer/polymer_bundled.min.js'; |
| |
| import {areRangesEqual, Range} from '../print_preview_utils.js'; |
| |
| import {InputMixin} from './input_mixin.js'; |
| import {getTemplate} from './pages_settings.html.js'; |
| import {SelectMixin} from './select_mixin.js'; |
| import {SettingsMixin} from './settings_mixin.js'; |
| |
| enum PagesInputErrorState { |
| NO_ERROR = 0, |
| INVALID_SYNTAX = 1, |
| OUT_OF_BOUNDS = 2, |
| EMPTY = 3, |
| } |
| |
| export enum PagesValue { |
| ALL = 0, |
| ODDS = 1, |
| EVENS = 2, |
| CUSTOM = 3, |
| } |
| |
| /** |
| * Used in place of Number.parseInt(), to ensure values like '1 2' or '1a2' are |
| * not allowed. |
| * @param value The value to convert to a number. |
| * @return The value converted to a number, or NaN if it cannot be converted. |
| */ |
| function parseIntStrict(value: string): number { |
| if (/^\d+$/.test(value.trim())) { |
| return Number(value); |
| } |
| return NaN; |
| } |
| |
| |
| export interface PrintPreviewPagesSettingsElement { |
| $: { |
| pageSettingsCustomInput: CrInputElement, |
| }; |
| } |
| |
| const PrintPreviewPagesSettingsElementBase = |
| WebUiListenerMixin(InputMixin(SettingsMixin(SelectMixin(PolymerElement)))); |
| |
| export class PrintPreviewPagesSettingsElement extends |
| PrintPreviewPagesSettingsElementBase { |
| static get is() { |
| return 'print-preview-pages-settings'; |
| } |
| |
| static get template() { |
| return getTemplate(); |
| } |
| |
| static get properties() { |
| return { |
| disabled: Boolean, |
| |
| pageCount: { |
| type: Number, |
| observer: 'onPageCountChange_', |
| }, |
| |
| controlsDisabled_: { |
| type: Boolean, |
| computed: 'computeControlsDisabled_(disabled, hasError_)', |
| }, |
| |
| errorState_: { |
| type: Number, |
| reflectToAttribute: true, |
| value: PagesInputErrorState.NO_ERROR, |
| }, |
| |
| hasError_: { |
| type: Boolean, |
| value: false, |
| }, |
| |
| inputString_: { |
| type: String, |
| value: '', |
| }, |
| |
| pagesToPrint_: { |
| type: Array, |
| value() { |
| return []; |
| }, |
| }, |
| |
| rangesToPrint_: { |
| type: Array, |
| computed: 'computeRangesToPrint_(pagesToPrint_)', |
| }, |
| |
| selection_: { |
| type: Number, |
| value: PagesValue.ALL, |
| observer: 'onSelectionChange_', |
| }, |
| |
| /** |
| * Mirroring the enum so that it can be used from HTML bindings. |
| */ |
| pagesValueEnum_: { |
| type: Object, |
| value: PagesValue, |
| }, |
| }; |
| } |
| |
| static get observers() { |
| return [ |
| 'updatePagesToPrint_(inputString_)', |
| 'onRangeChange_(errorState_, rangesToPrint_, settings.pages, ' + |
| 'settings.pagesPerSheet.value)', |
| ]; |
| } |
| |
| disabled: boolean; |
| pageCount: number; |
| private controlsDisabled_: boolean; |
| private errorState_: PagesInputErrorState; |
| private hasError_: boolean; |
| private inputString_: string; |
| private pagesToPrint_: number[]; |
| private rangesToPrint_: Range[]; |
| private selection_: PagesValue; |
| |
| /** |
| * True if the user's last valid input should be restored to the custom |
| * input field. Cleared when the input is set automatically, or the user |
| * manually clears the field. |
| */ |
| private restoreLastInput_: boolean = true; |
| |
| /** |
| * Memorizes the user's last non-custom pages setting. Used when |
| * `PagesValue.ODDS` and `PagesValue.EVEN` become invalid due to a changed |
| * page count. |
| */ |
| private resorationValue_: PagesValue = PagesValue.ALL; |
| |
| override ready() { |
| super.ready(); |
| |
| this.addEventListener('input-change', e => this.onInputChange_(e)); |
| } |
| |
| /** |
| * Initialize |selectedValue| in connectedCallback() since this doesn't |
| * observe settings.pages, because settings.pages is not sticky. |
| */ |
| override connectedCallback() { |
| super.connectedCallback(); |
| |
| this.selectedValue = PagesValue.ALL.toString(); |
| } |
| |
| /** The cr-input field element for InputMixin. */ |
| override getInput() { |
| return this.$.pageSettingsCustomInput; |
| } |
| |
| private setSelectedValue_(value: PagesValue) { |
| this.selectedValue = value.toString(); |
| this.shadowRoot!.querySelector('select')!.dispatchEvent( |
| new CustomEvent('change', {bubbles: true, composed: true})); |
| } |
| |
| private onInputChange_(e: CustomEvent<string>) { |
| if (this.inputString_ !== e.detail) { |
| this.restoreLastInput_ = true; |
| } |
| this.inputString_ = e.detail; |
| } |
| |
| override onProcessSelectChange(value: string) { |
| this.selection_ = parseInt(value, 10); |
| } |
| |
| private onCollapseChanged_() { |
| if (this.selection_ === PagesValue.CUSTOM) { |
| this.$.pageSettingsCustomInput.inputElement.focus(); |
| } |
| } |
| |
| /** |
| * @return Whether the controls should be disabled. |
| */ |
| private computeControlsDisabled_(): boolean { |
| // Disable the input if other settings are responsible for the error state. |
| return !this.hasError_ && this.disabled; |
| } |
| |
| /** |
| * Updates pages to print and error state based on the validity and |
| * current value of the input. |
| */ |
| private updatePagesToPrint_() { |
| if (this.selection_ !== PagesValue.CUSTOM) { |
| this.errorState_ = PagesInputErrorState.NO_ERROR; |
| if (!this.pageCount) { |
| this.pagesToPrint_ = []; |
| return; |
| } |
| |
| const first = this.selection_ === PagesValue.EVENS ? 2 : 1; |
| const step = this.selection_ === PagesValue.ALL ? 1 : 2; |
| assert(first === 1 || this.pageCount !== 1); |
| |
| const length = Math.floor(1 + (this.pageCount - first) / step); |
| this.pagesToPrint_ = Array.from({length}, (_, i) => step * i + first); |
| return; |
| } else if (this.inputString_ === '') { |
| this.errorState_ = PagesInputErrorState.EMPTY; |
| return; |
| } |
| |
| const pages = []; |
| const added: {[page: number]: boolean} = {}; |
| const ranges = this.inputString_.split(/,|\u3001/); |
| const maxPage = this.pageCount; |
| for (const range of ranges) { |
| if (range === '') { |
| this.errorState_ = PagesInputErrorState.INVALID_SYNTAX; |
| this.onRangeChange_(); |
| return; |
| } |
| |
| const limits = range.split('-'); |
| if (limits.length > 2) { |
| this.errorState_ = PagesInputErrorState.INVALID_SYNTAX; |
| this.onRangeChange_(); |
| return; |
| } |
| |
| let min = parseIntStrict(limits[0]); |
| if ((limits[0].length > 0 && Number.isNaN(min)) || min < 1) { |
| this.errorState_ = PagesInputErrorState.INVALID_SYNTAX; |
| this.onRangeChange_(); |
| return; |
| } |
| if (limits.length === 1) { |
| if (min > maxPage) { |
| this.errorState_ = PagesInputErrorState.OUT_OF_BOUNDS; |
| this.onRangeChange_(); |
| return; |
| } |
| if (!added.hasOwnProperty(min)) { |
| pages.push(min); |
| added[min] = true; |
| } |
| continue; |
| } |
| |
| let max = parseIntStrict(limits[1]); |
| if (Number.isNaN(max) && limits[1].length > 0) { |
| this.errorState_ = PagesInputErrorState.INVALID_SYNTAX; |
| this.onRangeChange_(); |
| return; |
| } |
| |
| if (Number.isNaN(min)) { |
| min = 1; |
| } |
| if (Number.isNaN(max)) { |
| max = maxPage; |
| } |
| if (min > max) { |
| this.errorState_ = PagesInputErrorState.INVALID_SYNTAX; |
| this.onRangeChange_(); |
| return; |
| } |
| if (max > maxPage) { |
| this.errorState_ = PagesInputErrorState.OUT_OF_BOUNDS; |
| this.onRangeChange_(); |
| return; |
| } |
| for (let i = min; i <= max; i++) { |
| if (!added.hasOwnProperty(i)) { |
| pages.push(i); |
| added[i] = true; |
| } |
| } |
| } |
| |
| // Page numbers should be sorted to match the order of the pages in the |
| // rendered PDF. |
| pages.sort((left, right) => left - right); |
| |
| this.errorState_ = PagesInputErrorState.NO_ERROR; |
| this.pagesToPrint_ = pages; |
| } |
| |
| private computeRangesToPrint_(): Range[] { |
| if (!this.pagesToPrint_ || this.pagesToPrint_.length === 0 || |
| this.pagesToPrint_[0] === -1 || |
| this.pagesToPrint_.length === this.pageCount) { |
| return []; |
| } |
| |
| let from = this.pagesToPrint_[0]; |
| let to = this.pagesToPrint_[0]; |
| const ranges = []; |
| for (const page of this.pagesToPrint_.slice(1)) { |
| if (page === to + 1) { |
| to = page; |
| continue; |
| } |
| ranges.push({from: from, to: to}); |
| from = page; |
| to = page; |
| } |
| ranges.push({from: from, to: to}); |
| return ranges; |
| } |
| |
| /** |
| * @return The final page numbers, reflecting N-up setting. |
| * Page numbers are 1 indexed, since these numbers are displayed to the |
| * user. |
| */ |
| private getNupPages_(): number[] { |
| const pagesPerSheet = this.getSettingValue('pagesPerSheet') as number; |
| if (pagesPerSheet <= 1 || this.pagesToPrint_.length === 0) { |
| return this.pagesToPrint_; |
| } |
| |
| const numPages = Math.ceil(this.pagesToPrint_.length / pagesPerSheet); |
| const nupPages = new Array(numPages); |
| for (let i = 0; i < nupPages.length; i++) { |
| nupPages[i] = i + 1; |
| } |
| return nupPages; |
| } |
| |
| /** |
| * Updates the model with pages and validity, and adds error styling if |
| * needed. |
| */ |
| private onRangeChange_() { |
| if (this.settings === undefined || this.pagesToPrint_ === undefined) { |
| return; |
| } |
| |
| if (this.errorState_ === PagesInputErrorState.EMPTY) { |
| this.setSettingValid('pages', true); |
| this.hasError_ = false; |
| return; |
| } |
| |
| if (this.errorState_ !== PagesInputErrorState.NO_ERROR) { |
| this.hasError_ = true; |
| this.setSettingValid('pages', false); |
| return; |
| } |
| |
| const nupPages = this.getNupPages_(); |
| const rangesChanged = !areRangesEqual( |
| this.rangesToPrint_, this.getSettingValue('ranges') as Range[]); |
| if (rangesChanged || |
| nupPages.length !== this.getSettingValue('pages').length) { |
| this.setSetting('pages', nupPages); |
| } |
| if (rangesChanged) { |
| this.setSetting('ranges', this.rangesToPrint_); |
| } |
| this.setSettingValid('pages', true); |
| this.hasError_ = false; |
| } |
| |
| private onSelectBlur_(event: FocusEvent) { |
| if (this.selection_ !== PagesValue.CUSTOM || |
| event.relatedTarget === this.$.pageSettingsCustomInput) { |
| return; |
| } |
| |
| this.onCustomInputBlur_(); |
| } |
| |
| private onCustomInputBlur_() { |
| this.resetAndUpdate(); |
| if (this.errorState_ === PagesInputErrorState.EMPTY) { |
| // Update with all pages. |
| this.shadowRoot!.querySelector('cr-input')!.value = |
| this.getAllPagesString_(); |
| this.inputString_ = this.getAllPagesString_(); |
| this.resetString(); |
| this.restoreLastInput_ = false; |
| } |
| } |
| |
| /** |
| * @return Message to show as hint. |
| */ |
| private getHintMessage_(): string { |
| if (this.errorState_ === PagesInputErrorState.NO_ERROR || |
| this.errorState_ === PagesInputErrorState.EMPTY) { |
| return ''; |
| } |
| |
| let formattedMessage = ''; |
| if (this.errorState_ === PagesInputErrorState.INVALID_SYNTAX) { |
| formattedMessage = loadTimeData.getStringF( |
| 'pageRangeSyntaxInstruction', |
| loadTimeData.getString('examplePageRangeText')); |
| } else { |
| formattedMessage = loadTimeData.getStringF( |
| 'pageRangeLimitInstructionWithValue', this.pageCount); |
| } |
| return formattedMessage.replace(/<\/b>|<b>/g, ''); |
| } |
| |
| /** |
| * @return Whether the document being printed has only one page. |
| */ |
| private isSinglePage_(): boolean { |
| return this.pageCount === 1; |
| } |
| |
| /** |
| * @return Whether to hide the hint. |
| */ |
| private hintHidden_(): boolean { |
| return this.errorState_ === PagesInputErrorState.NO_ERROR || |
| this.errorState_ === PagesInputErrorState.EMPTY; |
| } |
| |
| /** |
| * @return Whether to disable the custom input. |
| */ |
| private inputDisabled_(): boolean { |
| return this.selection_ !== PagesValue.CUSTOM || this.controlsDisabled_; |
| } |
| |
| /** |
| * @return Whether to display the custom input. |
| */ |
| private shouldShowInput_(): boolean { |
| return this.selection_ === PagesValue.CUSTOM; |
| } |
| |
| /** |
| * @return A string representing the full page range. |
| */ |
| private getAllPagesString_(): string { |
| if (this.pageCount === 0) { |
| return ''; |
| } |
| |
| return this.pageCount === 1 ? '1' : `1-${this.pageCount}`; |
| } |
| |
| private onSelectionChange_() { |
| const customSelected = this.selection_ === PagesValue.CUSTOM; |
| if ((customSelected && !this.restoreLastInput_) || |
| this.errorState_ !== PagesInputErrorState.NO_ERROR) { |
| this.restoreLastInput_ = true; |
| this.inputString_ = ''; |
| this.shadowRoot!.querySelector('cr-input')!.value = ''; |
| this.resetString(); |
| } |
| this.updatePagesToPrint_(); |
| } |
| |
| private onPageCountChange_(current: number, previous: number) { |
| // Remember non-custom page settings when the page count changes to 1, so |
| // they can be re-applied if the page count exceeds 1 again. |
| if (this.selection_ !== PagesValue.CUSTOM) { |
| if (current === 1) { |
| this.resorationValue_ = this.selection_; |
| this.setSelectedValue_(PagesValue.ALL); |
| } else if (previous === 1) { |
| assert(this.resorationValue_ !== PagesValue.CUSTOM); |
| this.setSelectedValue_(this.resorationValue_); |
| } |
| } |
| |
| // Reset the custom input to the new "all pages" value if it is equal to the |
| // full page range and was either set automatically, or would become invalid |
| // due to the page count change. |
| const resetCustom = this.selection_ === PagesValue.CUSTOM && |
| !!this.pagesToPrint_ && this.pagesToPrint_.length === previous && |
| (current < previous || !this.restoreLastInput_); |
| |
| if (resetCustom) { |
| this.shadowRoot!.querySelector('cr-input')!.value = |
| this.getAllPagesString_(); |
| this.inputString_ = this.getAllPagesString_(); |
| this.resetString(); |
| } else { |
| this.updatePagesToPrint_(); |
| } |
| } |
| } |
| |
| declare global { |
| interface HTMLElementTagNameMap { |
| 'print-preview-pages-settings': PrintPreviewPagesSettingsElement; |
| } |
| } |
| |
| customElements.define( |
| PrintPreviewPagesSettingsElement.is, PrintPreviewPagesSettingsElement); |