This repository has been archived by the owner on Sep 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
8 changed files
with
260 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,192 @@ | ||
angular | ||
.module('material.components.chips') | ||
.controller('MdChipCtrl', MdChipCtrl); | ||
|
||
/** | ||
* Controller for the MdChip component. Responsible for handling keyboard | ||
* events and editting the chip if needed. | ||
* | ||
* @param $scope | ||
* @param $element | ||
* @param $mdConstant | ||
* @param $timeout | ||
* @param $mdUtil | ||
* @constructor | ||
*/ | ||
function MdChipCtrl ($scope, $element, $mdConstant, $timeout, $mdUtil) { | ||
/** | ||
* @type {$scope} | ||
*/ | ||
this.$scope = $scope; | ||
|
||
/** | ||
* @type {$element} | ||
*/ | ||
this.$element = $element; | ||
|
||
/** | ||
* @type {$mdConstant} | ||
*/ | ||
this.$mdConstant = $mdConstant; | ||
|
||
/** | ||
* @type {$timeout} | ||
*/ | ||
this.$timeout = $timeout; | ||
|
||
/** | ||
* @type {$mdUtil} | ||
*/ | ||
this.$mdUtil = $mdUtil; | ||
|
||
/** | ||
* @type {boolean} | ||
*/ | ||
this.isEditting = false; | ||
|
||
/** | ||
* @type {MdChipsCtrl} | ||
*/ | ||
this.parentController = undefined; | ||
|
||
/** | ||
* @type {boolean} | ||
*/ | ||
this.enableChipEdit = false; | ||
} | ||
|
||
|
||
/** | ||
* @param {MdChipsCtrl} controller | ||
*/ | ||
MdChipCtrl.prototype.init = function(controller) { | ||
this.parentController = controller; | ||
this.enableChipEdit = this.parentController.enableChipEdit; | ||
|
||
if (this.enableChipEdit) { | ||
this.$element.on('keydown', this.chipKeyDown.bind(this)); | ||
this.$element.on('mousedown', this.chipMouseDown.bind(this)); | ||
this.getChipContent().addClass('_md-chip-content-edit-is-enabled'); | ||
} | ||
}; | ||
|
||
|
||
/** | ||
* @return {Object} | ||
*/ | ||
MdChipCtrl.prototype.getChipContent = function() { | ||
var chipContents = this.$element[0].getElementsByClassName('_md-chip-content'); | ||
return angular.element(chipContents[0]); | ||
}; | ||
|
||
|
||
/** | ||
* @return {Object} | ||
*/ | ||
MdChipCtrl.prototype.getContentElement = function() { | ||
return angular.element(this.getChipContent().children()[0]); | ||
}; | ||
|
||
|
||
/** | ||
* @return {number} | ||
*/ | ||
MdChipCtrl.prototype.getChipIndex = function() { | ||
return parseInt(this.$element.attr('index')); | ||
}; | ||
|
||
|
||
/** | ||
* Presents an input element to edit the contents of the chip. | ||
*/ | ||
MdChipCtrl.prototype.goOutOfEditMode = function() { | ||
if (!this.isEditting) return; | ||
|
||
this.isEditting = false; | ||
this.$element.removeClass('_md-chip-editing'); | ||
this.getChipContent()[0].contentEditable = 'false'; | ||
var chipIndex = this.getChipIndex(); | ||
|
||
var content = this.getContentElement().text(); | ||
if (content) { | ||
this.parentController.updateChipContents( | ||
chipIndex, | ||
this.getContentElement().text() | ||
); | ||
|
||
this.$mdUtil.nextTick(function() { | ||
if (this.parentController.selectedChip === chipIndex) { | ||
this.parentController.focusChip(chipIndex); | ||
} | ||
}.bind(this)); | ||
} else { | ||
this.parentController.removeChipAndFocusInput(chipIndex); | ||
} | ||
}; | ||
|
||
|
||
/** | ||
* Given an HTML element. Selects contents of it. | ||
* @param node | ||
*/ | ||
MdChipCtrl.prototype.selectNodeContents = function(node) { | ||
var range, selection; | ||
if (document.body.createTextRange) { | ||
range = document.body.createTextRange(); | ||
range.moveToElementText(node); | ||
range.select(); | ||
} else if (window.getSelection) { | ||
selection = window.getSelection(); | ||
range = document.createRange(); | ||
range.selectNodeContents(node); | ||
selection.removeAllRanges(); | ||
selection.addRange(range); | ||
} | ||
}; | ||
|
||
|
||
/** | ||
* Presents an input element to edit the contents of the chip. | ||
*/ | ||
MdChipCtrl.prototype.goInEditMode = function() { | ||
this.isEditting = true; | ||
this.$element.addClass('_md-chip-editing'); | ||
this.getChipContent()[0].contentEditable = 'true'; | ||
this.getChipContent().on('blur', function() { | ||
this.goOutOfEditMode(); | ||
}.bind(this)); | ||
|
||
this.selectNodeContents(this.getChipContent()[0]); | ||
}; | ||
|
||
|
||
/** | ||
* Handles the keydown event on the chip element. If enable-chip-edit attribute is | ||
* set to true, space or enter keys can trigger going into edit mode. Enter can also | ||
* trigger submitting if the chip is already being edited. | ||
* @param event | ||
*/ | ||
MdChipCtrl.prototype.chipKeyDown = function(event) { | ||
if (!this.isEditting && | ||
(event.keyCode === this.$mdConstant.KEY_CODE.ENTER || | ||
event.keyCode === this.$mdConstant.KEY_CODE.SPACE)) { | ||
event.preventDefault(); | ||
this.goInEditMode(); | ||
} else if (this.isEditting && | ||
event.keyCode === this.$mdConstant.KEY_CODE.ENTER) { | ||
event.preventDefault(); | ||
this.goOutOfEditMode(); | ||
} | ||
}; | ||
|
||
|
||
/** | ||
* Handles the double click event | ||
*/ | ||
MdChipCtrl.prototype.chipMouseDown = function() { | ||
if(this.getChipIndex() == this.parentController.selectedChip && | ||
this.enableChipEdit && | ||
!this.isEditting) { | ||
this.goInEditMode(); | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters