-
Notifications
You must be signed in to change notification settings - Fork 0
/
Feedfilter.vue
246 lines (225 loc) · 7.4 KB
/
Feedfilter.vue
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
<template>
<div id="feedfilter">
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<mdl-button id="projectMenu" icon="more_vert"></mdl-button>
<mdl-menu for="projectMenu">
<mdl-menu-item v-for="project in otherProjects" :key="project" @click.native="changeProject">{{project}}</mdl-menu-item>
</mdl-menu>
<span class="mdl-layout__title">Project: {{currentProject}} {{dirty ? '*' : ''}}</span>
<div class="mdl-layout-spacer"></div>
<mdl-button id="save" icon="save" :class="{hidden: !dirty}" @click.native="saveChanges"></mdl-button>
<mdl-button id="account" icon="account_circle"></mdl-button>
<mdl-menu class="mdl-menu--bottom-right" for="account">
<mdl-menu-item @click.native="changePassword">Change Password</mdl-menu-item>
<mdl-menu-item @click.native="logout">Logout</mdl-menu-item>
</mdl-menu>
</div>
<div class="mdl-layout__tab-bar mdl-js-ripple-effect">
<a
v-for="tab in tabs"
:href="'#' + tab.id"
class="mdl-layout__tab"
:id="'tab-' + tab.id"
>
{{tab.label}}</a>
</div>
</header>
<main class="mdl-layout__content">
<section class="mdl-layout__tab-panel" id="accepted">
<template v-for="article in acceptedArticles">
<processed-article :article="article" :key=article.id @toggle="toggleArticle"></processed-article>
</template>
</section>
<section class="mdl-layout__tab-panel" id="rejected">
<template v-for="article in rejectedArticles">
<processed-article :article="article" :key=article.id @toggle="toggleArticle"></processed-article>
</template>
</section>
<section class="mdl-layout__tab-panel" id="training">
<div>Training data</div>
</section>
<section class="mdl-layout__tab-panel" id="config">
<div>Configuration data</div>
</section>
<section class="mdl-layout__tab-panel" id="newsletter">
<div>Newsletter data</div>
</section>
</main>
</div>
<div class="mdl-snackbar mdl-js-snackbar">
<div class="mdl-snackbar__text"></div>
<button type="button" class="mdl-snackbar__action"></button>
</div>
</div>
</template>
<script>
import ProcessedArticle from './components/ProcessedArticle'
import TrainingArticle from './components/TrainingArticle'
export default {
name: 'Feedfilter',
mounted: function () {
// FIXME - doesn't add - need to upgrade dom again? Or adjust how tabs are refreshed?
// newArticles = [{
// id: 0,
// title: 'New format for articles',
// from: 'http://somewhere.com/made-up',
// conf: 100,
// rejected: false
// }, {
// id: 1,
// title: 'Reality guide: A poster of how everything fits together',
// from: 'http://feeds.newscientist.com/space',
// conf: 75,
// rejected: false
// }]
// this.$set(this.processedArticles, 0, newArticles[0])
// this.$set(this.processedArticles, 1, newArticles[1])
// console.log('App ready:', $.fn.jquery)
// console.log('qS: ' + '#tab-' + this.tabs[0].id + ' > span')
// $('#tab-' + this.tabs[0].id).click()
// var s = t.querySelectorAll(':scope > span')
// console.log('s:', s)
// document.querySelector('#tab-' + this.tabs[0].id).children[0].click()
// this.tabs[0].active = true
},
data: function () {
return {
currentProject: 'KI',
projects: [
'KI',
'NExSS',
'Something else'
],
// isDirty: false,
tabs: [{
id: 'accepted',
label: 'Accepted Articles',
active: true
}, {
id: 'rejected',
label: 'Rejected Articles',
active: false
}, {
id: 'training',
label: 'Classifier Training',
active: false
}, {
id: 'config',
label: 'Feed Configuration',
active: false
}, {
id: 'newsletter',
label: 'Newsletter',
active: false
}],
processedArticles:[
{
id: 0,
title: 'New format for articles',
from: 'http://somewhere.com/made-up',
conf: 100,
link: 'http://www.universetoday.com/33035/messier-27-dumbbell-nebula/',
rejectedInitial: false,
rejected: false
}, {
id: 1,
title: 'Reality guide: A poster of how everything fits together',
from: 'http://feeds.newscientist.com/space',
conf: 42,
link: 'http://www.universetoday.com/33035/messier-27-dumbbell-nebula/',
rejectedInitial: false,
rejected: false
}, {
id: 2,
title: 'Reality guide: A poster of how everything fits together',
from: 'http://feeds.newscientist.com/space',
conf: 0,
link: 'http://www.universetoday.com/33035/messier-27-dumbbell-nebula/',
rejectedInitial: false,
rejected: false
}, {
id: 3,
title: 'Something else',
from: 'http://somewhere.com/made-up',
conf: 66,
link: 'http://www.universetoday.com/33035/messier-27-dumbbell-nebula/',
rejectedInitial: true,
rejected: true
}, {
id: 4,
title: 'Another thing',
from: 'http://feeds.newscientist.com/space',
conf: 33,
link: 'http://www.universetoday.com/33035/messier-27-dumbbell-nebula/',
rejectedInitial: true,
rejected: true
}
]
}
},
computed: {
otherProjects: function () {
var current = this.currentProject
return this.projects.filter(function (p) { return p !== current })
},
acceptedArticles: function() {
return this.processedArticles.filter(function (a) { return a.rejectedInitial == false })
},
rejectedArticles: function() {
return this.processedArticles.filter(function (a) { return a.rejectedInitial == true })
},
dirty: function () {
return this.processedArticles.some(function (article) {
return article.rejectedInitial != article.rejected
})
}
},
methods: {
changeProject: function (e) {
console.log('Changing from ' + this.currentProject + ' to ' + e.target.textContent)
this.currentProject = e.target.textContent
// this.isDirty = true
},
changePassword: function () {
console.log('Changing password')
},
logout: function () {
console.log('Logging out')
},
saveChanges: function () {
console.log('Saving changes')
// this.isDirty = false
notify('Changes saved.')
},
toggleArticle: function (id) {
console.log('Toggling:', id)
this.processedArticles[id].rejected = !this.processedArticles[id].rejected
}
},
components: {
ProcessedArticle,
TrainingArticle
}
}
function notify (msg) {
document.querySelector('.mdl-js-snackbar').MaterialSnackbar.showSnackbar({
message: msg,
timeout: 4000
})
}
</script>
<style>
#feedfilter {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.mdl-layout__header-row {
padding-left: 15px
}
.mdl-layout__content {
margin: 15px;
}
</style>