e_plat 1.0.0.pre.rc.6 → 1.0.0.pre.rc.8
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 +4 -4
- data/README.md +2 -2
- data/lib/e_plat/mapping/bigcommerce/v_3/product/variant.rb +1 -1
- data/lib/e_plat/resource/base.rb +2 -2
- data/lib/e_plat/resource/collection.rb +1 -1
- data/lib/e_plat/resource/platform_specific/shopify/product.rb +2 -2
- data/lib/e_plat/resource/product.rb +11 -1
- data/lib/e_plat/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 97e068096c7cdb36b11b7d552c80b87305fd68987ae587122ffdda8832b8f29f
|
4
|
+
data.tar.gz: c59b5685eb6f7451e29276194d081788623742c70b023fd047315343db781ceb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 69464ec6da97832efcfc5b5f5ca18177c8d1df24023880dedec8e9441d5fd3dd8bcaac6b5eb632bcaaefa0b907250753652fe246916be8b411a4eaa30ee023f7
|
7
|
+
data.tar.gz: cc418f3d9a8a4c378e95f6a23dadf98ad718697a7dbb82066ca20fe105128c7bb0e90aa0b3a1a02958cd7962b2f40c1d621c05dfddabaf1f9a1b7036470f7409
|
data/README.md
CHANGED
@@ -272,7 +272,7 @@ EPlat is designed to let you mostly use it's universal interface, but then easil
|
|
272
272
|
|-----------------------|----------|---------|--------------------------------------|-----|
|
273
273
|
| id | integer | * | id | nil |
|
274
274
|
| title | string | * | option_values&.map(&:label)&.join(' ') | nil |
|
275
|
-
| price | string | * |
|
275
|
+
| price | string | * | calculated_price | nil |
|
276
276
|
| sku | string | * | sku | nil |
|
277
277
|
| position | integer | * | nil | nil |
|
278
278
|
| inventory_policy | string | * | nil | nil |
|
@@ -293,7 +293,7 @@ EPlat is designed to let you mostly use it's universal interface, but then easil
|
|
293
293
|
helper methods: <br>
|
294
294
|
`image_src` => `String | nil`, platforms supported: Shopify, Bigcommerce
|
295
295
|
|
296
|
-
*Bigcommerce variant.title=
|
296
|
+
*Bigcommerce variant.title= and variant.price= setters are not supported
|
297
297
|
|
298
298
|
|
299
299
|
### EPlat::Product::Option
|
@@ -49,7 +49,7 @@ module EPlat
|
|
49
49
|
existing_entry: {native_key: "id", e_plat_key: "id"}
|
50
50
|
},
|
51
51
|
{
|
52
|
-
existing_entry: {native_key: "
|
52
|
+
existing_entry: {native_key: "calculated_price", e_plat_key: "price"}
|
53
53
|
},
|
54
54
|
{
|
55
55
|
existing_entry: {native_key: "sku", e_plat_key: "sku"}
|
data/lib/e_plat/resource/base.rb
CHANGED
@@ -8,7 +8,7 @@ module EPlat
|
|
8
8
|
|
9
9
|
self.connection_class = EPlat::Connection
|
10
10
|
self.collection_parser = EPlat::Collection
|
11
|
-
self.timeout =
|
11
|
+
self.timeout = 20
|
12
12
|
self.site = "/" # this is overwritten below in initialize_singleton! when EPlat::Session is initialized
|
13
13
|
add_response_method :full_response #full response of the request
|
14
14
|
|
@@ -30,7 +30,7 @@ module EPlat
|
|
30
30
|
self.site = client.base_url # .site is an ActiveResource method that uses the threadsafe _site attribute underneath
|
31
31
|
self.prefix = client.url_prefix(klass: self) # this is overwritten below in prefix= for threadsafety
|
32
32
|
|
33
|
-
self.timeout =
|
33
|
+
self.timeout = 20
|
34
34
|
self.include_format_in_path = client.include_format_in_path?
|
35
35
|
self.mapping = mapping_instance
|
36
36
|
|
@@ -57,7 +57,7 @@ module EPlat
|
|
57
57
|
|
58
58
|
if paginates_via_graphql?
|
59
59
|
arg_name = (url == @next) ? "after" : "before"
|
60
|
-
resource_class.find(:all, params: {arg_name => url})
|
60
|
+
resource_class.find(:all, params: {arg_name => url, first: 100})
|
61
61
|
else
|
62
62
|
resource_class.all(from: url)
|
63
63
|
end
|
@@ -32,7 +32,7 @@ module EPlat::Shopify
|
|
32
32
|
templateSuffix
|
33
33
|
title
|
34
34
|
vendor
|
35
|
-
variants(first:
|
35
|
+
variants(first: #{EPlat::Product::INITIAL_SHOPIFY_VARIANT_LIMIT}) {
|
36
36
|
nodes {
|
37
37
|
#{Variant.graphql_fields}
|
38
38
|
}
|
@@ -40,7 +40,7 @@ module EPlat::Shopify
|
|
40
40
|
options {
|
41
41
|
#{Option.graphql_fields}
|
42
42
|
}
|
43
|
-
images(first:
|
43
|
+
images(first: #{EPlat::Product::INITIAL_SHOPIFY_IMAGE_LIMIT}) {
|
44
44
|
nodes {
|
45
45
|
#{Image.graphql_fields}
|
46
46
|
}
|
@@ -4,6 +4,9 @@ module EPlat
|
|
4
4
|
has_many :images, class_name: "EPlat::Product::Image"
|
5
5
|
has_many :options, class_name: "EPlat::Product::Option"
|
6
6
|
|
7
|
+
INITIAL_SHOPIFY_VARIANT_LIMIT = 25
|
8
|
+
INITIAL_SHOPIFY_IMAGE_LIMIT = 25
|
9
|
+
|
7
10
|
include Concerns::Metafieldable
|
8
11
|
|
9
12
|
schema do
|
@@ -43,6 +46,7 @@ module EPlat
|
|
43
46
|
|
44
47
|
def load_all_variants # slow method, run async
|
45
48
|
return EPlat::Collection.new(variants) unless client.shopify? && client.uses_graphql_for_products?
|
49
|
+
return EPlat::Collection.new(variants) unless could_have_more_variants?
|
46
50
|
|
47
51
|
@variants_collection = variants_collection
|
48
52
|
@saved_variants = @variants_collection.to_a
|
@@ -58,6 +62,12 @@ module EPlat
|
|
58
62
|
|
59
63
|
self.variants = EPlat::Collection.new(@saved_variants)
|
60
64
|
end
|
65
|
+
|
66
|
+
private
|
67
|
+
|
68
|
+
def could_have_more_variants?
|
69
|
+
variants.size == INITIAL_SHOPIFY_VARIANT_LIMIT
|
70
|
+
end
|
61
71
|
|
62
72
|
end
|
63
|
-
end
|
73
|
+
end
|
data/lib/e_plat/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: e_plat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.pre.rc.
|
4
|
+
version: 1.0.0.pre.rc.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- oliwoodsuk
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-02-
|
11
|
+
date: 2025-02-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|