Commit 49c920fb authored by Phil Hughes's avatar Phil Hughes

Issue boards blank state template in JS file

Aim to eventually go to vue files
parent 9226ce9e
...@@ -2,7 +2,8 @@ ...@@ -2,7 +2,8 @@
/* global Vue */ /* global Vue */
/* global Sortable */ /* global Sortable */
require('./board_blank_state'); import boardBlankState from './board_blank_state';
require('./board_delete'); require('./board_delete');
require('./board_list'); require('./board_list');
...@@ -17,7 +18,7 @@ require('./board_list'); ...@@ -17,7 +18,7 @@ require('./board_list');
components: { components: {
'board-list': gl.issueBoards.BoardList, 'board-list': gl.issueBoards.BoardList,
'board-delete': gl.issueBoards.BoardDelete, 'board-delete': gl.issueBoards.BoardDelete,
'board-blank-state': gl.issueBoards.BoardBlankState boardBlankState,
}, },
props: { props: {
list: Object, list: Object,
......
/* eslint-disable space-before-function-paren, comma-dangle */
/* global Vue */
/* global ListLabel */ /* global ListLabel */
const Store = gl.issueBoards.BoardsStore;
(() => { export default {
const Store = gl.issueBoards.BoardsStore; template: `
<div class="board-blank-state">
window.gl = window.gl || {}; <p>
window.gl.issueBoards = window.gl.issueBoards || {}; Add the following default lists to your Issue Board with one click:
</p>
gl.issueBoards.BoardBlankState = Vue.extend({ <ul class="board-blank-state-list">
data () { <li v-for="label in predefinedLabels">
<span
class="label-color"
:style="{ backgroundColor: label.color }">
</span>
{{ label.title }}
</li>
</ul>
<p>
Starting out with the default set of lists will get you right on the way to making the most of your board.
</p>
<button
class="btn btn-create btn-inverted btn-block"
type="button"
@click.stop="addDefaultLists">
Add default lists
</button>
<button
class="btn btn-default btn-block"
type="button"
@click.stop="clearBlankState">
Nevermind, I'll use my own
</button>
</div>
`,
data() {
return { return {
predefinedLabels: [ predefinedLabels: [
new ListLabel({ title: 'To Do', color: '#F0AD4E' }), new ListLabel({ title: 'To Do', color: '#F0AD4E' }),
new ListLabel({ title: 'Doing', color: '#5CB85C' }) new ListLabel({ title: 'Doing', color: '#5CB85C' }),
] ],
}; };
}, },
methods: { methods: {
addDefaultLists () { addDefaultLists() {
this.clearBlankState(); this.clearBlankState();
this.predefinedLabels.forEach((label, i) => { this.predefinedLabels.forEach((label, i) => {
...@@ -28,8 +52,8 @@ ...@@ -28,8 +52,8 @@
list_type: 'label', list_type: 'label',
label: { label: {
title: label.title, title: label.title,
color: label.color color: label.color,
} },
}); });
}); });
...@@ -47,7 +71,6 @@ ...@@ -47,7 +71,6 @@
}); });
}); });
}, },
clearBlankState: Store.removeBlankState.bind(Store) clearBlankState: Store.removeBlankState.bind(Store),
} },
}); };
})();
%board-blank-state{ "inline-template" => true,
"v-if" => 'list.id == "blank"' }
.board-blank-state
%p
Add the following default lists to your Issue Board with one click:
%ul.board-blank-state-list
%li{ "v-for" => "label in predefinedLabels" }
%span.label-color{ ":style" => "{ backgroundColor: label.color } " }
{{ label.title }}
%p
Starting out with the default set of lists will get you right on the way to making the most of your board.
%button.btn.btn-create.btn-inverted.btn-block{ type: "button", "@click.stop" => "addDefaultLists" }
Add default lists
%button.btn.btn-default.btn-block{ type: "button", "@click.stop" => "clearBlankState" }
Nevermind, I'll use my own
...@@ -32,4 +32,4 @@ ...@@ -32,4 +32,4 @@
":root-path" => "rootPath", ":root-path" => "rootPath",
"ref" => "board-list" } "ref" => "board-list" }
- if can?(current_user, :admin_list, @project) - if can?(current_user, :admin_list, @project)
= render "projects/boards/components/blank_state" %board-blank-state{ "v-if" => 'list.id == "blank"' }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment