Skip to main content

Django Comment Framework app. It can be associated with any given model.

Project description

dab stands for Django-Ajax-Bootstrap

django-comments-dab is a commenting application for Django-powered websites.

It allows you to integrate commenting functionality with any model you have e.g. blogs, pictures, etc…

List of actions you can do:

  1. Post a new comment. (Authenticated)

  2. Reply to an existing comment. (Authenticated)

  3. Edit a comment you posted. (Authenticated)

  4. Delete a comment you posted. (Authenticated)

  • All actions are done by ajax - JQuery 3.2.1

  • Bootstrap 4.1.1 is used in comment templates for responsive design.

Installation

Requirements:

  1. django==2.1

  2. django-widget-tweaks==1.4.2

  3. djangorestframework==3.8.2 # for API Framework

  4. Bootstrap 4.1.1

  5. jQuery 3.2.1

Installation:

Installation is available via pip

$ pip install django-comments-dab

or via source on github

$ git clone https://github.com/radi85/Comment.git
$ cd Comment
$ python setup.py install

Settings and urls:

  1. Add comment to your installed_apps in your settings.py file. It should be added after django.contrib.auth. and,

  2. Make sure that widget-tweaks is already included in installed_apps as well.

  3. LOGIN_URL shall be defined in the settings.

your settings.py should look like the following:

INSTALLED_APPS = (
    'django.contrib.admin',
    'django.contrib.auth',
    ...
    'widget_tweaks',
    'comment',
    'rest_framework',  # for API Framework
    ..
)

LOGIN_URL = 'login'  # or your actual url

In your urls.py:

urlpatterns = patterns(
    path('admin/', admin.site.urls),
    path('comment/', include('comment.urls')),
    ...
    path('api/', include('comment.api.urls')),  # for API Framework
    ...
)

Migrations:

Migrate comment app:

$ python manage.py migrate comment

Setup

Step 1

In your models.py add the field comments (Please note that field name must be comments not comment) to the model for which comments should be added (e.g. Post) and the appropriate imports as shown below:

from django.contrib.contenttypes.fields import GenericRelation
from comment.models import Comment

class Post(models.Model):
    author = models.ForeignKey(User)
    title = models.CharField(max_length=200)
    body = models.TextField()
    # the field name should be comments
    comments = GenericRelation(Comment)

Step 2

get_comments tag uses 2 positional and 3 optional args:

  1. The instance of the model. (positional)

  2. Request object. (positional)

  3. oauth. (optional - Default is false)

  4. paginate. (optional - Default is false)

  5. cpp (number of Comments Per Page - Default is 10)

1. Basics usage:

include_static this tag will include required jquery and javascript file, if you already use jquery please make sure it is not the slim version which doesn’t support ajax. include_bootstrap tag is for bootstrap-4.1.1, if it’s already included in your project, get rid of this tag.

In your template (e.g. post-detail.html) add the following template tags where object is the instance of post model.

{% load comment_tags %}  # Loading the template tag
{% get_comments object request %}  # Include all the comments belonging to a certain object

Include static files:

The comment app has three template tags for static files that the app requires. These tags need to be included in the end of your base template.

  • Case 1: You already have jQuey in your project then the following tags shall be included below jQuery file:

<script src="https://code.jquery.com/jquery-3.3.1.js"></script>

{% load comment_tags %}  # Loading the template tag

{% include_static %}  # Include comment.js file only.
{% include_bootstrap %}  # Include bootstrap 4.1.1 - remove this line if BS 4.1.1 is already used in your project
  • Case 2: You don’t have jQuery in your project then the following tags shall be included:

{% load comment_tags %}  # Loading the template tag

{% include_static_jquery %}  # Include mini jQuery 3.2.1 and required js file.
{% include_bootstrap %}  # Include bootstrap 4.1.1 - remove this line if BS 4.1.1 is already used in your project

2. Advanced usage:

1. Add pagination:

To add pagination to your comments, you need to pass two variables to the get_comments tag. paginate must be set to True and set cpp var (number of comments per page - default is 10) to the desired number of comments per page. e.g. If you would like to have 5 comments per page, the get_comments tag should look like this:

{% load comment_tags %}  # Loading the template tag
{% get_comments object request paginate=True cpp=5 %}  # Include all the comments belonging to a certain object
{% include_bootstrap %} # Include bootstrap 4.1.1 - remove this line if BS 4.1.1 is already used in your project
{% include_static %} # Include jQuery 3.2.1 and required js file

2. Integrate existing profile app with comments app:

