Class: Lokalise::Collections::Base
- Inherits:
-
Object
- Object
- Lokalise::Collections::Base
- Extended by:
- Request, Utils::AttributeHelpers, Utils::EndpointHelpers
- Includes:
- Utils::AttributeHelpers
- Defined in:
- lib/ruby-lokalise-api/collections/base.rb
Direct Known Subclasses
Branch, Contributor, CustomTranslationStatus, File, Key, KeyComment, Order, PaymentCard, Project, ProjectComment, ProjectLanguage, QueuedProcess, Screenshot, Snapshot, SystemLanguage, Task, Team, TeamUser, TeamUserGroup, Translation, TranslationProvider, Webhook
Constant Summary
Constants included from Request
Constants included from Lokalise::Connection
Lokalise::Connection::BASE_URL
Constants included from Utils::AttributeHelpers
Utils::AttributeHelpers::UNIFIED_RESOURCES
Instance Attribute Summary collapse
-
#branch ⇒ Object
readonly
Returns the value of attribute branch.
-
#client ⇒ Object
readonly
Returns the value of attribute client.
-
#collection ⇒ Object
readonly
Returns the value of attribute collection.
-
#current_page ⇒ Object
readonly
Returns the value of attribute current_page.
-
#path ⇒ Object
readonly
Returns the value of attribute path.
-
#project_id ⇒ Object
readonly
Returns the value of attribute project_id.
-
#request_params ⇒ Object
readonly
Returns the value of attribute request_params.
-
#results_per_page ⇒ Object
readonly
Returns the value of attribute results_per_page.
-
#team_id ⇒ Object
readonly
Returns the value of attribute team_id.
-
#total_pages ⇒ Object
readonly
Returns the value of attribute total_pages.
-
#total_results ⇒ Object
readonly
Returns the value of attribute total_results.
Class Method Summary collapse
-
.all(client, path, params = {}) ⇒ Object
Performs a batch query fetching multiple records.
Instance Method Summary collapse
- #first_page? ⇒ Boolean
-
#initialize(response, params = {}) ⇒ Lokalise::Collections::Base
constructor
Initializes a new collection based on the response.
- #last_page? ⇒ Boolean
- #next_page ⇒ Integer
- #next_page? ⇒ Boolean
- #prev_page ⇒ Integer
- #prev_page? ⇒ Boolean
Methods included from Request
Methods included from JsonHandler
Methods included from Lokalise::Connection
Methods included from Utils::AttributeHelpers
attributes_for, data_key_for, id_key_for
Methods included from Utils::EndpointHelpers
Constructor Details
#initialize(response, params = {}) ⇒ Lokalise::Collections::Base
Initializes a new collection based on the response
19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/ruby-lokalise-api/collections/base.rb', line 19 def initialize(response, params = {}) produce_collection_for response populate_pagination_data_for response # Project, team id and branch may not be present in some cases @project_id = response['content']['project_id'] @team_id = response['content']['team_id'] @branch = response['content']['branch'] @request_params = params @client = response['client'] @path = response['path'] end |
Instance Attribute Details
#branch ⇒ Object (readonly)
Returns the value of attribute branch.
11 12 13 |
# File 'lib/ruby-lokalise-api/collections/base.rb', line 11 def branch @branch end |
#client ⇒ Object (readonly)
Returns the value of attribute client.
11 12 13 |
# File 'lib/ruby-lokalise-api/collections/base.rb', line 11 def client @client end |
#collection ⇒ Object (readonly)
Returns the value of attribute collection.
11 12 13 |
# File 'lib/ruby-lokalise-api/collections/base.rb', line 11 def collection @collection end |
#current_page ⇒ Object (readonly)
Returns the value of attribute current_page.
11 12 13 |
# File 'lib/ruby-lokalise-api/collections/base.rb', line 11 def current_page @current_page end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
11 12 13 |
# File 'lib/ruby-lokalise-api/collections/base.rb', line 11 def path @path end |
#project_id ⇒ Object (readonly)
Returns the value of attribute project_id.
11 12 13 |
# File 'lib/ruby-lokalise-api/collections/base.rb', line 11 def project_id @project_id end |
#request_params ⇒ Object (readonly)
Returns the value of attribute request_params.
11 12 13 |
# File 'lib/ruby-lokalise-api/collections/base.rb', line 11 def request_params @request_params end |
#results_per_page ⇒ Object (readonly)
Returns the value of attribute results_per_page.
11 12 13 |
# File 'lib/ruby-lokalise-api/collections/base.rb', line 11 def results_per_page @results_per_page end |
#team_id ⇒ Object (readonly)
Returns the value of attribute team_id.
11 12 13 |
# File 'lib/ruby-lokalise-api/collections/base.rb', line 11 def team_id @team_id end |
#total_pages ⇒ Object (readonly)
Returns the value of attribute total_pages.
11 12 13 |
# File 'lib/ruby-lokalise-api/collections/base.rb', line 11 def total_pages @total_pages end |
#total_results ⇒ Object (readonly)
Returns the value of attribute total_results.
11 12 13 |
# File 'lib/ruby-lokalise-api/collections/base.rb', line 11 def total_results @total_results end |
Class Method Details
.all(client, path, params = {}) ⇒ Object
Performs a batch query fetching multiple records
33 34 35 36 |
# File 'lib/ruby-lokalise-api/collections/base.rb', line 33 def all(client, path, params = {}) new get(path, client, params), params end |
Instance Method Details
#first_page? ⇒ Boolean
55 56 57 |
# File 'lib/ruby-lokalise-api/collections/base.rb', line 55 def first_page? !prev_page? end |
#last_page? ⇒ Boolean
45 46 47 |
# File 'lib/ruby-lokalise-api/collections/base.rb', line 45 def last_page? !next_page? end |
#next_page ⇒ Integer
60 61 62 63 64 |
# File 'lib/ruby-lokalise-api/collections/base.rb', line 60 def next_page return nil if last_page? fetch_page @current_page + 1 end |
#next_page? ⇒ Boolean
40 41 42 |
# File 'lib/ruby-lokalise-api/collections/base.rb', line 40 def next_page? @current_page.positive? && @current_page < @total_pages end |
#prev_page ⇒ Integer
67 68 69 70 71 |
# File 'lib/ruby-lokalise-api/collections/base.rb', line 67 def prev_page return nil if first_page? fetch_page @current_page - 1 end |
#prev_page? ⇒ Boolean
50 51 52 |
# File 'lib/ruby-lokalise-api/collections/base.rb', line 50 def prev_page? @current_page > 1 end |