From b626fcae4146ad4426984a0e2ef01a5533ac2a32 Mon Sep 17 00:00:00 2001 From: lauren Date: Thu, 12 Nov 2020 18:27:43 -0500 Subject: [PATCH] add search functionality --- studyguides/apps/courses/urls.py | 1 + studyguides/apps/courses/views.py | 22 +++++++++- studyguides/templates/base.html | 11 +++++ studyguides/templates/search_results.html | 53 +++++++++++++++++++++++ 4 files changed, 86 insertions(+), 1 deletion(-) create mode 100644 studyguides/templates/search_results.html diff --git a/studyguides/apps/courses/urls.py b/studyguides/apps/courses/urls.py index 5b322c1..72aac31 100644 --- a/studyguides/apps/courses/urls.py +++ b/studyguides/apps/courses/urls.py @@ -8,4 +8,5 @@ urlpatterns = [ path("subject//", views.subject_view, name="subject_view"), path("tag//", views.tag_view, name="tag"), path("course///", views.course_view, name="course_view"), + path("search/", views.search_view, name="search") ] diff --git a/studyguides/apps/courses/views.py b/studyguides/apps/courses/views.py index 812cddb..ddbdf98 100644 --- a/studyguides/apps/courses/views.py +++ b/studyguides/apps/courses/views.py @@ -1,7 +1,10 @@ import random +import operator +from functools import reduce from django import http from django.shortcuts import render, redirect, reverse, get_object_or_404 +from django.db.models import Q from django.contrib.auth.decorators import login_required from .models import Subject, Course, Guide, Tag @@ -23,4 +26,21 @@ def course_view(request, subject_url, course_url): @login_required def tag_view(request, tag): tag = get_object_or_404(Tag, name=tag) - return render(request, "tag.html", {"tag": tag, "guides": [[g, g.tags.all()] for g in tag.guide.all()]}) \ No newline at end of file + return render(request, "tag.html", {"tag": tag, "guides": [[g, g.tags.all()] for g in tag.guide.all()]}) + +@login_required +def search_view(request): + q = request.GET.get("q", "").strip() + + if q: + q_list = q.split() + context = { + "subject_results": Subject.objects.filter(reduce(operator.or_, (Q(name__contains=x) for x in q_list))), + "course_results": [[c, c.subject.all()[0]] for c in Course.objects.filter(reduce(operator.or_, (Q(name__contains=x) for x in q_list)))], + "guide_results": Guide.objects.filter(reduce(operator.or_, (Q(name__contains=x) for x in q_list))), + "tag_results": Tag.objects.filter(reduce(operator.or_, (Q(name__contains=x) for x in q_list))), + "sq": q + } + return render(request, 'search_results.html', context=context) + + return redirect(request.META["HTTP_REFERER"]) diff --git a/studyguides/templates/base.html b/studyguides/templates/base.html index 2123c43..89751dd 100644 --- a/studyguides/templates/base.html +++ b/studyguides/templates/base.html @@ -17,6 +17,7 @@ href="https://fonts.googleapis.com/css2?family=Red+Hat+Text:ital,wght@0,400;0,500;1,400&display=swap" rel="stylesheet" /> + @@ -29,6 +30,16 @@
{% block disclaimer %}{% endblock %} + {% if user.is_authenticated %} +
+ + +
+
+ {% endif %} +
{% block path %}{% endblock %}
diff --git a/studyguides/templates/search_results.html b/studyguides/templates/search_results.html new file mode 100644 index 0000000..5e3afbe --- /dev/null +++ b/studyguides/templates/search_results.html @@ -0,0 +1,53 @@ +{% extends "base.html" %} + +{% load static %} + +{% block path %} + All +{% endblock %} + +{% block content %} +

Subjects

+
    + {% if not subject_results %} + No Results + {% else %} + {% for s in subject_results %} +
  • {{ s }}
  • + {% endfor %} + {% endif %} +
+ +

Courses

+
    + {% if not course_results %} + No Results + {% else %} + {% for c in course_results %} +
  • {{ c.0 }}
  • + {% endfor %} + {% endif %} +
+ +

Guides

+
    + {% if not guide_results %} + No Results + {% else %} + {% for g in guide_results %} +
  • {{ g }}
  • + {% endfor %} + {% endif %} +
+ +

Tags

+
    + {% if not tag_results %} + No Results + {% else %} + {% for t in tag_results %} +
  • {{ t }}
  • + {% endfor %} + {% endif %} +
+{% endblock %} \ No newline at end of file