diff options
author | HombreLaser <sebastian-440@live.com> | 2023-04-06 13:29:17 -0600 |
---|---|---|
committer | HombreLaser <sebastian-440@live.com> | 2023-04-06 13:29:17 -0600 |
commit | b7455b581022059a87633864c2ac2751b035e1e1 (patch) | |
tree | 30c9afae248c52b32af394d22a172c7c007d7a49 /app/serializers | |
parent | 4e3d24a5c68e3ab951fe0cf388bdc2ea1fdc050e (diff) |
Añadido controlador de carrito
Diffstat (limited to 'app/serializers')
-rw-r--r-- | app/serializers/cart_serializer.rb | 11 | ||||
-rw-r--r-- | app/serializers/product_cart_serializer.rb | 6 | ||||
-rw-r--r-- | app/serializers/product_serializer.rb | 6 |
3 files changed, 22 insertions, 1 deletions
diff --git a/app/serializers/cart_serializer.rb b/app/serializers/cart_serializer.rb new file mode 100644 index 0000000..cbe46d8 --- /dev/null +++ b/app/serializers/cart_serializer.rb @@ -0,0 +1,11 @@ +# frozen_string_literal: true + +# CartSerializer +class CartSerializer < BaseSerializer + attribute :products do |object| + ProductSerializer.new( + Product.joins(:product_carts).select('products.*', 'product_carts.quantity AS quantity') + .includes(picture_attachment: :blob).where('product_carts.cart_id = ?', object.id) + ).serializable_hash + end +end diff --git a/app/serializers/product_cart_serializer.rb b/app/serializers/product_cart_serializer.rb new file mode 100644 index 0000000..a82715f --- /dev/null +++ b/app/serializers/product_cart_serializer.rb @@ -0,0 +1,6 @@ +# frozen_string_literal: true + +# ProductCartSerializer +class ProductCartSerializer < BaseSerializer + attributes :quantity +end diff --git a/app/serializers/product_serializer.rb b/app/serializers/product_serializer.rb index ab23d01..0104ba4 100644 --- a/app/serializers/product_serializer.rb +++ b/app/serializers/product_serializer.rb @@ -11,7 +11,11 @@ class ProductSerializer < BaseSerializer object.picture.url end - attribute :company do |object| + attribute :quantity, if: Proc.new { |object| object.respond_to?(:quantity) } do |object| + object.quantity + end + + attribute :company, if: Proc.new { |object| object.respond_to?(:company_short_name) } do |object| { name: object.company_name, short_name: object.company_short_name } end end |