If you have profile model for the user and you would like to show the profile image on each comment, you need to do these two steps:

  • Assign PROFILE_APP_NAME and PROFILE_MODEL_NAME variables in your settings.py file.

    (e.g if user profile app is called accounts and profile model is called UserProfile) Update your settings.py as follows:

    PROFILE_APP_NAME = 'accounts'
    PROFILE_MODEL_NAME = 'UserProfile' # letter case insensitive
  • Make sure that get_absolute_url method is defined in your profile model.

    Update your user profile model as follows:

    from django.urls import reverse
    
    class UserProfile(models.Model):
        user = models.OneToOneField(User, on_delete=models.CASCADE)
        ...
        ...
    
        # this method must be defined for appropriate url mapping in comments section
        def get_absolute_url(self):
            return reverse('profile_url_name')

Web API

django-comments-dab uses django-rest-framework to expose a Web API that provides developers with access to the same functionalities offered through the web user interface.

There are 5 methods available to perform the following actions:

  1. Post a new comment. (Authenticated)

  2. Reply to an existing comment. (Authenticated)

  3. Edit a comment you posted. (Authenticated)

  4. Delete a comment you posted. (Authenticated)

  5. Retrieve the list of comments and associated replies to a given content type and object ID.

These actions are explained below.

Setup:

To integrate the comment API in your content type (e.g Post model), in serializers.py for the Post model add comments field as shown below:

from rest_framework import serializers
from comment.models import Comment
from comment.api.serializers import CommentSerializer


class PostSerializer(serializers.ModelSerializer):

    comments = serializers.SerializerMethodField()

    class Meta:
        model = Post
        fields = ('id',
                  ...
                  ...
                  'comments')

    def get_comments(self, obj):
        comments_qs = Comment.objects.filter_by_object(obj)
        return CommentSerializer(comments_qs, many=True).data

By default the image field from profile models will be included inside user object in JSON response. This can only happen if the profile attributes mentioned early are defined in your settings.py. In case you would like to serialize more fields from profile models you need to explicitly define the COMMENT_PROFILE_API_FIELDS tuple inside your settings.py as follows:

PROFILE_APP_NAME = 'accounts'
PROFILE_MODEL_NAME = 'userprofile'
# the field names below must be similar to your profile model fields
COMMENT_PROFILE_API_FIELDS = ('display_name', 'birth_date', 'image')

Comment API actions:

1- Retrieve the list of comments and associated replies to a given content type and object ID:

This action can be performed by providing the url with data queries related to the content type.

Get request accepts 3 params:

  • type: is the model name of the content type that have comments associated with it.

  • id: is the id of an object of that model

  • slug: is the slug of an object of that model

Note id or slug needs to be provided not both

For example if you are using axios to retrieve the comment list of second object (id=2) of a model (content type) called post. you can do the following:

axios ({
    method: "get",
    url: "http://127.0.0.1:8000/api/comments/?type=post&id=2",
})

2- Post a comment and reply to an existing comment:

Authorization must be provided in the headers.

The data queries provided with the url are as above with one more parameter:

  • parent_id: is 0 or NOT PROVIDED for parent comments and for reply comments must be the id of parent comment

Example: posting a parent comment

axios({
    method: "post",
    url: "http://127.0.0.1:8000/api/comments/create/?type=post&id=2&parent_id=0",
    data: {
        content: "Hello comments"
    },
    headers: {
        Accept: "application/json",
        "Content-Type": "application/json",
        Authorization: `Token ${token}`
    }
})

3- Update a comment:

Authorization must be provided in the headers.

The url has no data queries in this action.

This action requires the comment id that you want to update:

axios({
    method: "put",
    url: "http://127.0.0.1:8000/api/comments/1",
    data: {
        content: "Update comment number 1 (id=1)"
    },
    headers: {
        Accept: "application/json",
        "Content-Type": "application/json",
        Authorization: `Token ${token}`
    }
})

4- Delete a comment:

Authorization must be provided in the headers.

The url has no data queries in this action.

This action requires the comment id that you want to delete:

axios({
    method: "delete",
    url: "http://127.0.0.1:8000/api/comments/1",
    headers: {
        Accept: "application/json",
        "Content-Type": "application/json",
        Authorization: `Token ${token}`
    }
})

Style Customize:

1- Bootstrap classes:

BS class used in the default template can be now customized from within your templates directory as follows:

  1. Create comment folder inside your templates directory.

  2. Create new template file .html with the same name of the default template you wish to override BS classes in it.

for example to override the BS classes of comment and reply btn do the following:

create templates/comment/create_comment.html

{% extends "comment/create_comment.html" %}

{% block post_btn_cls %}
btn btn-primary btn-block btn-sm
{% endblock post_btn_cls %}

Read the Doc for more info about template names and block tags name.

2- CSS file:

If you want to customize the default style of comments app , you can do the following steps:

  1. Create a comment.css file inside your static/css directory.

  2. The new created file will override the original file used in the app.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-comments-dab-1.2.4.tar.gz (91.8 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page