Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 /** | 4 /** |
| 5 * @unrestricted | 5 * @unrestricted |
| 6 */ | 6 */ |
| 7 Elements.ClassesPaneWidget = class extends UI.Widget { | 7 Elements.ClassesPaneWidget = class extends UI.Widget { |
| 8 constructor() { | 8 constructor() { |
| 9 super(); | 9 super(); |
| 10 this.element.className = 'styles-element-classes-pane'; | 10 this.element.className = 'styles-element-classes-pane'; |
| 11 var container = this.element.createChild('div', 'title-container'); | 11 var container = this.element.createChild('div', 'title-container'); |
| 12 this._input = container.createChild('div', 'new-class-input monospace'); | 12 this._input = container.createChild('div', 'new-class-input monospace'); |
| 13 this._input.setAttribute('placeholder', Common.UIString('Add new class')); | 13 // Placeholder will be shown via CSS ::before by UI.TextPrompt |
|
lushnikov
2016/12/12 23:15:35
nit: let's drop the comment - the code below is de
| |
| 14 this._input.setAttribute('data-placeholder', Common.UIString('Add new class' )); | |
| 14 this.setDefaultFocusedElement(this._input); | 15 this.setDefaultFocusedElement(this._input); |
| 15 this._classesContainer = this.element.createChild('div', 'source-code'); | 16 this._classesContainer = this.element.createChild('div', 'source-code'); |
| 16 this._classesContainer.classList.add('styles-element-classes-container'); | 17 this._classesContainer.classList.add('styles-element-classes-container'); |
| 17 this._prompt = new Elements.ClassesPaneWidget.ClassNamePrompt(); | 18 this._prompt = new Elements.ClassesPaneWidget.ClassNamePrompt(); |
| 18 this._prompt.setAutocompletionTimeout(0); | 19 this._prompt.setAutocompletionTimeout(0); |
| 19 this._prompt.renderAsBlock(); | 20 this._prompt.renderAsBlock(); |
| 20 | 21 |
| 21 var proxyElement = this._prompt.attach(this._input); | 22 var proxyElement = this._prompt.attach(this._input); |
| 22 proxyElement.addEventListener('keydown', this._onKeyDown.bind(this), false); | 23 proxyElement.addEventListener('keydown', this._onKeyDown.bind(this), false); |
| 23 | 24 |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 255 if (!this._classNamesPromise || this._selectedFrameId !== selectedNode.frame Id()) | 256 if (!this._classNamesPromise || this._selectedFrameId !== selectedNode.frame Id()) |
| 256 this._classNamesPromise = this._getClassNames(selectedNode); | 257 this._classNamesPromise = this._getClassNames(selectedNode); |
| 257 | 258 |
| 258 return this._classNamesPromise.then(completions => { | 259 return this._classNamesPromise.then(completions => { |
| 259 if (prefix[0] === '.') | 260 if (prefix[0] === '.') |
| 260 completions = completions.map(value => '.' + value); | 261 completions = completions.map(value => '.' + value); |
| 261 return completions.filter(value => value.startsWith(prefix)).map(completio n => ({title: completion})); | 262 return completions.filter(value => value.startsWith(prefix)).map(completio n => ({title: completion})); |
| 262 }); | 263 }); |
| 263 } | 264 } |
| 264 }; | 265 }; |
| OLD | NEW |