reaction_action 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 56db9fe30feb9ed4f149ac1a74c84e3ddcd00cfec3fb12ae6619042e39edbbbc
4
+ data.tar.gz: 0a5b37609816e0095ba161dd83123e0f585023a499465f508e4926958b95e61d
5
+ SHA512:
6
+ metadata.gz: b07fc7de91b2af10b02566411984769fcd21c53a63c4f9060a689467f501b98c88763db327d79f0b55378252eed14aaeffa4cb7caedb75e9410fbf776fbf002f
7
+ data.tar.gz: 6884d55901249f36afcfea59860efc6e9d63fae12fab651ac97e3c36b39632a0b784a789cf7889240c1295ffed9d929f649a471220296d6eca51ff8de7fffb09
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2021 narayanan-credavenue
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # Reaction
2
+ Short description and motivation.
3
+
4
+ ## Usage
5
+ How to use my plugin.
6
+
7
+ ## Installation
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem 'reaction'
12
+ ```
13
+
14
+ And then execute:
15
+ ```bash
16
+ $ bundle
17
+ ```
18
+
19
+ Or install it yourself as:
20
+ ```bash
21
+ $ gem install reaction
22
+ ```
23
+
24
+ ## Contributing
25
+ Contribution directions go here.
26
+
27
+ ## License
28
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,32 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'Reaction'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.md')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+ APP_RAKEFILE = File.expand_path("test/dummy/Rakefile", __dir__)
18
+ load 'rails/tasks/engine.rake'
19
+
20
+ load 'rails/tasks/statistics.rake'
21
+
22
+ require 'bundler/gem_tasks'
23
+
24
+ require 'rake/testtask'
25
+
26
+ Rake::TestTask.new(:test) do |t|
27
+ t.libs << 'test'
28
+ t.pattern = 'test/**/*_test.rb'
29
+ t.verbose = false
30
+ end
31
+
32
+ task default: :test
@@ -0,0 +1,5 @@
1
+ module Reaction
2
+ class ApplicationController < ActionController::API
3
+ # protect_from_forgery with: :exception
4
+ end
5
+ end
@@ -0,0 +1,9 @@
1
+ require_dependency "reaction/application_controller"
2
+
3
+ module Reaction
4
+ class CommentsController < ApplicationController
5
+ def index
6
+ render json: CommentSerializer.new(Comment.where({commantable_type: params[:type].capitalize, commantable_id: params[:id]}))
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ require_dependency "reaction/application_controller"
2
+
3
+ module Reaction
4
+ class EmotionsController < ApplicationController
5
+ def index
6
+ render json: EmotionSerializer.new(Emotion.where({contextual_type: params[:type].capitalize, contextual_id: params[:id]})), status: :ok
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,4 @@
1
+ module Reaction
2
+ class ApplicationJob < ActiveJob::Base
3
+ end
4
+ end
@@ -0,0 +1,6 @@
1
+ module Reaction
2
+ class ApplicationMailer < ActionMailer::Base
3
+ default from: 'from@example.com'
4
+ layout 'mailer'
5
+ end
6
+ end
@@ -0,0 +1,5 @@
1
+ module Reaction
2
+ class ApplicationRecord < ActiveRecord::Base
3
+ self.abstract_class = true
4
+ end
5
+ end
@@ -0,0 +1,6 @@
1
+ module Reaction
2
+ class Comment < ApplicationRecord
3
+ belongs_to :commantable, polymorphic: true
4
+ has_many :emotions, as: :contextual
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ module Reaction
2
+ class Emotion < ApplicationRecord
3
+ belongs_to :contextual, polymorphic: true
4
+ enum emotion_type: [:like, :dis_like, :insightful, :love, :support]
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ module Reaction
2
+ class CommentSerializer
3
+ include JSONAPI::Serializer
4
+ attributes :id, :content, :created_at, :updated_at
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ module Reaction
2
+ class EmotionSerializer
3
+ include JSONAPI::Serializer
4
+ attributes :id, :emotion_type, :created_at, :updated_at
5
+ end
6
+ end
data/config/routes.rb ADDED
@@ -0,0 +1,4 @@
1
+ Reaction::Engine.routes.draw do
2
+ resources :emotions, only: [:index]
3
+ resources :comments, only: [:index]
4
+ end
@@ -0,0 +1,11 @@
1
+ class CreateReactionEmotions < ActiveRecord::Migration[6.0]
2
+ def change
3
+ create_table :reaction_emotions do |t|
4
+ t.integer :emotion_type
5
+ t.references :contextual, polymorphic: true, null: false
6
+ t.integer :user_id
7
+
8
+ t.timestamps
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ class CreateReactionComments < ActiveRecord::Migration[6.0]
2
+ def change
3
+ create_table :reaction_comments do |t|
4
+ t.text :content
5
+ t.references :commantable, polymorphic: true, null: false
6
+ t.integer :user_id
7
+
8
+ t.timestamps
9
+ end
10
+ end
11
+ end
data/lib/reaction.rb ADDED
@@ -0,0 +1,6 @@
1
+ require "reaction/engine"
2
+
3
+ module Reaction
4
+ # Your code goes here...
5
+ print "Reaction gem is installed successfully!!"
6
+ end
@@ -0,0 +1,6 @@
1
+ module Reaction
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace Reaction
4
+ config.generators.api_only = true
5
+ end
6
+ end
@@ -0,0 +1,3 @@
1
+ module Reaction
2
+ VERSION = '0.1.0'
3
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :reaction do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,120 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: reaction_action
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - vnarayanan2696
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-08-02 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 6.0.4
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 6.0.4
27
+ - !ruby/object:Gem::Dependency
28
+ name: jsonapi-serializer
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: oj
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: pg
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: Reactions required for a post or content shared
70
+ email:
71
+ - vnarayanan2696@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - MIT-LICENSE
77
+ - README.md
78
+ - Rakefile
79
+ - app/controllers/reactions/application_controller.rb
80
+ - app/controllers/reactions/comments_controller.rb
81
+ - app/controllers/reactions/emotions_controller.rb
82
+ - app/jobs/reaction/application_job.rb
83
+ - app/mailers/reaction/application_mailer.rb
84
+ - app/models/reaction/application_record.rb
85
+ - app/models/reaction/comment.rb
86
+ - app/models/reaction/emotion.rb
87
+ - app/serializers/reaction/comment_serializer.rb
88
+ - app/serializers/reaction/emotion_serializer.rb
89
+ - config/routes.rb
90
+ - db/migrate/20210731054402_create_reaction_emotions.rb
91
+ - db/migrate/20210731054902_create_reaction_comments.rb
92
+ - lib/reaction.rb
93
+ - lib/reaction/engine.rb
94
+ - lib/reaction/version.rb
95
+ - lib/tasks/reaction_tasks.rake
96
+ homepage: https://rubygems.org/gems/reaction
97
+ licenses:
98
+ - MIT
99
+ metadata:
100
+ allowed_push_host: https://rubygems.org
101
+ post_install_message:
102
+ rdoc_options: []
103
+ require_paths:
104
+ - lib
105
+ required_ruby_version: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - ">="
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ required_rubygems_version: !ruby/object:Gem::Requirement
111
+ requirements:
112
+ - - ">="
113
+ - !ruby/object:Gem::Version
114
+ version: '0'
115
+ requirements: []
116
+ rubygems_version: 3.2.16
117
+ signing_key:
118
+ specification_version: 4
119
+ summary: Give the emotions and comments sharing required for various applications
120
+ test_files: []