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

167 lines
5.2 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
const creatingTopic = e.target.id === 'topic_name'
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
e.preventDefault()
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
2016-10-01 16:09:55 +00:00
case 37: // if Left arrow key is pressed
if (!creatingTopic) Visualize.mGraph.canvas.translate(-20, 0)
2016-10-01 16:09:55 +00:00
break
case 38: // if Up arrow key is pressed
if (!creatingTopic) Visualize.mGraph.canvas.translate(0, -20)
2016-10-01 16:09:55 +00:00
break
case 39: // if Right arrow key is pressed
if (!creatingTopic) Visualize.mGraph.canvas.translate(20, 0)
2016-10-01 16:09:55 +00:00
break
case 40: // if Down arrow key is pressed
if (!creatingTopic) Visualize.mGraph.canvas.translate(0, 20)
2016-10-01 16:09:55 +00:00
break
2016-04-15 00:31:22 +00:00
case 65: // if a or A is pressed
if (e.ctrlKey) {
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.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
2016-09-22 10:31:56 +00:00
if (e.ctrlKey && 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.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.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) {
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 () {
if (Visualize && Visualize.mGraph){
2016-10-07 03:56:39 +00:00
//Find the current canvas scale and map-coordinate at the centre of the user's screen
var canvas = Visualize.mGraph.canvas,
scaleX = canvas.scaleOffsetX,
scaleY = canvas.scaleOffsetY,
centrePixX = canvas.canvases[0].size.width / 2,
centrePixY = canvas.canvases[0].size.height / 2,
centreCoords = Util.pixelsToCoords({x:centrePixX ,y:centrePixY});
2016-10-07 03:58:57 +00:00
//Resize the canvas to fill the new window size. Based on how JIT works, this also resets the map back to scale 1 and tranlations = 0
canvas.resize($(window).width(), $(window).height())
2016-10-07 03:56:39 +00:00
//Return the map to the original scale, and then put the previous central map-coordinate back to the centre of user's newly resized screen
canvas.scale(scaleX,scaleY);
var newCentrePixX = canvas.canvases[0].size.width / 2,
newCentrePixY = canvas.canvases[0].size.height / 2,
newCentreCoords = Util.pixelsToCoords({x:newCentrePixX ,y:newCentrePixY});
canvas.translate(newCentreCoords.x - centreCoords.x, newCentreCoords.y - centreCoords.y);
}
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
})
},
centerAndReveal: function(nodes, opts) {
if (nodes.length < 1) return
var node = nodes[nodes.length - 1]
if (opts.center && opts.reveal) {
2016-09-22 10:31:56 +00:00
Topic.centerOn(node.id, function() {
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