metamaps--metamaps/frontend/src/Metamaps/Listeners.js

137 lines
3.6 KiB
JavaScript
Raw Normal View History

2016-09-22 10:31:56 +00:00
/* global $ */
import Active from './Active'
import Control from './Control'
import JIT from './JIT'
import Mobile from './Mobile'
import Realtime from './Realtime'
import Selected from './Selected'
import Topic from './Topic'
import Util from './Util'
2016-09-22 10:31:56 +00:00
import Visualize from './Visualize'
import { Search } from './GlobalUI'
2016-04-15 00:31:22 +00:00
const Listeners = {
2016-04-15 00:31:22 +00:00
init: function () {
var self = this
2016-04-15 00:31:22 +00:00
$(document).on('keydown', function (e) {
2016-09-22 10:31:56 +00:00
if (!(Active.Map || Active.Topic)) return
2016-04-15 00:31:22 +00:00
switch (e.which) {
case 13: // if enter key is pressed
// prevent topic creation if sending a message
if (e.target.className !== 'chat-input') {
JIT.enterKeyHandler()
}
2016-04-15 00:31:22 +00:00
break
case 27: // if esc key is pressed
2016-09-22 10:31:56 +00:00
JIT.escKeyHandler()
2016-04-15 00:31:22 +00:00
break
case 65: // if a or A is pressed
if (e.ctrlKey || e.metaKey) {
2016-09-22 10:31:56 +00:00
Control.deselectAllNodes()
Control.deselectAllEdges()
2016-04-15 00:31:22 +00:00
e.preventDefault()
2016-09-22 10:31:56 +00:00
Visualize.mGraph.graph.eachNode(function (n) {
Control.selectNode(n, e)
2016-04-15 00:31:22 +00:00
})
2016-09-22 10:31:56 +00:00
Visualize.mGraph.plot()
2016-04-15 00:31:22 +00:00
}
break
case 68: // if d or D is pressed
if (e.ctrlKey || e.metaKey) {
e.preventDefault()
2016-09-22 10:31:56 +00:00
Control.deleteSelected()
}
2016-04-15 00:31:22 +00:00
break
case 69: // if e or E is pressed
if ((e.ctrlKey || e.metaKey) && Active.Map) {
e.preventDefault()
2016-09-22 10:31:56 +00:00
JIT.zoomExtents(null, Visualize.mGraph.canvas)
break
}
2016-09-22 10:31:56 +00:00
if (e.altKey && Active.Topic) {
2016-04-15 00:31:22 +00:00
e.preventDefault()
2016-09-22 10:31:56 +00:00
if (Active.Topic) {
self.centerAndReveal(Selected.Nodes, {
center: true,
reveal: false
})
2016-04-15 00:31:22 +00:00
}
break
2016-04-15 00:31:22 +00:00
}
break
case 72: // if h or H is pressed
if (e.ctrlKey || e.metaKey) {
e.preventDefault()
2016-09-22 10:31:56 +00:00
Control.hideSelectedNodes()
Control.hideSelectedEdges()
}
break
2016-04-15 00:31:22 +00:00
case 77: // if m or M is pressed
if (e.ctrlKey || e.metaKey) {
2016-04-15 00:31:22 +00:00
e.preventDefault()
2016-09-22 10:31:56 +00:00
Control.removeSelectedNodes()
Control.removeSelectedEdges()
2016-04-15 00:31:22 +00:00
}
break
case 82: // if r or R is pressed
2016-09-22 10:31:56 +00:00
if (e.altKey && Active.Topic) {
2016-04-15 00:31:22 +00:00
e.preventDefault()
2016-09-22 10:31:56 +00:00
self.centerAndReveal(Selected.Nodes, {
center: false,
reveal: true
})
2016-04-15 00:31:22 +00:00
}
break
case 84: // if t or T is pressed
2016-09-22 10:31:56 +00:00
if (e.altKey && Active.Topic) {
2016-04-15 00:31:22 +00:00
e.preventDefault()
2016-09-22 10:31:56 +00:00
self.centerAndReveal(Selected.Nodes, {
center: true,
reveal: true
})
2016-04-15 00:31:22 +00:00
}
break
case 191: // if / is pressed
if (e.ctrlKey || e.metaKey) {
Search.focus()
}
break
2016-04-15 00:31:22 +00:00
default:
// console.log(e.which)
break
2016-04-15 00:31:22 +00:00
}
})
$(window).resize(function () {
2016-10-10 09:20:43 +00:00
if (Visualize && Visualize.mGraph) {
Util.resizeCanvas(Visualize.mGraph.canvas)
}
2016-10-10 09:20:43 +00:00
2016-09-22 10:31:56 +00:00
if (Active.Map && Realtime.inConversation) Realtime.positionVideos()
Mobile.resizeTitle()
2016-04-15 00:31:22 +00:00
})
},
2016-10-10 09:20:43 +00:00
centerAndReveal: function (nodes, opts) {
if (nodes.length < 1) return
var node = nodes[nodes.length - 1]
if (opts.center && opts.reveal) {
2016-10-10 09:20:43 +00:00
Topic.centerOn(node.id, function () {
2016-09-22 10:31:56 +00:00
Topic.fetchRelatives(nodes)
})
} else if (opts.center) {
2016-09-22 10:31:56 +00:00
Topic.centerOn(node.id)
} else if (opts.reveal) {
2016-09-22 10:31:56 +00:00
Topic.fetchRelatives(nodes)
}
2016-04-15 00:31:22 +00:00
}
}
export default Listeners