Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
e04db427
Commit
e04db427
authored
Aug 08, 2016
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Label description in tooltip
Clicking label adds that label to the filtered by
parent
e00b56d0
Changes
11
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
93 additions
and
54 deletions
+93
-54
app/assets/javascripts/boards/boards_bundle.js.es6
app/assets/javascripts/boards/boards_bundle.js.es6
+1
-1
app/assets/javascripts/boards/components/board.js.es6
app/assets/javascripts/boards/components/board.js.es6
+0
-1
app/assets/javascripts/boards/components/board_card.js.es6
app/assets/javascripts/boards/components/board_card.js.es6
+25
-0
app/assets/javascripts/boards/components/board_delete.js.es6
app/assets/javascripts/boards/components/board_delete.js.es6
+2
-2
app/assets/javascripts/boards/mixins/sortable_default_options.js.es6
...javascripts/boards/mixins/sortable_default_options.js.es6
+1
-0
app/assets/javascripts/boards/models/label.js.es6
app/assets/javascripts/boards/models/label.js.es6
+1
-0
app/assets/javascripts/boards/models/list.js.es6
app/assets/javascripts/boards/models/list.js.es6
+5
-0
app/assets/javascripts/boards/stores/boards_store.js.es6
app/assets/javascripts/boards/stores/boards_store.js.es6
+24
-30
app/assets/stylesheets/pages/boards.scss
app/assets/stylesheets/pages/boards.scss
+5
-0
app/views/projects/boards/components/_board.html.haml
app/views/projects/boards/components/_board.html.haml
+4
-2
app/views/projects/boards/components/_card.html.haml
app/views/projects/boards/components/_card.html.haml
+25
-18
No files found.
app/assets/javascripts/boards/boards_bundle.js.es6
View file @
e04db427
...
...
@@ -35,7 +35,7 @@ $(function () {
const boards = resp.json();
boards.forEach((board) => {
const list = BoardsStore.
new(board, false
);
const list = BoardsStore.
addList(board
);
if (list.type === 'done') {
list.position = 9999999;
...
...
app/assets/javascripts/boards/components/board.js.es6
View file @
e04db427
...
...
@@ -45,7 +45,6 @@
group: 'boards',
draggable: '.is-draggable',
handle: '.js-board-handle',
filter: '.board-delete',
onUpdate: function (e) {
BoardsStore.moveList(e.oldIndex, e.newIndex);
}
...
...
app/assets/javascripts/boards/components/board_card.js.es6
0 → 100644
View file @
e04db427
(() => {
const BoardCard = Vue.extend({
props: {
issue: Object,
issueLinkBase: String,
disabled: Boolean
},
methods: {
filterByLabel: function (label, $event) {
const labelIndex = BoardsStore.state.filters['label_name'].indexOf(label.title);
// $($event.target).tooltip('hide');
if (labelIndex === -1) {
BoardsStore.state.filters['label_name'].push(label.title);
} else {
BoardsStore.state.filters['label_name'].splice(labelIndex, 1);
}
BoardsStore.updateFiltersUrl();
}
}
});
Vue.component('board-card', BoardCard);
})();
app/assets/javascripts/boards/components/board_delete.js.es6
View file @
e04db427
(() => {
const BoardDelete = Vue.extend({
props: {
boardId: Number
list: Object
},
methods: {
deleteBoard: function () {
$(this.$el).tooltip('destroy');
if (confirm('Are you sure you want to delete this list?')) {
BoardsStore.removeList(this.boardId
);
this.list.destroy(
);
}
}
}
...
...
app/assets/javascripts/boards/mixins/sortable_default_options.js.es6
View file @
e04db427
...
...
@@ -8,6 +8,7 @@
fallbackClass: 'is-dragging',
fallbackOnBody: true,
ghostClass: 'is-ghost',
filter: '.has-tooltip',
scrollSensitivity: 50,
scrollSpeed: 10,
onStart: function () {
...
...
app/assets/javascripts/boards/models/label.js.es6
View file @
e04db427
...
...
@@ -3,5 +3,6 @@ class Label {
this.id = obj.id;
this.title = obj.title;
this.color = obj.color;
this.description = obj.description;
}
}
app/assets/javascripts/boards/models/list.js.es6
View file @
e04db427
...
...
@@ -33,6 +33,11 @@ class List {
destroy () {
if (this.type !== 'blank') {
BoardsStore.state.lists = _.reject(BoardsStore.state.lists, (list) => {
return list.id === this.id;
});
BoardsStore.updateNewListDropdown();
gl.boardService.destroyList(this.id);
}
}
...
...
app/assets/javascripts/boards/stores/boards_store.js.es6
View file @
e04db427
...
...
@@ -11,13 +11,16 @@
label_name: gl.utils.getParameterValues('label_name[]')
};
},
new: function (board, persist = true) {
const doneList = this.findList('type', 'done'),
backlogList = this.findList('type', 'backlog'),
list = new List(board);
addList: function (listObj) {
const list = new List(listObj);
this.state.lists.push(list);
if (persist) {
return list;
},
new: function (listObj) {
const list = this.addList(listObj),
backlogList = this.findList('type', 'backlog');
list
.save()
.then(function () {
...
...
@@ -26,38 +29,33 @@
_.each(list.issues, backlogList.removeIssue.bind(backlogList));
});
this.removeBlankState();
}
return list;
},
updateNewListDropdown: function () {
const data = $('.js-new-board-list').data('glDropdown').renderedData;
if (data) {
$('.js-new-board-list').data('glDropdown').renderData(data);
}
},
shouldAddBlankState: function () {
// Decide whether to add the blank state
let addBlankState =
_.find(this.state.lists, function (list) {
return !
_.find(this.state.lists, function (list) {
return list.type === 'backlog' || list.type === 'done';
});
return !addBlankState;
},
addBlankState: function () {
const addBlankState = this.shouldAddBlankState();
if (this.welcomeIsHidden() || this.disabled) return;
if (
addBlankState
) {
this.
new
({
if (
this.shouldAddBlankState()
) {
this.
addList
({
id: 'blank',
list_type: 'blank',
title: 'Welcome to your Issue Board!',
position: 0
}
, false
);
});
}
},
removeBlankState: function () {
if (this.welcomeIsHidden()) return;
this.removeList('blank');
$.cookie('issue_board_welcome_hidden', 'true', {
...
...
@@ -72,13 +70,9 @@
if (!list) return;
list.destroy();
this.state.lists = _.reject(this.state.lists, function (list) {
this.state.lists = _.reject(this.state.lists, (list) => {
return list.id === id;
});
this.updateNewListDropdown();
},
moveList: function (oldIndex, newIndex) {
if (oldIndex === newIndex) return;
...
...
app/assets/stylesheets/pages/boards.scss
View file @
e04db427
...
...
@@ -250,6 +250,11 @@
a
{
cursor
:
pointer
;
}
.label
{
border
:
0
;
outline
:
0
;
}
}
.card-title
{
...
...
app/views/projects/boards/components/_board.html.haml
View file @
e04db427
...
...
@@ -6,12 +6,14 @@
.board
{
":class"
=>
"{ 'is-draggable': !isPreset }"
}
.board-inner
%header
.board-header
{
":class"
=>
"{ 'has-border': list.label }"
,
":style"
=>
"{ borderTopColor: (list.label ? list.label.color : null) }"
}
%h3
.board-title.js-board-handle
{
":class"
=>
"{ 'user-can-drag':
!disabled
}"
}
%h3
.board-title.js-board-handle
{
":class"
=>
"{ 'user-can-drag':
(!disabled && !isPreset)
}"
}
{{ list.title }}
%span
.pull-right
{
"v-if"
=>
"list.type !== 'blank'"
}
{{ list.issues.length }}
-
if
current_user
%board-delete
{
"inline-template"
=>
true
,
"v-if"
=>
"!isPreset"
,
":board-id"
=>
"list.id"
}
%board-delete
{
"inline-template"
=>
true
,
"v-if"
=>
"!isPreset"
,
":list"
=>
"list"
}
%button
.board-delete.has-tooltip.pull-right
{
type:
"button"
,
title:
"Delete list"
,
"aria-label"
=>
"Delete list"
,
data:
{
placement:
"bottom"
},
"@click"
=>
"deleteBoard"
}
=
icon
(
"trash"
)
.board-inner-container.board-search-container
{
"v-if"
=>
"list.canSearch()"
}
...
...
app/views/projects/boards/components/_card.html.haml
View file @
e04db427
%
li
.card
{
":data-issue"
=>
"issue.id"
,
%
board-card
{
"inline-template"
=>
true
,
"v-for"
=>
"issue in issues | orderBy 'id' -1"
,
"track-by"
=>
"id"
,
":issue"
=>
"issue"
,
":issue-link-base"
=>
"issueLinkBase"
,
":disabled"
=>
"disabled"
,
"track-by"
=>
"id"
}
%li
.card
{
":data-issue"
=>
"issue.id"
,
":class"
=>
"{ 'user-can-drag': !disabled }"
}
%h4
.card-title
%a
{
":href"
=>
"issueLinkBase + '/' + issue.id"
,
...
...
@@ -10,8 +14,11 @@
%span
.card-number
=
precede
'#'
do
{{ issue.id }}
%span
.label.color-label
{
"v-for"
=>
"label in issue.labels"
,
":style"
=>
"{ backgroundColor: label.color, color: label.textColor }"
}
%button
.label.color-label.has-tooltip
{
"v-for"
=>
"label in issue.labels"
,
type:
"button"
,
"@click"
=>
"filterByLabel(label, $event)"
,
":style"
=>
"{ backgroundColor: label.color, color: label.textColor }"
,
":title"
=>
"label.description"
}
{{ label.title }}
%a
.has-tooltip
{
":href"
=>
"'/u/' + issue.assignee.username"
,
":title"
=>
"'Assigned to ' + issue.assignee.name"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment