1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<style lang="scss">
@import "../css/_globals";
#listDescriptionContainer {
margin: 25px 0;
h3,
p {
display: inline-block;
margin: 0 0 5px;
}
h3 {
margin-right: 10px;
}
textarea {
height: 65px;
width: 100%;
}
}
#getStarted {
background: darken($background1, 10%);
display: flex;
flex-direction: column;
height: 220px;
justify-content: center;
line-height: 1.6;
padding: $spacingLarge;
h2 {
font-size: 24px;
line-height: 1;
}
h2,
p,
ol {
margin: 0 0 $spacingMedium;
&:last-child {
margin-bottom: 0;
}
}
}
</style>
<template>
<div class="lpListBody">
<div v-if="isListNew" id="getStarted">
<h2>Welcome to ctucx.things!</h2>
<p>Here's what you need to get started:</p>
<ol>
<li>Click on things to edit them. Give your list and category a name.</li>
<li>Add new categories and give items weights to start the visualization.</li>
<li v-if="!isLocalSaving">
When you're done, share your list with others!
</li>
</ol>
</div>
<list-summary v-if="!isListNew" :list="list" />
<div style="clear: both;" />
<div v-if="library.optionalFields['listDescription']" id="listDescriptionContainer">
<h3>List Description</h3> <p>(<a href="https://guides.github.com/features/mastering-markdown/" target="_blank" class="lpHref">Markdown</a> supported)</p>
<textarea id="listDescription" v-model="list.description" @input="updateListDescription" />
</div>
<ul class="lpCategories">
<category v-for="category in categories" :key="category.id" :category="category" />
</ul>
<hr>
<a class="lpAdd addCategory" @click="newCategory"><i class="lpSprite lpSpriteAdd" />Add new category</a>
</div>
</template>
<script>
import dragula from 'dragula';
import category from './category.vue';
import listSummary from './listSummary.vue';
export default {
name: 'List',
components: {
listSummary,
category,
categoryDragStartIndex: false,
itemDragId: false,
},
mixins: [],
data() {
return {
onboardingCompleted: false,
itemDrake: null,
};
},
computed: {
library() {
return this.$store.state.library;
},
list() {
return this.$store.getters.activeList;
},
categories() {
return this.list.categoryIds.map(id => this.library.getCategoryById(id));
},
isListNew() {
return this.list.totalWeight === 0;
},
isLocalSaving() {
return this.$store.state.saveType === 'local';
},
},
watch: {
categories() {
Vue.nextTick(() => {
this.handleItemReorder();
});
},
},
mounted() {
this.handleCategoryReorder();
this.handleItemReorder();
},
methods: {
newCategory() {
this.$store.commit('newCategory', this.list);
},
updateListDescription() {
this.$store.commit('updateListDescription', this.list);
},
handleItemReorder() {
if (this.itemDrake) {
this.itemDrake.destroy();
}
const $categoryItems = Array.prototype.slice.call(document.getElementsByClassName('lpItems'));
const drake = dragula($categoryItems, {
moves($el, $source, $handle, $sibling) {
return $handle.classList.contains('lpItemHandle');
},
accepts($el, $target, $source, $sibling) {
if (!$sibling || $sibling.classList.contains('lpItemsHeader')) {
return false; // header and footer are technically part of this list - exclude them both.
}
return true;
},
});
drake.on('drag', ($el, $target, $source, $sibling) => {
this.itemDragId = parseInt($el.id); // fragile
});
drake.on('drop', ($el, $target, $source, $sibling) => {
const categoryId = parseInt($target.parentElement.id); // fragile
this.$store.commit('reorderItem', {
list: this.list, itemId: this.itemDragId, categoryId, dropIndex: getElementIndex($el) - 1,
});
drake.cancel(true);
});
this.itemDrake = drake;
},
handleCategoryReorder() {
const $categories = document.getElementsByClassName('lpCategories')[0];
const drake = dragula([$categories], {
moves(el, $source, $handle, $sibling) {
return $handle.classList.contains('lpCategoryHandle');
},
});
drake.on('drag', ($el, $target, $source, $sibling) => {
this.categoryDragStartIndex = getElementIndex($el);
});
drake.on('drop', ($el, $target, $source, $sibling) => {
this.$store.commit('reorderCategory', { list: this.list, before: this.categoryDragStartIndex, after: getElementIndex($el) });
drake.cancel(true);
});
},
},
};
</script>