• Stars
    star
    196
  • Rank 192,284 (Top 4 %)
  • Language
    Ruby
  • License
    Apache License 2.0
  • Created about 14 years ago
  • Updated about 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Mongoid taggable behaviour

Mongoid Taggable

Mongoid Taggable provides some helpers to create taggable documents.

Installation

You can install from rubygems:

gem install mongoid_taggable

or in Gemfile:

gem 'mongoid_taggable'

or as a Rails Plugin:

script/plugin install git://github.com/wilkerlucio/mongoid_taggable.git

Mongoid 2 vs Mongoid 3

All gem versions less than 1.x only support Mongoid 2 while versions 1.x and greater support Mongoid 3.

Basic Usage

To make a document taggable you need to include Mongoid::Taggable into your document:

class Post
  include Mongoid::Document
  include Mongoid::Taggable

  field :title
  field :content
end

And in your form:

<% form_for @post do |f| %>
  <p>
    <%= f.label :title %><br />
    <%= f.text_field :title %>
  </p>
  <p>
    <%= f.label :content %><br />
    <%= f.text_area :content %>
  </p>
  <p>
    <%= f.label :tags %><br />
    <%= f.text_field :tags %>
  </p>
  <p>
    <button type="submit">Send</button>
  </p>
<% end %>

In this case, the text fields for tags should receive the list of tags separated by comma (See below for how to change the separator).

Then your document will have the tags and tags_array getter and setter. tags is as a plain string with tags separated by comma, and tags_array an array representation.

Finding Objects by Tag

Tagged models get a scope called tagged_with, tagged_with_all, and tagged_with_any:

MyModel.tagged_with('foo')
MyModel.published.tagged_with('foo').count
MyModel.tagged_with_all('foo', 'bar')
MyModel.tagged_with_all(['foo', 'bar'])
MyModel.tagged_with_any('foo', 'bar')
MyModel.tagged_with_any(['foo', 'bar'])

Tags Indexing

This module will automatically create an index of tags and their counts for you after saving the document. This can be used for a tag cloud. See the following example to understand how to use it:

Post.create!(:tags => "food,ant,bee")
Post.create!(:tags => "juice,food,bee,zip")
Post.create!(:tags => "honey,strip,food")

Post.tags # will retrieve ["ant", "bee", "food", "honey", "juice", "strip", "zip"]
Post.tags_with_weight # will retrieve:
# [
#   ['ant', 1],
#   ['bee', 2],
#   ['food', 3],
#   ['honey', 1],
#   ['juice', 1],
#   ['strip', 1],
#   ['zip', 1]
# ]

The tags index is unaffected by default_scopes. If enabled, all tags will be indexed regardless of other attribute values.
p. If you don’t want to use this feature, it is good to disable it to improve performance:

class Post
  include Mongoid::Document
  include Mongoid::Taggable

  disable_tags_index! # will disable index creation

  field :title
  field :content
end

Changing default separator

To change the default separator you may call the tags_separator class method:

class Post
  include Mongoid::Document
  include Mongoid::Taggable

  tags_separator ';' # will change tags separator to ;

  field :title
  field :content
end

More Repositories

1

pathom

Pathom is a Clojure(script) engine for processing EQL requests.
Clojure
606
star
2

pathom3

A library for navigating data.
Clojure
364
star
3

spec-coerce

Coerce by leveraging your specs
Clojure
206
star
4

pathom-viz

Visualization tools for Pathom
Clojure
86
star
5

wsscode-async

Core.async utilities package.
Clojure
78
star
6

edn-json

Tools to convert back and forth between EDN and JSON, optimised for storage and JSON tooling friendliness.
Clojure
62
star
7

huffman_js

Huffman Algorithm in Javascript
JavaScript
57
star
8

tailwind-garden

Port of Tailwind CSS library to Garden format in Clojure
Clojure
56
star
9

lein-node-webkit-build

Build node-webkit applications with Leiningen
Clojure
51
star
10

pathom-datomic

Pathom Connect integration with Datomic
Clojure
39
star
11

js-data-interop

Clojurescript <-> JS data interop using specialized data structures.
Clojure
22
star
12

jcheck_rails

wilkerlucio
Ruby
21
star
13

jquery-autoscroll

Creates one automatic scroll system that moves with user mouse movements
JavaScript
21
star
14

jcheck

Javascript validations done right
JavaScript
19
star
15

pathom3-graphql

GraphQL Integration for Pathom 3
Clojure
18
star
16

jquery-multiselect

jQuery multiselect implementation
JavaScript
18
star
17

oge

Om Graph Explorer
Clojure
17
star
18

transito

Helpers for common Clojure transit operations
Clojure
17
star
19

