Merge pull request #538 from feross/dc/fix

Always handle when the user clicks a magnet link or torrent file, or uses File > Open Torrent
This commit is contained in:
Feross Aboukhadijeh
2016-05-19 16:26:56 -07:00
2 changed files with 52 additions and 21 deletions

View File

@@ -87,7 +87,7 @@ function init () {
// OS integrations:
// ...drag and drop a torrent or video file to play or seed
dragDrop('body', (files) => dispatch('onOpen', files))
dragDrop('body', onDrag)
// ...same thing if you paste a torrent
document.addEventListener('paste', onPaste)
@@ -213,6 +213,7 @@ function dispatch (action, ...args) {
onOpen(args[0] /* files */)
}
if (action === 'addTorrent') {
backToList()
addTorrent(args[0] /* torrent */)
}
if (action === 'showOpenTorrentFile') {
@@ -252,16 +253,7 @@ function dispatch (action, ...args) {
setDimensions(args[0] /* dimensions */)
}
if (action === 'backToList') {
// Exit any modals and screens with a back button
state.modal = null
while (state.location.hasBack()) state.location.back()
// Work around virtual-dom issue: it doesn't expose its redraw function,
// and only redraws on requestAnimationFrame(). That means when the user
// closes the window (hide window / minimize to tray) and we want to pause
// the video, we update the vdom but it keeps playing until you reopen!
var mediaTag = document.querySelector('video,audio')
if (mediaTag) mediaTag.pause()
backToList()
}
if (action === 'escapeBack') {
if (state.modal) {
@@ -436,6 +428,24 @@ function openSubtitles () {
})
}
// Quits any modal popovers and returns to the torrent list screen
function backToList () {
// Exit any modals and screens with a back button
state.modal = null
while (state.location.hasBack()) state.location.back()
// If we were already on the torrent list, scroll to the top
var contentTag = document.querySelector('.content')
if (contentTag) contentTag.scrollTop = 0
// Work around virtual-dom issue: it doesn't expose its redraw function,
// and only redraws on requestAnimationFrame(). That means when the user
// closes the window (hide window / minimize to tray) and we want to pause
// the video, we update the vdom but it keeps playing until you reopen!
var mediaTag = document.querySelector('video,audio')
if (mediaTag) mediaTag.pause()
}
// Checks whether we are connected and already casting
// Returns false if we not casting (state.playing.location === 'local')
// or if we're trying to connect but haven't yet ('chromecast-pending', etc)
@@ -546,18 +556,34 @@ function saveState () {
update()
}
// Called when the user clicks a magnet link or torrent, or uses the Open dialog
function onOpen (files) {
if (!Array.isArray(files)) files = [ files ]
// In the player, the only drag-drop function is adding subtitles
var isInPlayer = state.location.current().url === 'player'
if (isInPlayer) {
return addSubtitles(files.filter(isSubtitle), true)
}
// Return to the home screen
backToList()
// Otherwise, you can only drag-drop onto the home screen
if (files.every(isTorrent)) {
// All .torrent files? Start downloading
files.forEach(addTorrent)
} else {
// Show the Create Torrent screen. Let's seed those files.
showCreateTorrent(files)
}
}
// Called when the user drag-drops files onto the app
function onDrag (files) {
if (!Array.isArray(files)) files = [ files ]
var isInPlayer = state.location.current().url === 'player'
var isHome = state.location.current().url === 'home' && !state.modal
if (isHome) {
if (isInPlayer) {
// In the player, the only drag-drop function is adding subtitles
addSubtitles(files.filter(isSubtitle), true)
} else if (isHome) {
// Otherwise, you can only drag-drop onto the home screen
if (files.every(isTorrent)) {
// All .torrent files? Start downloading
files.forEach(addTorrent)
@@ -566,6 +592,8 @@ function onOpen (files) {
showCreateTorrent(files)
}
}
update()
}
function isTorrent (file) {
@@ -791,7 +819,7 @@ function torrentInfoHash (torrentKey, infoHash) {
torrentKey: torrentKey,
status: 'new'
}
state.saved.torrents.push(torrentSummary)
state.saved.torrents.unshift(torrentSummary)
sound.play('ADD')
}
@@ -1243,8 +1271,10 @@ function onPaste (e) {
torrentIds.forEach(function (torrentId) {
torrentId = torrentId.trim()
if (torrentId.length === 0) return
dispatch('addTorrent', torrentId)
addTorrent(torrentId)
})
update()
}
function onFocus (e) {

View File

@@ -54,12 +54,13 @@ function App (state) {
function getErrorPopover (state) {
var now = new Date().getTime()
var recentErrors = state.errors.filter((x) => now - x.time < 5000)
var hasErrors = recentErrors.length > 0
var errorElems = recentErrors.map(function (error) {
return hx`<div class='error'>${error.message}</div>`
})
return hx`
<div class='error-popover ${recentErrors.length > 0 ? 'visible' : 'hidden'}'>
<div class='error-popover ${hasErrors ? 'visible' : 'hidden'}'>
<div class='title'>Error</div>
${errorElems}
</div>