mirror of
https://github.com/Radarr/Radarr
synced 2025-02-24 15:21:28 +00:00
New: Refresh Selected in Editor Mode
This commit is contained in:
parent
135251ec31
commit
aa6c8f493e
7 changed files with 47 additions and 32 deletions
|
@ -281,6 +281,13 @@ class MovieIndex extends Component {
|
|||
this.setState({ isConfirmSearchModalOpen: true, searchType: 'moviesSearch' });
|
||||
}
|
||||
|
||||
onRefreshMoviePress = () => {
|
||||
const selectedMovieIds = this.getSelectedIds();
|
||||
const refreshIds = this.state.isMovieEditorActive && selectedMovieIds.length > 0 ? selectedMovieIds : [];
|
||||
|
||||
this.props.onRefreshMoviePress(refreshIds);
|
||||
}
|
||||
|
||||
onSearchConfirmed = () => {
|
||||
const selectedMovieIds = this.getSelectedIds();
|
||||
const searchIds = this.state.isMovieEditorActive && selectedMovieIds.length > 0 ? selectedMovieIds : this.props.items.map((m) => m.id);
|
||||
|
@ -356,12 +363,12 @@ class MovieIndex extends Component {
|
|||
<PageToolbar>
|
||||
<PageToolbarSection>
|
||||
<PageToolbarButton
|
||||
label="Update all"
|
||||
label={isMovieEditorActive && selectedMovieIds.length > 0 ? 'Update Selected' : 'Update All'}
|
||||
iconName={icons.REFRESH}
|
||||
spinningName={icons.REFRESH}
|
||||
isSpinning={isRefreshingMovie}
|
||||
isDisabled={hasNoMovie}
|
||||
onPress={onRefreshMoviePress}
|
||||
onPress={this.onRefreshMoviePress}
|
||||
/>
|
||||
|
||||
<PageToolbarButton
|
||||
|
|
|
@ -69,9 +69,10 @@ function createMapDispatchToProps(dispatch, props) {
|
|||
dispatch(saveMovieEditor(payload));
|
||||
},
|
||||
|
||||
onRefreshMoviePress() {
|
||||
onRefreshMoviePress(items) {
|
||||
dispatch(executeCommand({
|
||||
name: commandNames.REFRESH_MOVIE
|
||||
name: commandNames.REFRESH_MOVIE,
|
||||
movieIds: items
|
||||
}));
|
||||
},
|
||||
|
||||
|
|
|
@ -51,7 +51,7 @@ public void should_update_imdb_id_if_changed()
|
|||
|
||||
GivenNewMovieInfo(newMovieInfo);
|
||||
|
||||
Subject.Execute(new RefreshMovieCommand(_movie.Id));
|
||||
Subject.Execute(new RefreshMovieCommand(new List<int> { _movie.Id }));
|
||||
|
||||
Mocker.GetMock<IMovieService>()
|
||||
.Verify(v => v.UpdateMovie(It.Is<List<Movie>>(s => s.First().ImdbId == newMovieInfo.ImdbId), true));
|
||||
|
@ -60,7 +60,7 @@ public void should_update_imdb_id_if_changed()
|
|||
[Test]
|
||||
public void should_log_error_if_tmdb_id_not_found()
|
||||
{
|
||||
Subject.Execute(new RefreshMovieCommand(_movie.Id));
|
||||
Subject.Execute(new RefreshMovieCommand(new List<int> { _movie.Id }));
|
||||
|
||||
Mocker.GetMock<IMovieService>()
|
||||
.Verify(v => v.UpdateMovie(It.Is<Movie>(s => s.Status == MovieStatusType.Deleted)), Times.Once());
|
||||
|
@ -76,7 +76,7 @@ public void should_update_if_tmdb_id_changed()
|
|||
|
||||
GivenNewMovieInfo(newMovieInfo);
|
||||
|
||||
Subject.Execute(new RefreshMovieCommand(_movie.Id));
|
||||
Subject.Execute(new RefreshMovieCommand(new List<int> { _movie.Id }));
|
||||
|
||||
Mocker.GetMock<IMovieService>()
|
||||
.Verify(v => v.UpdateMovie(It.Is<List<Movie>>(s => s.First().TmdbId == newMovieInfo.TmdbId), true));
|
||||
|
@ -87,7 +87,7 @@ public void should_update_if_tmdb_id_changed()
|
|||
[Test]
|
||||
public void should_mark_as_deleted_if_tmdb_id_not_found()
|
||||
{
|
||||
Subject.Execute(new RefreshMovieCommand(_movie.Id));
|
||||
Subject.Execute(new RefreshMovieCommand(new List<int> { _movie.Id }));
|
||||
|
||||
Mocker.GetMock<IMovieService>()
|
||||
.Verify(v => v.UpdateMovie(It.Is<Movie>(s => s.Status == MovieStatusType.Deleted)), Times.Once());
|
||||
|
@ -100,7 +100,7 @@ public void should_not_remark_as_deleted_if_tmdb_id_not_found()
|
|||
{
|
||||
_movie.Status = MovieStatusType.Deleted;
|
||||
|
||||
Subject.Execute(new RefreshMovieCommand(_movie.Id));
|
||||
Subject.Execute(new RefreshMovieCommand(new List<int> { _movie.Id }));
|
||||
|
||||
Mocker.GetMock<IMovieService>()
|
||||
.Verify(v => v.UpdateMovie(It.IsAny<Movie>()), Times.Never());
|
||||
|
|
|
@ -1,24 +1,27 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using NzbDrone.Core.Messaging.Commands;
|
||||
|
||||
namespace NzbDrone.Core.Movies.Commands
|
||||
{
|
||||
public class RefreshMovieCommand : Command
|
||||
{
|
||||
public int? MovieId { get; set; }
|
||||
public List<int> MovieIds { get; set; }
|
||||
public bool IsNewMovie { get; set; }
|
||||
|
||||
public RefreshMovieCommand()
|
||||
{
|
||||
MovieIds = new List<int>();
|
||||
}
|
||||
|
||||
public RefreshMovieCommand(int? movieId, bool isNewMovie = false)
|
||||
public RefreshMovieCommand(List<int> movieIds, bool isNewMovie = false)
|
||||
{
|
||||
MovieId = movieId;
|
||||
MovieIds = movieIds;
|
||||
IsNewMovie = isNewMovie;
|
||||
}
|
||||
|
||||
public override bool SendUpdatesToClient => true;
|
||||
|
||||
public override bool UpdateScheduledTask => !MovieId.HasValue;
|
||||
public override bool UpdateScheduledTask => !MovieIds.Any();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using NzbDrone.Core.Messaging.Commands;
|
||||
using NzbDrone.Core.Messaging.Events;
|
||||
|
@ -17,12 +18,12 @@ public MovieAddedHandler(IManageCommandQueue commandQueueManager)
|
|||
|
||||
public void Handle(MovieAddedEvent message)
|
||||
{
|
||||
_commandQueueManager.Push(new RefreshMovieCommand(message.Movie.Id, true));
|
||||
_commandQueueManager.Push(new RefreshMovieCommand(new List<int> { message.Movie.Id }, true));
|
||||
}
|
||||
|
||||
public void Handle(MoviesImportedEvent message)
|
||||
{
|
||||
_commandQueueManager.PushMany(message.MovieIds.Select(s => new RefreshMovieCommand(s, true)).ToList());
|
||||
_commandQueueManager.PushMany(message.MovieIds.Select(s => new RefreshMovieCommand(new List<int> { s }, true)).ToList());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -178,9 +178,11 @@ public void Execute(RefreshMovieCommand message)
|
|||
var isNew = message.IsNewMovie;
|
||||
_eventAggregator.PublishEvent(new MovieRefreshStartingEvent(message.Trigger == CommandTrigger.Manual));
|
||||
|
||||
if (message.MovieId.HasValue)
|
||||
if (message.MovieIds.Any())
|
||||
{
|
||||
var movie = _movieService.GetMovie(message.MovieId.Value);
|
||||
foreach (var movieId in message.MovieIds)
|
||||
{
|
||||
var movie = _movieService.GetMovie(movieId);
|
||||
|
||||
try
|
||||
{
|
||||
|
@ -198,6 +200,7 @@ public void Execute(RefreshMovieCommand message)
|
|||
throw;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
var allMovie = _movieService.GetAllMovies().OrderBy(c => c.SortTitle).ToList();
|
||||
|
|
|
@ -305,7 +305,7 @@ public MovieFileResource EnsureMovieFile(MovieResource movie, Quality quality)
|
|||
//File.Copy(sourcePath, path);
|
||||
File.WriteAllText(path, "Fake Movie");
|
||||
|
||||
Commands.PostAndWait(new RefreshMovieCommand(movie.Id));
|
||||
Commands.PostAndWait(new RefreshMovieCommand(new List<int> { movie.Id }));
|
||||
Commands.WaitAll();
|
||||
|
||||
result = Movies.Get(movie.Id);
|
||||
|
|
Loading…
Reference in a new issue