subdb

Ruby client and API for SubDB download and upload
Ruby
16
star
20

pathom3-docs

Documentation and blog site for Pathom 3
Clojure
16
star
21

media-looper

Clojure
14
star
22

bow_and_arrow

The old bow and arrow windows game recreated with Ruby and Shoes
Ruby
12
star
23

aidmock

Safe mocking
Ruby
12
star
24

pathom-viz-connector

Clojure
11
star
25

dragonfly_mongoid_extensions

Add support for Mongoid in Dragonfly
Ruby
10
star
26

presentation-data-navigation-with-pathom3

Sources of demo for the presentation: Data Navigation with Pathom 3
Clojure
10
star
27

pathom-connect-youtube

Clojure
9
star
28

conj2018demo

Code used in Scaling Full Stack Applications presentation
Clojure
9
star
29

pathom3-datomic

Clojure
8
star
30

ember-youtube-manager

Ember demo implementing Youtube new interface for video manager.
JavaScript
8
star
31

multi-timer

Clojure
7
star
32

mazes

My studies on the Mazes for Programmers book
Clojure
7
star
33

youtube-gmail-queue-plugin

Clojure
7
star
34

barrier

A test framework that embraces promises for real
JavaScript
7
star
35

patterny

Automatically extract minimum pattern of an image
Clojure
7
star
36

limber

Limber PHP MVC Framework
PHP
6
star
37

clojure-days-clojure-graph-presentation

Clojure
6
star
38

om-cookbook

Receipt tutorials for Om library.
Clojure
6
star
39

pathom-connect-spacex

Clojure
6
star
40

cljc-misc

Clojure
6
star
41

calendar_iterator

Calendar Iterator is a simple API to iterate of a calendar days of a month
Ruby
5
star
42

dart-stylus

Dart
5
star
43

chunked-transfer

Stream transfer of clojure data structures
Clojure
5
star
44

pathom-book

Documentation for Pathom
5
star
45

limber-haml

PHP Implementation of Haml
PHP
5
star
46

pathom3-integrant

Clojure
5
star
47

cocoa_simple_multipart

Objective-C
4
star
48

pencil-draw

Pencil draw experiment
JavaScript
4
star
49

scripted_css

Make your CSS's more powerful than ever!
CoffeeScript
4
star
50

fishy-framework

Prototype of php web framework
PHP
3
star
51

promesa-bridges

Clojure
3
star
52

limber-spec

PHP BDD Library created for Limber Framework
PHP
3
star
53

future_goodies

Future goodies for Dart
Dart
3
star
54

fulcro-graphql

Clojure
3
star
55

collabsubtitles-extension

Clojure
3
star
56

dotfiles

My dotfiles
Vim Script
3
star
57

jena-clj

Clojure
3
star
58

fuzzy-cljs

JavaScript
2
star
59

pathom3-viz

Clojure
2
star
60

pathom3-demo-gcf

Clojure
2
star
61

spotify-pathom

Source code for tutorial on pathom spotify
Clojure
2
star
62

pathom-cljs-demo

Simple repository with a demo setup for Pathom in CLJS with Shadow
Clojure
2
star
63

pathom-connect-ynab

Clojure
2
star
64

fishy-framework-bundles

Textmate Bundles for Fishy Framework
1
star
65

wilker-tmbundles

My Custom general bundles
1
star
66

fishy-framework-base

Basic directory structure for using with Fishy Framework
PHP
1
star
67

spec-inspec

Helpers to navigate Clojure specs.
Clojure
1
star
68

cljs-compilation-fail

Clojure
1
star
69

alfred_ex_chrome_bookmarks

Elixir
1
star
70

remember-mobile

Clojure
1
star
71

match-comb-shadow-repro

Clojure
1
star
72

simplehttp

Simple HTTP import from rubyforge
Ruby
1
star
73

ws.squares

WebSockets experiment with Node
JavaScript
1
star
74

d3-in-action-storybook

HTML
1
star
75

mower

Clojure
1
star
76

staticfy

Ruby
1
star
77

inject-it

Simple Javascript injector
CoffeeScript
1
star
78

subdb-sync

SubDB GUI
Ruby
1
star
79

todomvc-cljs

HTML
1
star
80

wilkerlucio.github.com

HTML
1
star
81

clj-subdb

Clojure SubDB API
Clojure
1
star
82

icontact

modified copy of nate63179-icontact
Ruby
1
star
83

rabbit-forms

CRUD related library for CodeIgniter
1
star
84

html-om

HTML to Om converter
JavaScript
1
star
85

absin

A crazy programming language
CoffeeScript
1
star
86

cooktimer

Clojure
1
star