Skip to content
Snippets Groups Projects
Commit 4fc4dad5 authored by Elias Asikainen's avatar Elias Asikainen
Browse files

onclick v2

parent 79fe58fe
No related branches found
No related tags found
1 merge request!47Listview
...@@ -17,75 +17,76 @@ export default class studydocList { ...@@ -17,75 +17,76 @@ export default class studydocList {
this.search = ''; this.search = '';
} }
static selectDocument(str) {
alert(str);
}
static view() { static view() {
if (!isLoggedIn()) return m(Error401); if (!isLoggedIn()) return m(Error401);
return m('div#studydoc-list', [ return m('div#studydoc-list', [
m('div.filter',[ m('div.filter', [
m('form', m(
{ 'form',
onsubmit: e => { {
e.preventDefault(); onsubmit: e => {
const query = { e.preventDefault();
$or: [ const query = {
{ title: { $regex: `^(?i).*${this.search}.*` } }, $or: [
{ lecture: { $regex: `^(?i).*${this.search}.*` } }, { title: { $regex: `^(?i).*${this.search}.*` } },
{ professor: { $regex: `^(?i).*${this.search}.*` } }, { lecture: { $regex: `^(?i).*${this.search}.*` } },
{ author: { $regex: `^(?i).*${this.search}.*` } }, { professor: { $regex: `^(?i).*${this.search}.*` } },
], { author: { $regex: `^(?i).*${this.search}.*` } },
}; ],
studydocs.load(query); };
}, studydocs.load(query);
}, },
[ },
m( [
'input', m(
{ 'input',
type: 'text', {
oninput: m.withAttr('value', value => { type: 'text',
this.search = value; oninput: m.withAttr('value', value => {
}), this.search = value;
}, }),
'' },
), ''
m(Button, { label: 'Search' }),
]
),
m(Button, {
label: 'Add new',
events: { onclick: () => m.route.set('/studydocuments/new') },
}),
]
),
m( 'div.content',[
m('table', [
m('thead',
m('tr', tableHeadings.map(header => m('th', header)))),
m('tbody',
studydocs
.getList()
.map(doc =>
m('tr', {onclick:alert('You clicked me !')},[
m('td', doc.title),
m('td', doc.lecture),
m('td', doc.professor),
m('td', doc.semester),
m('td', doc.author),
m(
'td',
doc.files.map(item =>
m('a', { href: `${apiUrl}${item.file}`, target: '_blank' }, item.name)
)
),
])
)
), ),
m(Button, { label: 'Search' }),
]
),
m(Button, {
label: 'Add new',
events: { onclick: () => m.route.set('/studydocuments/new') },
}),
]),
m('div.content', [
m('table', [
m('thead', m('tr', tableHeadings.map(header => m('th', header)))),
m(
'tbody',
studydocs
.getList()
.map(doc =>
m('tr', { onclick: () => this.selectDocument(doc.title) }, [
m('td', doc.title),
m('td', doc.lecture),
m('td', doc.professor),
m('td', doc.semester),
m('td', doc.author),
m(
'td',
doc.files.map(item =>
m('a', { href: `${apiUrl}${item.file}`, target: '_blank' }, item.name)
)
),
])
)
),
]), ]),
]), ]),
m('div.details',[ m('div.details', [m('table', [m('p', ['Details that rock!'])])]),
m('table',[m('p',['Details that rock!'])
])
])
]); ]);
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment