Revert "Allows topic editing in the change view

Adds an editable text label to the gr-change-metadata for modifying the
topic of a change.  Introduces the gr-editable-label as a UI element for
editable text labels.  Editing the topic is only allowed if the user is
logged in and has the topic-edit permission.

Bug: Issue 4102
Change-Id: I42e8f65bd538ec50f12d29ef886395b6a70edbb7
"

This reverts commit 9ffd7b57a3.

Reason for revert: Not the correct change to submit. A lot of stuff was undone.

Change-Id: Ie51d712f2cba87a5e27639381f7f8126cc024833
This commit is contained in:
Andrew Bonventre
2016-05-31 19:00:48 +00:00
parent 9ffd7b57a3
commit 445f549f9c
7 changed files with 1 additions and 263 deletions

View File

@@ -18,8 +18,6 @@ limitations under the License.
<link rel="import" href="../../../behaviors/rest-client-behavior.html">
<link rel="import" href="../../shared/gr-account-link/gr-account-link.html">
<link rel="import" href="../../shared/gr-date-formatter/gr-date-formatter.html">
<link rel="import" href="../../shared/gr-editable-label/gr-editable-label.html">
<link rel="import" href="../../shared/gr-rest-api-interface/gr-rest-api-interface.html">
<link rel="import" href="../gr-reviewer-list/gr-reviewer-list.html">
<dom-module id="gr-change-metadata">
@@ -119,13 +117,7 @@ limitations under the License.
</section>
<section>
<span class="title">Topic</span>
<span class="value">
<gr-editable-label
value="{{change.topic}}"
label-if-empty="(No topic)"
read-only="[[!_canEditTopic(mutable, change)]]"
on-edited="_handleTopicEdited"></gr-editable-label>
</span>
<span class="value">[[change.topic]]</span>
</section>
<section class="strategy" hidden$="[[_computeHideStrategy(change)]]" hidden>
<span class="title">Strategy</span>
@@ -149,7 +141,6 @@ limitations under the License.
</span>
</section>
</template>
<gr-rest-api-interface id="restAPI"></gr-rest-api-interface>
</template>
<script src="gr-change-metadata.js"></script>
</dom-module>

View File

@@ -102,14 +102,5 @@
});
return result;
},
_handleTopicEdited: function(e, topic) {
if (!topic.length) { topic = null; }
this.$.restAPI.setChangeTopic(this.change.id, topic);
},
_canEditTopic: function(mutable, change) {
return mutable && change.actions.topic && change.actions.topic.enabled;
},
});
})();

View File

@@ -1,55 +0,0 @@
<!--
Copyright (C) 2016 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<link rel="import" href="../../../bower_components/polymer/polymer.html">
<link rel="import" href="../../../bower_components/iron-input/iron-input.html">
<dom-module id="gr-editable-label">
<template>
<style>
input {
font: inherit;
width: 7.5em;
}
label {
color: #777;
}
label.editable {
cursor: pointer;
}
.save {
color: #999;
font-size: 1em;
line-height: 1;
padding: 0 .15em;
text-decoration: none;
}
</style>
<input
is="iron-input"
hidden$="[[!editing]]"
on-keydown="_handleInputKeydown"
bind-value="{{_inputText}}">
<gr-button
link
hidden$="[[!editing]]"
class="save"
on-tap="_toggleEdit"></gr-button>
<label
hidden$="[[editing]]"
class$="[[_computeLabelClass(readOnly)]]"
on-tap="_toggleEdit">[[_computeLabel(value, labelIfEmpty)]]</label>
</template>
<script src="gr-editable-label.js"></script>
</dom-module>

View File

@@ -1,97 +0,0 @@
// Copyright (C) 2016 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
(function() {
'use strict';
Polymer({
is: 'gr-editable-label',
/**
* Fired when the value is changed.
*
* @event edited
*/
properties: {
editing: {
type: Boolean,
value: false,
},
value: {
type: String,
notify: true,
value: null,
},
labelIfEmpty: {
type: String,
value: null,
},
readOnly: {
type: Boolean,
value: false,
},
_inputText: String,
},
_computeLabel: function(value, labelIfEmpty) {
if ((!value || !value.length) && labelIfEmpty) {
return labelIfEmpty;
}
return value;
},
_toggleEdit: function() {
if (this.readOnly) { return; }
if (this.editing) {
this.value = this._inputText;
} else {
this._inputText = this.value;
}
this.editing = !this.editing;
this.async(function() {
if (this.editing) {
var input = this.$$('input');
input.focus();
input.setSelectionRange(0, input.value.length)
} else {
this.fire('edited', this.value);
}
});
},
_cancelEdit: function() {
if (!this.editing) { return; }
this.editing = false;
this._inputText = this.value;
},
_handleInputKeydown: function(e) {
if (e.keyCode === 13) { // Enter key
e.preventDefault();
this._toggleEdit();
} else if (e.keyCode === 27) { // Escape key
e.preventDefault();
this._cancelEdit();
}
},
_computeLabelClass: function(readOnly) {
return readOnly ? '' : 'editable';
},
});
})();

View File

@@ -1,86 +0,0 @@
<!DOCTYPE html>
<!--
Copyright (C) 2016 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<title>gr-editable-label</title>
<script src="../../../bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
<script src="../../../bower_components/web-component-tester/browser.js"></script>
<script src="../../../bower_components/iron-test-helpers/mock-interactions.js"></script>
<link rel="import" href="gr-editable-label.html">
<test-fixture id="basic">
<template>
<gr-editable-label
value="value text"
label-if-empty="label text"></gr-editable-label>
</template>
</test-fixture>
<script>
suite('gr-linked-text tests', function() {
var element;
var awaitChange;
setup(function() {
element = fixture('basic');
});
test('basic functionality', function(done) {
var editedStub = sinon.stub();
element.addEventListener('edited', editedStub);
var input = element.$$('input');
var button = element.$$('gr-button');
var label = element.$$('label');
// The input and button are hidden:
assert.isNotNull(input.getAttribute('hidden'));
assert.isNotNull(button.getAttribute('hidden'));
// The label is visible:
assert.isNull(label.getAttribute('hidden'));
assert.equal(label.textContent, 'value text');
setTimeout(function() {
// The input and button are visible:
assert.isNull(input.getAttribute('hidden'));
assert.isNull(button.getAttribute('hidden'));
// The label is hidden:
assert.isNotNull(label.getAttribute('hidden'));
assert.equal(input.value, 'value text');
input.set('_inputText', 'new text');
assert.isFalse(editedStub.called);
setTimeout(function() {
assert.isTrue(editedStub.called);
done();
});
MockInteractions.keyDownOn(input, 13);
});
MockInteractions.tap(label);
});
});
</script>

View File

@@ -761,10 +761,5 @@
return {baseImage: baseImage, revisionImage: revisionImage};
}.bind(this));
},
setChangeTopic: function(changeNum, topic) {
return this.send('PUT', '/changes/' + encodeURIComponent(changeNum) +
'/topic', {topic: topic});
},
});
})();

View File

@@ -60,7 +60,6 @@ limitations under the License.
'shared/gr-cursor-manager/gr-cursor-manager_test.html',
'shared/gr-date-formatter/gr-date-formatter_test.html',
'shared/gr-js-api-interface/gr-js-api-interface_test.html',
'shared/gr-editable-label/gr-editable-label_test.html',
'shared/gr-linked-text/gr-linked-text_test.html',
'shared/gr-rest-api-interface/gr-rest-api-interface_test.html',
'shared/gr-storage/gr-storage_test.html',