BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
6cece3f4
Commit
6cece3f4
authored
Oct 05, 2016
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Show clicked issue data in the sidebar
parent
7c59f45d
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
147 additions
and
44 deletions
+147
-44
board_card.js.es6
app/assets/javascripts/boards/components/board_card.js.es6
+1
-2
board_sidebar.js.es6
...assets/javascripts/boards/components/board_sidebar.js.es6
+24
-5
issue.js.es6
app/assets/javascripts/boards/models/issue.js.es6
+5
-0
milestone.js.es6
app/assets/javascripts/boards/models/milestone.js.es6
+6
-0
boards_store.js.es6
app/assets/javascripts/boards/stores/boards_store.js.es6
+3
-2
right_sidebar.js
app/assets/javascripts/right_sidebar.js
+10
-1
issues_controller.rb
app/controllers/projects/boards/issues_controller.rb
+1
-1
_sidebar.html.haml
app/views/projects/boards/components/_sidebar.html.haml
+14
-33
_assignee.html.haml
...ws/projects/boards/components/sidebar/_assignee.html.haml
+22
-0
_due_date.html.haml
...ws/projects/boards/components/sidebar/_due_date.html.haml
+16
-0
_labels.html.haml
...iews/projects/boards/components/sidebar/_labels.html.haml
+18
-0
_milestone.html.haml
...s/projects/boards/components/sidebar/_milestone.html.haml
+16
-0
_notifications.html.haml
...ojects/boards/components/sidebar/_notifications.html.haml
+11
-0
No files found.
app/assets/javascripts/boards/components/board_card.js.es6
View file @
6cece3f4
...
@@ -39,8 +39,7 @@
...
@@ -39,8 +39,7 @@
Store.updateFiltersUrl();
Store.updateFiltersUrl();
},
},
showIssue () {
showIssue () {
Store.state.detailIssue = this.issue;
Store.detail.issue = this.issue;
console.log(Store.state.detailIssue);
}
}
}
}
});
});
...
...
app/assets/javascripts/boards/components/board_sidebar.js.es6
View file @
6cece3f4
...
@@ -7,18 +7,37 @@
...
@@ -7,18 +7,37 @@
gl.issueBoards.BoardSidebar = Vue.extend({
gl.issueBoards.BoardSidebar = Vue.extend({
data() {
data() {
return {
return {
issue: Store.state.detailIssue
detail: Store.detail,
issue: {}
};
};
},
},
ready: function () {
computed: {
console.log(this.issue);
showSidebar () {
return Object.keys(this.issue).length;
}
},
},
watch: {
watch: {
issue
: {
detail
: {
handler () {
handler () {
console.log('a')
;
this.issue = this.detail.issue
;
},
},
deep: true
deep: true
},
issue () {
if (this.showSidebar) {
this.$nextTick(() => {
new IssuableContext();
new MilestoneSelect();
new Sidebar();
});
} else {
$('.right-sidebar').getNiceScroll().remove();
}
}
},
methods: {
closeSidebar () {
this.detail.issue = {};
}
}
}
}
});
});
...
...
app/assets/javascripts/boards/models/issue.js.es6
View file @
6cece3f4
...
@@ -3,12 +3,17 @@ class ListIssue {
...
@@ -3,12 +3,17 @@ class ListIssue {
this.id = obj.iid;
this.id = obj.iid;
this.title = obj.title;
this.title = obj.title;
this.confidential = obj.confidential;
this.confidential = obj.confidential;
this.dueDate = obj.due_date;
this.labels = [];
this.labels = [];
if (obj.assignee) {
if (obj.assignee) {
this.assignee = new ListUser(obj.assignee);
this.assignee = new ListUser(obj.assignee);
}
}
if (obj.milestone) {
this.milestone = new ListMilestone(obj.milestone);
}
obj.labels.forEach((label) => {
obj.labels.forEach((label) => {
this.labels.push(new ListLabel(label));
this.labels.push(new ListLabel(label));
});
});
...
...
app/assets/javascripts/boards/models/milestone.js.es6
0 → 100644
View file @
6cece3f4
class ListMilestone {
constructor (obj) {
this.id = obj.id;
this.title = obj.title;
}
}
app/assets/javascripts/boards/stores/boards_store.js.es6
View file @
6cece3f4
...
@@ -4,8 +4,9 @@
...
@@ -4,8 +4,9 @@
gl.issueBoards.BoardsStore = {
gl.issueBoards.BoardsStore = {
disabled: false,
disabled: false,
state: {
state: {},
detailIssue: {}
detail: {
issue: {}
},
},
moving: {
moving: {
issue: {},
issue: {},
...
...
app/assets/javascripts/right_sidebar.js
View file @
6cece3f4
...
@@ -5,15 +5,24 @@
...
@@ -5,15 +5,24 @@
function
Sidebar
(
currentUser
)
{
function
Sidebar
(
currentUser
)
{
this
.
toggleTodo
=
bind
(
this
.
toggleTodo
,
this
);
this
.
toggleTodo
=
bind
(
this
.
toggleTodo
,
this
);
this
.
sidebar
=
$
(
'aside'
);
this
.
sidebar
=
$
(
'aside'
);
this
.
removeListeners
();
this
.
addEventListeners
();
this
.
addEventListeners
();
}
}
Sidebar
.
prototype
.
removeListeners
=
function
()
{
this
.
sidebar
.
off
(
'click'
,
'.sidebar-collapsed-icon'
);
$
(
'.dropdown'
).
off
(
'hidden.gl.dropdown'
);
$
(
'.dropdown'
).
off
(
'loading.gl.dropdown'
);
$
(
'.dropdown'
).
off
(
'loaded.gl.dropdown'
);
$
(
document
).
off
(
'click'
,
'.js-sidebar-toggle'
);
}
Sidebar
.
prototype
.
addEventListeners
=
function
()
{
Sidebar
.
prototype
.
addEventListeners
=
function
()
{
this
.
sidebar
.
on
(
'click'
,
'.sidebar-collapsed-icon'
,
this
,
this
.
sidebarCollapseClicked
);
this
.
sidebar
.
on
(
'click'
,
'.sidebar-collapsed-icon'
,
this
,
this
.
sidebarCollapseClicked
);
$
(
'.dropdown'
).
on
(
'hidden.gl.dropdown'
,
this
,
this
.
onSidebarDropdownHidden
);
$
(
'.dropdown'
).
on
(
'hidden.gl.dropdown'
,
this
,
this
.
onSidebarDropdownHidden
);
$
(
'.dropdown'
).
on
(
'loading.gl.dropdown'
,
this
.
sidebarDropdownLoading
);
$
(
'.dropdown'
).
on
(
'loading.gl.dropdown'
,
this
.
sidebarDropdownLoading
);
$
(
'.dropdown'
).
on
(
'loaded.gl.dropdown'
,
this
.
sidebarDropdownLoaded
);
$
(
'.dropdown'
).
on
(
'loaded.gl.dropdown'
,
this
.
sidebarDropdownLoaded
);
$
(
document
).
o
ff
(
'click'
,
'.js-sidebar-toggle'
).
o
n
(
'click'
,
'.js-sidebar-toggle'
,
function
(
e
,
triggered
)
{
$
(
document
).
on
(
'click'
,
'.js-sidebar-toggle'
,
function
(
e
,
triggered
)
{
var
$allGutterToggleIcons
,
$this
,
$thisIcon
;
var
$allGutterToggleIcons
,
$this
,
$thisIcon
;
e
.
preventDefault
();
e
.
preventDefault
();
$this
=
$
(
this
);
$this
=
$
(
this
);
...
...
app/controllers/projects/boards/issues_controller.rb
View file @
6cece3f4
...
@@ -73,7 +73,7 @@ module Projects
...
@@ -73,7 +73,7 @@ module Projects
def
serialize_as_json
(
resource
)
def
serialize_as_json
(
resource
)
resource
.
as_json
(
resource
.
as_json
(
only:
[
:iid
,
:title
,
:confidential
],
only:
[
:iid
,
:title
,
:confidential
,
:due_date
],
include:
{
include:
{
assignee:
{
only:
[
:id
,
:name
,
:username
],
methods:
[
:avatar_url
]
},
assignee:
{
only:
[
:id
,
:name
,
:username
],
methods:
[
:avatar_url
]
},
labels:
{
only:
[
:id
,
:title
,
:description
,
:color
,
:priority
],
methods:
[
:text_color
]
}
labels:
{
only:
[
:id
,
:title
,
:description
,
:color
,
:priority
],
methods:
[
:text_color
]
}
...
...
app/views/projects/boards/components/_sidebar.html.haml
View file @
6cece3f4
...
@@ -3,38 +3,19 @@
...
@@ -3,38 +3,19 @@
.issuable-sidebar
.issuable-sidebar
.block.issuable-sidebar-header
.block.issuable-sidebar-header
%span
.issuable-header-text.hide-collapsed.pull-left
%span
.issuable-header-text.hide-collapsed.pull-left
%strong
Test
%strong
{{ issue.title }}
%br
/
%br
/
%span
#13
%span
%a
.gutter-toggle.pull-right.js-sidebar-toggle
{
role:
"button"
,
href:
"#"
,
aria:
{
label:
"Toggle sidebar"
}
}
=
precede
"#"
do
{{ issue.id }}
%a
.gutter-toggle.pull-right
{
role:
"button"
,
href:
"#"
,
"@click"
=>
"closeSidebar"
,
aria:
{
label:
"Toggle sidebar"
}
}
=
icon
(
"times"
)
=
icon
(
"times"
)
.block.assignee
=
render
"projects/boards/components/sidebar/assignee"
.title.hide-collapsed
=
render
"projects/boards/components/sidebar/milestone"
Assignee
=
render
"projects/boards/components/sidebar/due_date"
=
icon
(
"spinner spin"
,
class:
"block-loading"
)
=
render
"projects/boards/components/sidebar/labels"
=
link_to
"Edit"
,
"#"
,
class:
"edit-link pull-right"
=
render
"projects/boards/components/sidebar/notifications"
.value.hide-collapsed
%span
.assign-yourself.no-value
No assignee
\-
%a
.js-assign-yourself
{
href:
"#"
}
assign yourself
.block.milestone
.title.hide-collapsed
Milestone
=
icon
(
"spinner spin"
,
class:
"block-loading"
)
.value.hide-collapsed
%span
.no-value
None
.block.due_date
.title.hide-collapsed
Due date
=
icon
(
"spinner spin"
,
class:
"block-loading"
)
.value.hide-collapsed
%span
.no-value
No due date
.block.labels
.title.hide-collapsed
Labels
=
icon
(
"spinner spin"
,
class:
"block-loading"
)
.value.issuable-show-labels.hide-collapsed
%span
.no-value
None
app/views/projects/boards/components/sidebar/_assignee.html.haml
0 → 100644
View file @
6cece3f4
.block.assignee
.title.hide-collapsed
Assignee
=
icon
(
"spinner spin"
,
class:
"block-loading"
)
-
if
can?
(
current_user
,
:admin_issue
,
@project
)
=
link_to
"Edit"
,
"#"
,
class:
"edit-link pull-right"
.value.hide-collapsed
%span
.assign-yourself.no-value
{
"v-if"
=>
"!issue.assignee"
}
No assignee
-
if
can?
(
current_user
,
:admin_issue
,
@project
)
\-
%a
.js-assign-yourself
{
href:
"#"
}
assign yourself
%a
.author_link.bold
{
href:
""
,
"v-if"
=>
"issue.assignee"
}
%img
.avatar.avatar-inline.s32
{
":src"
=>
"issue.assignee.avatar"
,
width:
"32"
}
%span
.author
{{ issue.assignee.name }}
%span
.username
=
precede
"@"
do
{{ issue.assignee.username }}
app/views/projects/boards/components/sidebar/_due_date.html.haml
0 → 100644
View file @
6cece3f4
.block.due_date
.title.hide-collapsed
Due date
=
icon
(
"spinner spin"
,
class:
"block-loading"
)
-
if
can?
(
current_user
,
:admin_issue
,
@project
)
=
link_to
"Edit"
,
"#"
,
class:
"edit-link pull-right"
.value.hide-collapsed
.value-content
%span
.no-value
{
"v-if"
=>
"!issue.dueDate"
}
No due date
%span
.bold
{
"v-if"
=>
"issue.dueDate"
}
{{ issue.dueDate }}
%span
.no-value.js-remove-due-date-holder
{
"v-if"
=>
"issue.dueDate"
}
\-
%a
.js-remove-due-date
{
href:
"#"
,
role:
"button"
}
remove due date
app/views/projects/boards/components/sidebar/_labels.html.haml
0 → 100644
View file @
6cece3f4
.block.labels
.title.hide-collapsed
Labels
=
icon
(
"spinner spin"
,
class:
"block-loading"
)
-
if
can?
(
current_user
,
:admin_issue
,
@project
)
=
link_to
"Edit"
,
"#"
,
class:
"edit-link pull-right"
.value.issuable-show-labels.hide-collapsed
%span
.no-value
{
"v-if"
=>
"issue.labels.length === 0"
}
None
%a
{
href:
"#"
,
"v-for"
=>
"label in issue.labels"
}
%span
.label.color-label.has-tooltip
{
":style"
=>
"{ backgroundColor: label.color, color: label.textColor }"
}
{{ label.title }}
.selectbox.hide-collapsed
%input
{
type:
"hidden"
,
name:
"issue[label_names][]"
,
"v-for"
=>
"label in issue.labels"
,
":value"
=>
"label.id"
}
app/views/projects/boards/components/sidebar/_milestone.html.haml
0 → 100644
View file @
6cece3f4
.block.milestone
.title.hide-collapsed
Milestone
=
icon
(
"spinner spin"
,
class:
"block-loading"
)
-
if
can?
(
current_user
,
:admin_issue
,
@project
)
=
link_to
"Edit"
,
"#"
,
class:
"edit-link pull-right"
.value
%span
.no-value
{
"v-if"
=>
"!issue.milestone"
}
None
%span
.bold.has-tooltip
{
"v-if"
=>
"issue.milestone"
}
{{ issue.milestone.title }}
.selectbox
.dropdown
%button
.dropdown-menu-toggle
Milestone
-# = dropdown_tag('Milestone', options: { title: 'Assign milestone', toggle_class: 'js-milestone-select js-extra-options', filter: true, dropdown_class: 'dropdown-menu-selectable', placeholder: 'Search milestones', data: { show_no: true, field_name: "issue[milestone_id]", project_id: @project.id, milestones: namespace_project_milestones_path(@project.namespace, @project, :json), ability_name: "issue", use_id: true }})
app/views/projects/boards/components/sidebar/_notifications.html.haml
0 → 100644
View file @
6cece3f4
-
if
current_user
.block.light.subscription
{
data:
{
url:
''
}
}
.title.hide-collapsed
Notifications
%button
.btn.btn-block.btn-default.js-subscribe-button.issuable-subscribe-button.hide-collapsed
{
type:
"button"
}
Unsubscribe
.subscription-status.hide-collapsed
{
data:
{
status:
''
}
}
.unsubscribed
{
class:
(
'hidden'
if
true
)}
You're not receiving notifications from this thread.
.subscribed
{
class:
(
'hidden'
unless
true
)}
You're receiving notifications because you're subscribed to this thread.
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