You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

94 lines
3.1 KiB

from django import forms
from django.contrib.auth.mixins import LoginRequiredMixin
from django.http import HttpResponseRedirect
from django.shortcuts import render, get_object_or_404
# Create your views here.
from django.urls import reverse_lazy, reverse
from django.views import generic
from django.views.generic import CreateView, UpdateView, RedirectView
from writingtogether.models import Story, StoryPart, StoryRound
class IndexView(LoginRequiredMixin, generic.ListView):
template_name = 'writingtogether/index.html'
context_object_name = 'open_story_round_list'
def get_queryset(self):
# TODO: show open & finished rounds
return StoryRound.objects.order_by('-created')[:5]
class DetailView(LoginRequiredMixin, generic.DetailView):
model = StoryRound
template_name = 'writingtogether/detail.html'
class StoryRoundCreate(LoginRequiredMixin, CreateView):
model = StoryRound
fields = ['name', 'participants', 'number_of_rounds']
success_url = reverse_lazy('writing:index')
def form_valid(self, form):
self.object = form.save()
sorted_participants = sorted([user.pk for user in form.cleaned_data['participants']])
number_of_participants = len(sorted_participants)
for user_index, user_id in enumerate(sorted_participants):
story = Story.objects.create(
part_of_round=self.object,
started_by_id=user_id
)
previous_part=None
for i in range(form.cleaned_data['number_of_rounds']):
current_part = StoryPart.objects.create(
user_id=sorted_participants[(user_index + i) % number_of_participants],
previous_part=previous_part,
part_of=story,
turn_number=i,
)
previous_part = current_part
return HttpResponseRedirect(self.get_success_url())
class StoryUpdate(LoginRequiredMixin, UpdateView):
model = Story
fields = ['name']
class StoryPartUpdate(LoginRequiredMixin, UpdateView):
model = StoryPart
fields = ['text']
template_name = 'writingtogether/story_part.html'
success_url = reverse_lazy('writing:index')
def get_context_data(self, **kwargs):
context = super(StoryPartUpdate, self).get_context_data(**kwargs)
context.update(self.kwargs)
return context
#def form_valid(self, form):
# form.instance.created_by = self.request.user
# form.instance.previous_part_id = self.kwargs['previous']
# form.instance.part_of_id = self.kwargs['story_pk']
# return super().form_valid(form)
class RedirectToNextOpenPart(LoginRequiredMixin, RedirectView):
permanent = False
query_string = True
pattern_name = 'writing:update_story_part'
def get_redirect_url(self, *args, **kwargs):
story_round = get_object_or_404(StoryRound, pk=kwargs['story_round_pk'])
story_part = story_round.get_next_story_part(user=self.request.user)
kwargs['story_pk'] = story_part.part_of.pk
kwargs['pk'] = story_part.pk
return super().get_redirect_url(*args, **kwargs)