Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
May 15, 2017 12:00 pm

Programming With Yii2: Building Community With Voting, Comments, and Sharing

Final product image
What You'll Be Creating

In this Programming With Yii2 series, I'm guiding readers in use of the Yii2 Framework for PHP. You may also be interested in my Introduction to the Yii Framework, which reviews the benefits of Yii and includes an overview of what's new in Yii 2.x.

Introduction

In today's tutorial, I'm going to show you how to extend Yii to easily mimic a site like Reddit with voting, comments, and sharing.

Recently, I've been working on creating my own personal extension of the great Yii advanced template. The template provides built-in user registration and authentication and multiple sites for front-end and administrative websites.

I built some my latest Twitter API episodes on the early version of this platform, following friends on behalf of users and analyzing our followers. The site I described in those, Twixxr, forms the foundation of my Yii customization work.

So adding core functionality like voting, comments and sharing makes so much sense. As you expand your Yii codebase with these kinds of features, building new sites becomes faster, easier and increasingly powerful. 

Getting Started

I'm going to walk you through using three Yii2 plugins:

They make it relatively fast and easy to build a powerful social community on Yii2. 

I've created a model called Item which represents an object that you want users to vote on, comment on, and share. 

Frankly, after building the item pages with these features in my platform, I felt more impressed than ever with Yii... more impressed than I've been to date even building my startup series. You can do so much with this framework.

Let's dig in.

Installing the Extensions

First, let's add all three extensions to composer.json at once:

Then run composer update.

Adding Voting

Vladimir Babin is Chiliec, and I very much like the way he and others have collaborated to create this plugin. All the basic features that you want are included, and you can easily customize it, specifically by overriding the view. They have great documentation and keep it well updated too.

Here's a helpful animated gif of the plugin's default features which they host on GitHub. I've posted a static image below (Envato Tuts+ doesn't support gifs in our tutorials).

Programming With Yii - Voting Plugin Default Example

Of course, I decided to customize the view and eliminate down votes, and it was fairly easy.

Configuration

Next, we add the voting plugin to /active/config/main.php so that it's loaded everywhere in bootstrap and configured for our application:

You can see that I've turned off guest voting so that people are required to sign up to vote on items.

Database Integration

Next, you have to run the database migration to create tables that track the votes.

It's important to remember to run this migration when installing your product server! It's quite easy to forget.

Displaying the Voting Widget

My item model is part of a collection model called Topic, so you can find the partial view for my voting widget in /views/topic/_item.php:

Topic index calls displays a grid which displays _item.php as a row. I didn't want to display a rating, just the positive vote totals, so I set that to false.

To override the view, I created /views/vote/vote.php:

Not a lot of plugins make overriding so easy.

I removed the vote down icon and changed the vote up icon to a chevron. Here's what it looks like now:

Programming With Yii - Voting Widget

I know this seems like a lot of layers, but it actually didn't take too long to make it work.

Adding Disqus Comments

Next, I created a Disqus site for the upcoming site, ActiveTogether.org, which will be available for you to see these features in action by the time you read this. Thus, the Disqus site shortname is 'active-together'.

I began using 2Amigos' widget before I integrated Kartik's social extension (discussed below), which also offers Disqus comments.

Creating a Unique Identifier for Each Comment Board

Whenever a new Item is created, the Item::beforeSave() action creates a unique identifier for Disqus to link comments too. You can also rely on the URL of a page, but this is more predictable generally.

In other words, Disqus collates all comments for each item separately, and that helps makes up each item's comment board.

Displaying the Comments

Then, the comments board is easily displayed at the bottom of the Item view in /active/views/Item.php:

Notice how the widget needs the shortname and the identifier to provide Disqus for the comments.

Here's an example of what the comments board looks like:

Programming With Yii - Item Page with voting sharing and comments board

The Index View With Comment Counts

2Amigos also leverages the Disqus JavaScript libraries for displaying comment counts. But there are a few pieces to put together to make this happen.

First, I created a jQuery script to request an item's comment counts. When there are lots of items on a page, you need to request it with reset: true;:

Then I created a TopicAsset.php file to load the .js file:

Then, the /active/views/Topic.php file registers the TopicAsset bundle:

Next, each _item.php partial includes a comment count:

And the _social partial displays it like this using each Item->identifier:

In order for Disqus to find where to update elements with comment counts, each link must end with #disqus_thread.

Here's what that page looks like. Each item has a distinct comment count loaded by referencing its identifier:

Programming With Yii - Index page of with voting and social comments and sharing

Let's move on to those social sharing buttons you've been seeing.

Adding Social Sharing

Kartik's done a great job with his social widget building a basic configuration for connection to a number of social companies like Twitter, Disqus, and Facebook. For now, I'm only using the Facebook share button. Twitter's share button doesn't have very good aesthetics, so I replaced it with an HTML web intents link.

Here's my code for the pair of buttons beside the comments count in /active/views/topic/_social.php:

Seems simple, except that vertically aligning Facebook's widget requires some CSS adjustments. In /active/views/topic/_grid.php, I placed this adjustment:

It has to come after the other CSS files load.

And, in the site.css file, I placed this to get the precise look I wanted:

Wrapping Up

Honestly, I'm so excited at how easy it was to use Yii and essentially create a mini social clone. These are great plugins for a great framework, and generally Yii's developers and its community of plugin developers are responsive on GitHub with questions and issues.

I hope you are eager to check out ActiveTogether and try out this framework for yourself.

If you have any questions or suggestions, please post them in the comments. If you'd like to keep up on my future Envato Tuts+ tutorials and other series, please visit my instructor page or follow @lookahead_io. Definitely check out my startup series and Meeting Planner.

Related Links


Original Link:

Share this article:    Share on Facebook
No Article Link

TutsPlus - Code

Tuts+ is a site aimed at web developers and designers offering tutorials and articles on technologies, skills and techniques to improve how you design and build websites.

More About this Source Visit TutsPlus - Code