blob: b0db57f5a19c692847478c89f2fa7df374a3a7b8 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
var hg = require('mercury')
module.exports = state
function state(options) {
var state = hg.state({
pageNum: hg.value(1),
numPages: hg.value(0),
channels: {
next: next,
prev: prev
}
})
return state
}
function next(state, data) {
if (state.numPages() <= state.pageNum()) {
return
}
state.pageNum.set(state.pageNum() + 1)
}
function prev(state, data) {
if (state.pageNum() <= 1) {
return
}
state.pageNum.set(state.pageNum() - 1)
}